|
|
|
Flash sending messages to Director
Added on 4/3/2001
|
|
Compatibilities:
|
This item has not yet been rated
|
Can Flash send messages to Director?
You can control Director from Flash with getURL calls 3 ways...
getURL "event:directorHandler"
getURL "lingo:directorCode"
getURL "string"
Using event you can call a handler from Director. For example...
getURL "myHandler"
would execute...
on myHandler
--do something
end
in Director.
getURL "lingo:beep"
would cause Director to beep.
getURL "string"
would pass the string to a getURL handler in Director...
on getURL whatString
put whatString
end
|
|