Director HELP!!!
- Started
- Last post
- 7 Responses
- steadyvibe
is it possible to go to a specific frame of another movie from the click of a button???
- steadyvibe0
does that make sense??
- ********0
wow, I don't know much about Director, I would think you could, just thinking about the way Flash and Authorware is. The all work within one another mix-n-match type stuff. If I were at work I could have asked my buddy, someone here knows :)
- steadyvibe0
hah thanks anyways!!!
- steadyvibe0
anyone else?
- p1astically0
yeah you can use the tell command. i did this years ago and i'm pretty sure i used tell com.
somethng like (pseudo code here)
tell window targetwindow
go to frame "aframe"
do other stuff..
- p1astically0
hmm. you could probably also just share a global or two between the movies and work that way.
- takashi0
yes, the tell command is the one to use:
from a MIAW to the stage:
tell the Stage
go to frame 22
end tellfrom a MIAW to another MIAW
global gMIAW
tell window "myMIAW"
go to frame 22
end tell