PDA

View Full Version : flash and director movies


Joan
06-03-2002, 11:37 AM
Hi

Does anyone know if it is possible to control a Director movie from a Flash menu inside the same Director movie? Should I use the tellTarget command or this will not work?

Thanks in advance for your help

Billy T
06-03-2002, 12:02 PM
yes it is possible

from memory (and this was a long time ago) you can make your nav in flash and give your flash buttons actions like

on(release){
getURL("director actions here");
}

or something like that anyway...

CyanBlue
06-09-2002, 05:19 AM
Simple example...

on (release)
{
getURL("lingo: openThis " add pathDelimiter add PathName add FileName); // this openThis being a custom behavior within the Director
getURL("lingo: cursor -1");
}

on (rollOver)
{
getURL("lingo: cursor 280");
}

on (rollOut)
{
getURL("lingo: cursor -1");
}HTH
Jason

filosof
01-23-2006, 10:17 PM
And how about otherwise? - I need to send messages from director to flash.

Thanks in advance