我们如何阻止Tab键?
//this handler is not executed on simulator, maybe because it is supported only in Desktop and Web?
on tabKey
end tabKey
我想要的是,当用户按下tab
键时,它不应该添加任何空格。在开发中按下选项卡不会添加空间,但是当我在iPad模拟器8.2中运行它时,它会在按下选项卡时增加空间。
答案 0 :(得分:0)
rawKeyDown
消息应该按照您的意愿执行。
on rawKeyDown theKey
if theKey is not 65509 then
pass rawKeyDown
end if
end rawKeyDown