Ask a Question related to Macromedia Director Basics, Design and Development.
-
AndrewFish #1
controlling Director movie with Flash
I have a Director file that has to react to a Flash file. Specifically, I have
a director file that includes a Flash file. When the swf reaches a certain
frame, a movie has to pop up within the Director file. How can I accomplished
this? Is it something that I have to program into the Flash file
Thanks for your help
Andre
AndrewFish Guest
-
Controlling movie in web Flash Player from another
I have a movie of a map and a control panel movie both on the same html page. I want to be able to control the right click functionality of the map... -
controlling director in flash
hi peeps needs a code for a flash movie, i have a button on the flash movie and what i need it to do is to go to a marker in director can anyone... -
controlling flash movie audio
I have fallen in LOVE with this forum. I got the answers to my problem so quick and prompt, it saved me alot of research time. Now I am querying... -
Controlling frame of Flash movie
Hello Everyone. I am trying to tell a flash movie to play frame 1 of that movie. I have a seperate button cast member with lingo like this: on... -
Director controlling Flash
Hi, Does anyone know what the lingo is to tell the flash sprite to go to a frame label in a specific scene? I can only find... -
Falden #2
Re: controlling Director movie with Flash
Hi Andre
If you place a handler in a moviescript you can call this handler from the
flash movie with
//----------------------
// ActionScrip
getURL("Lingo:handlerName()")
You can pass a string along with this call if you do like this
//----------------------
// ActionScrip
var param = "someString"
getURL ('Lingo:handlerName(\"'+(param )+'\")')
Then in your moviescript place the handler
//----------------------
-- Ling
on handlerName (param
-- Do whateve
put para
en
// Morte
[ And - you can also execute a handler inside an object like
gMyObject.handlerName() if you need to
Falden Guest
-
AndrewFish #3
Re: controlling Director movie with Flash
Thanks for your response, I really appreciate it. Now, keep in mind that I am
rather new to ActionScript and a complete newbie to Lingo, so bear with me. I
actually have only one thing I need to do. What I created is a Director movie
encloses a Flash movie, and the Director movie is controlled by navigation
throughout the Flash movie. When my Flash movie reaches a specific frame, it
needs to send a message the Director movie that it's enclosed in to move to a
specific frame.
Now,from your reply I'm guessing that in the ActionScript for the frame,
(naming the handler "handle") that I should write
getURL("Lingo:handle()");
Now, about the Lingo script, I have no idea, I just need a script within a
frame that is triggered by the Flash script to go to another frame within the
movie
Thanks again for your help
Andre
AndrewFish Guest
-
Falden #4
Re: controlling Director movie with Flash
I have made a small example for you to look into
// Morten
Falden Guest



Reply With Quote

