主题:  怎样在director8.5中屏蔽"Esc"和"Alt+F4

tpy

职务:普通成员
等级:1
金币:0.0
发贴:11
#12001/9/18 22:03:03
怎样在director8.5中屏蔽"Esc"和"Alt+F4"键,能屏蔽所有键更好。
谢谢



acneyouth

职务:普通成员
等级:1
金币:1.0
发贴:181
#22001/9/19 10:02:31
屏蔽ESC用set the exitlock=1,屏蔽Alt+F4没试过。



bluebox

职务:普通成员
等级:1
金币:1.0
发贴:290
#32001/9/19 10:06:15
on exitFrame me
set the exitLock = TRUE
end

alt+f4偶也没试过



poloer

职务:普通成员
等级:1
金币:1.0
发贴:139
#42001/9/19 10:15:19
on keyDown me
set the exitlock=true
if keypressed ("alt" ) and keypressed ("f4" ) then
nothing
--go the frame
end if
end
windows下可能屏蔽不了contral+alt+deletle组合键
试试吧,呵呵



leanne

职务:普通成员
等级:1
金币:0.0
发贴:44
#52001/9/19 11:02:44
KeyboardControl Xtra 1.1 for Director

可以中途截取包括CTRL+ALT+DEL, CTRL+C, ALT+TAB等组合健....

"Manufacturer: Meliora Software.
Price: $49.95 "
www.meliorasoft.com/xtras[/url]



云山

职务:普通成员
等级:1
金币:0.0
发贴:24
#62001/9/29 13:50:37
bluebox在上个帖子中说
on exitFrame me
set the exitLock = TRUE
end

alt+f4偶也没试过
这样可以,但是必须打包后的文件不能全屏幕播放,可以为窗口,有标题无标题都可以屏蔽ESC及ALT+F4,并且有标题时,单击标题行的关闭按钮也不能退出,必须使用D中的退出设置。