主题:  让ESC变成最小化

水龙头

职务:普通成员
等级:1
金币:0.0
发贴:131
注册:2001/6/19 6:24:38
#12002/1/24 21:53:29
我首先
on exitFrame me
set the exitLock = TRUE
end
屏蔽掉了ESC然后设置ESC的APPMINIMIZE但是没有效果到底是怎么回事
请大家帮忙解决



marker

职务:普通成员
等级:1
金币:0.0
发贴:65
注册:2001/11/7 15:56:52
#22002/1/25 10:13:46
你是想在按下ESC键时不退出影片而是使它最小化对吗?
那么可以这样:

在电影脚本中:

on startmovie
the exitLock=true
end

on keydown
if the keycode=53 then
appminimize
end if
end