Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

reverse motion tween

Status
Not open for further replies.

z35

Programmer
Dec 21, 2001
206
US
hello,

Is there a way to create a button, that, when pressed, it reverses the direction of the timeline motion. so that, if flash is moving from 10 to 20 to 30 and the button is pressed, flash will move from 30 to 20 to 10 etc.
??

thanks for all and any help on this!

 
Something like this:

on (press) {
while (_root._currentFrame > 2) {
_root.gotoAndStop (_root._currentFrame-1);
}
} Regards
David Byng
spider.gif

davidbyng@hotmail.com
 
I can't speak for z35, but I'd would be interested in having it not go, but play backword a specified number of frames, or play backward to a frame label.

Any ideas how to do this???
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top