Code: Select all
on rawKeyDown theKeyNumber
switch (theKeyNumber)
case 111 -- o add
if the altKey is down then
go to card "Card 1" of stack "OtherStack"
break
end if
case 113 -- q tube
if the altKey is down then
go to card "Card 2" of stack "OtherStack"
break
end if
end switch
pass rawKeyDown
end rawKeyDown
Thanks for any help.