你可以用getURL的三种方式来实现
getURL "event

irectorHandler"
getURL "lingo

irectorCode"
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
这样可以吧