livecode - Shortcut key have problems -


i have got of coding shortcut. problem have scrolling filed when performing shortcut key event place particular key scrolling field eg: if press alt+b b placed inside scrolling field

on rawkeydown thekeynumber      switch (thekeynumber)        case 98 -- b          if altkey  down            answer"hai"            end if          break     end switch    pass rawkeydown end rawkeydown 

the behavior you're seeing occurring because you're not exiting rawkeydown handler when altkey detected. try this:

on rawkeydown thekeynumber    switch (thekeynumber)        case 98 -- b          if altkey  down             answer "hai"             exit rawkeydown #<---exit here          end if       break     end switch    pass rawkeydown end rawkeydown 

Popular posts from this blog

javascript - Js, document.getElementById("ID").innerHTML, error -

objective c - Is there a way in OCMockito to make stubs fail when an unknown method is called? -

jquery - jqGrid update specific column data with out refreshing the entire column? -