主题:  求救啊

crystaljiang

职务:普通成员
等级:1
金币:0.0
发贴:36
注册:2000/11/28 15:37:08
#12002/5/6 23:01:47
两个问题
1。在 flash中做的按钮导到 director中后,点击它时不会出现手状,怎么办?
2。flash做的游戏导入director后我用play the frame,一直播放这个flash游戏,但如果我想点击flash中的离开按钮后,再跳回到director中的其他部分,该怎么做。
谢谢



Felix14

职务:普通成员
等级:1
金币:0.0
发贴:30
注册:2002/3/5 14:13:34
#22002/5/6 23:29:24
1.不会吧,说说你的flash和director的版本,director8对flash5的支持不是很好。
2.在制作flash时在离开按钮里面写lingo跳到相应帧就可以了,Active Script支持lingo语句,只要在相应语句前面加上lingo:前缀就是了。



酷狗

职务:版主
等级:2
金币:10.0
发贴:610
注册:2000/9/16 9:26:36
#32002/5/8 9:19:14
一、swf导入D后的确会这样,方法要简单直接用AS调Lingo好了
二、有可能是flash高于D能处理的脚本版本



lindmoo

职务:普通成员
等级:1
金币:0.0
发贴:19
注册:2001/10/14 17:25:44
#42002/5/8 10:40:55
你可以用getURL的三种方式来实现
getURL "eventirectorHandler"
getURL "lingoirectorCode"
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

这样可以吧