

So, I've got the keyboardActivated step working, and I've got it ready to group everything to move it. The only issue is that I've got it set up like this:
Code: Select all
on keyboardActivated
repeat with i=1 to the number of controls of this card
set the selected of control i to true
end repeat
group
repeat with i=1 to the number of controls of this card
set the selected of control i to false
end repeat
end keyboardActivated

The second issue is that for some reason, Jacque's advice doesn't work (even though the dictionary says it should), and doing on newGroup apparently doesn't do anything. I've got it so that it answers 1 if newGroup is activated, and it doesn't do that. I've put breakpoints and still nothing happens

