Livecode 块 Tab 键

Livecode Block Tab Key

我们如何阻止 Tab 键?

//this handler is not executed on simulator, maybe because it is supported only in Desktop and Web?

on tabKey

end tabKey

我想要的是,当用户按下tab键时,它不应该添加任何space。在开发中按 tab 不会添加 add space 但是当我在 iPad 模拟器 8.2 中 运行 它时,它会在按下 tab 时添加 space。

rawKeyDown 消息应该符合您的要求。

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