我想控制SWF, 应该怎么办?
http://www.yufeng21.com/bbs/topic.cgi?forum=1&topic=28
◆ 属性:#frame
函数:SetSpriteProperty(@"IconTitle", #frame, integer)
说明:设置Flash动画当前显示的帧数,帧数由参数integer确定,只能取整数。例如:
SetSpriteProperty(@"FlashIcon", #frame, GetSpriteProperty(@"FlashIcon", #frameCount)
开始播放时,使用SetSpriteProperty(@"IconTitle", #frame, integer) 将播放位置切换到想开始的那一帧,然后使用GetSpriteProperty(@"IconTitle", #frame)动态检测(条件交互)当前播放帧是否到达想停止的那一帧,
GetSpriteProperty(@"IconTitle", #frame)=GetSpriteProperty(@"Flash Icon", #frameCount)-integer,如果是,则CallSprite(@"Flash Icon", #stop)。
没做例子,有时间看看行不!