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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

run the instance of movie when its made visible dynamically

Status
Not open for further replies.

maddymadhans

Programmer
May 9, 2003
13
KR
hi
I hav created a movie symbol like moving a box from left to right. if i am placeing the movie symbol i want it to play from the first frame when it is made visible dynamically or whenever its made visible dynamically by hitting a button or something.

plz help me

Thank you
 
on (release){
if (clip._visible){
clip.play()
}

on maintimeline you must have a clip.stop() action

change clip to the instance name of your object
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top