|
.pauseTween() Applies To MovieClip, Sound, TextField Availability Flash 6 and above, using AS1 or AS2. Usage <MovieClip|Sound|TextField>.pauseTween([property(ies), property, ...); Parameters property(ies) : Property or properties to be paused. This can be a single string containing one property name (as in "_x"), an array containing a list of property names (as in ["_x", "_y"]), or a list of properties as parameters (as in "_x", "_y"). It can be omitted, too; in this case, all tweenings for that particular object will be paused. Returns Nothing. Description Method; pauses tweenings on a particular object, so they can be resumed later. Examples // Pauses an _alpha tweening that's being executed on a MovieClip <MovieClip>.pauseTween("_alpha"); // Pauses all tweenings being done on a Sound object <Sound>.pauseTween(); // Pauses an _x and and _y tweening on a MovieClip <MovieClip>.pauseTween(["_x", "_y"]); // Also pauses an _x and and _y tweening on a MovieClip <MovieClip>.pauseTween("_x", "_y"); See Also |