屏蔽回车键 --精灵行为。 on keydown me if the key = return then nothing --屏蔽“阻断”keydown事件! else pass --继续下传keydown事件! end if end
屏蔽f键 --精灵行为
on keydown me if the key = "f" then nothing --屏蔽“阻断”keydown事件! else pass --继续下传keydown事件! end if end
另外,这里提供一个屏蔽字符串的行为供大家参考。如下,只能输入a-z,1-9和-。
property spritenum , letters on keydown me if (letters contains the key ) then pass else beep end if end on getpropertydescriptionlist me p_list = [ # letters : [ # format : #string , # default : "abcdefghijklmnopqrstuvwxyz1234567890-" , # comment : "allowed characters:" ]] return p_list end