主题:  求救!!!!!!!!

andyliang

职务:普通成员
等级:1
金币:0.0
发贴:12
#12001/3/13 15:28:32

请问各位高手,在director8里面如何做控制avi电影文件的按键?万分感激.



我就是我

职务:版主
等级:6
金币:14.0
发贴:5466
#22001/3/13 17:56:43
再按钮上加一些lingo程序就可以了
比如停止是
on mouseDown
set the movieRate of sprite (avi 所在通道编号) to 0
end
开始
on mouseDown
set the movieRate of sprite (avi 所在通道编号) to 1
end
快进

on mouseDown
set the movieRate of sprite (avi 所在通道编号) to 需要的速度
end

快退
on mouseDown
set the movieRate of sprite (avi 所在通道编号) to 需要的速度
end

如果要再进一步的控制,就比较麻烦了