Livecode Block Tab键

时间:2015-06-14 12:18:34

标签: livecode

我们如何阻止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中运行它时,它会在按下选项卡时增加空间。

1 个答案:

答案 0 :(得分:0)

rawKeyDown消息应该按照您的意愿执行。

on rawKeyDown theKey
  if theKey is not 65509 then
    pass rawKeyDown
  end if
end rawKeyDown