I would want to know how to do for have as information , if the user press both the arrow key right and the arrow key up .
I would make a call different command if the user press only arrow right.
Code: Select all
on arrow key k
test k
end arrow key
command test k
if k is "right" then
command1
else -- if the user press arrow key up + right
command2
end if
end command