主题:  新手求教:怎样实现换盘?

hylx

职务:普通成员
等级:1
金币:0.0
发贴:8
注册:2002/1/25 17:42:12
#12002/1/25 19:18:48
如果资料容量很大,需要从播放机中切换到另一张光盘改如何做呢?我看到照相馆的故事里面有这样的功能,那好像也是用DR做的。
谢谢了!



marker

职务:普通成员
等级:1
金币:0.0
发贴:65
注册:2001/11/7 15:56:52
#22002/1/27 21:00:11
检测所需文件是否在应在的文件夹下,如果不在,提示插入几号盘。

on mouseUp me
findfile
end

on findfile
repeat with i = 1 to 100
n = getNthFileNameInFolder(the moviePath, i)
if n = "mymovie.dir" then
go movie "mymovie"
exit repeat
else
alert "please insert disk 2"
exit repeat
end if
end repeat
end




hylx

职务:普通成员
等级:1
金币:0.0
发贴:8
注册:2002/1/25 17:42:12
#32002/1/28 21:15:40
那怎样才能让CD匣弹出呢?在换盘的时候。



rainy_5d

职务:普通成员
等级:2
金币:1.0
发贴:225
注册:2000/10/23 19:44:16
#42002/1/31 20:36:43
就在奥古有的,有位朋友写了一个Xtra。