主题:  Macromdia Director讨论组看到的小技巧

机器猫 5D精英

职务:普通成员
等级:3
金币:10.5
发贴:1197
#12001/3/27 18:50:28
Director中插入FLash如何控制 Flash一播放完就播放下面的内容.

on exitFrame me
if sprite(编号).playing then --编号为Flash 电影的Sprite
go to the frame
end if
end

============================================================
如何最小化Director程序窗口

appMinimize --这个语句让你的Director窗口最小化



worthy

职务:普通成员
等级:1
金币:0.0
发贴:98
#22001/3/28 10:11:27
以下是我们写的Flash控制程序,也比较好用。不用演员名,用通道号就可以了。

property spnum

on exitFrame me
if sprite(spnum).playing then
go the frame
else
go the frame+1
end if
end

on getpropertydescriptionlist me
set mlist=[:]
addprop mlist,#spnum,[#format:#integer,#default:0,#comment:"flash channel number:"]
return mlist
end