In my simple code below, I load the help file by pressing the key F1.
Code: Select all
on functionKey theKey
switch theKey
case 1 -- AIDE
etc...
Thanks in advance.
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
on functionKey theKey
switch theKey
case 1 -- AIDE
etc...
Code: Select all
on functionKey theKey
switch theKey
case 1
if the controlKey is down and the shiftKey is down then
-- do special help thing
else
-- do regular F1 help thing, maybe pass functionKey?
end if
break
default
pass functionKey
end switch
end functionKey