The issue I am receiving is that I can't get this to trigger like it did in livecode 7 in the IDE. Anyone have any ideas, is this a bug? Perhaps this needs to be done a different method in livecode 8.
Thanks
Code: Select all
on rawKeyDown theKeyNumber
switch (theKeyNumber)
case 111 -- o
if the altKey is down then
handler1
break
end if
case 119 -- w
if the altKey is down then
handler2
pass rawKeyDown
break
end if
end switch
pass rawKeyDown
end rawKeyDown