主题:  屏幕保护!

directorX

职务:普通成员
等级:1
金币:1.0
发贴:168
#12003/2/24 14:38:22
如何做屏幕保护式的程序,就是在电影放映的期间,如果鼠标键盘不动的话自动跳到事先设定的场面,再动则返回原来界面!请大家指点!切盼!!!



酷狗

职务:版主
等级:2
金币:10.0
发贴:610
#22003/2/25 8:22:37



特立独行

职务:普通成员
等级:1
金币:1.0
发贴:263
#32003/3/6 17:59:13
Property MouseOldLoc --记录未移动前的鼠标位置
on startmovie
MouseOldLoc= the mouseloc
end
on exitframe me
if MouseOldLoc<>the mouseloc then --判断鼠标是否移动
quit
end if
end



D计划-混沌

职务:管理员
等级:6
金币:15.2
发贴:3528
#42003/3/7 1:06:24

set the timeoutMouse =true
set the timeoutLength to x* 60
然后
set the timeoutScript = "go 5"

on timeout
go "screen"
end timeout