andrewlin老兄说的对,我又看了一下,找到了以前的资料,你可以看看这段话
FLASH向D传达变量的方法
你可以用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
对于我犯的错误表示抱歉