DR与Flash通信,一般可以有下面两种方法:
1、在Flash中直接使用DR的lingo命令:
On (Release)
Get URL ("lingo:go the frame"
End On
在lingo:后面可以使用需要的lingo命令
2、在DR中接受Flash传递的参数,然后执行相应的lingo命令
在Flash中,依旧使用get URL来传递参数:
On (Release)
Get URL ("botton1"
End On
然后在DR的moviescript中,使用下面函数执行相应的lingo命令:
on geturl me,kk
case kk of
"botton1": go to frame "Mark1"
"botton2": go to frame "Mark2"
………… …………
end case
end geturl