首页 > 网站 > 媒体动画 > 正文

Director综合技巧:flash和director之间地沟通灵活技术

2024-09-08 19:26:57
字体:
来源:转载
供稿:网友
flash和director之间的沟通技巧
   flash 对director来说无疑是一个最多才多艺的演员,有时候一些元素用flash来制作确实非常的方便。在一些交互性很强的项目中,难免会碰到flash元素需要和主程序相互沟通传递信息,下面就这来谈谈他们之间是如何沟通的。

1. flash to director

flash 跟director沟通主要通过下面两个办法

a. lingo

flash 中可以通过 geturl(''lingo:lingohandler'') 来调用director的lingo 指令。

比如

on (rollover)
   { geturl (''lingo:cursor 280'');}
on (rollout)
   { geturl (''lingo:cursor 0'');}

b. event

   geturl (''event:amith,''sad'''') 执行director中影片脚本中的 amith 函数并传递 sad 参数

2. director to flash

   director中 控制 flash 元素的指令相对多些,这里仅仅列出常用到的,供参考。

a. 控制 flash 元素播放类
   sprite(1).play() --播放 falsh 演员
   类似的函数有 rewind() stop() gotoframe() 等

b 传递参数类

   getvariable(sprite 1, ''whatques'') --取得 flash 演员中定义的变量whatques的值

   setvariable(sprite 1, ''whatques'', ''animal'') --设置flash 演员中定义的变量whatques的值

c 设置flash消息传递机制(flash to director)

   sprite(1).eventpassmode = #passnotbutton

参数说明
   #passalways (缺省)—一随时传递消息
   #passbutton—当flash中的一个按钮按下后才传递消息
   #passnotbutton—当flash中的一个非按钮的任何物件按下时传递消息
   #passnever—不传递任何消息

note:

   上面假定 flash 演员放在 score 中的 1 通道

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表