Page 1 of 1

Is this expected behaviour?

Posted: Thu Nov 21, 2013 6:04 pm
by chris25
On arrow key down, that is 65364, as well as the box moving within the stack window I am periodically but regularly getting the LC green splash screen appear and also the application window stack gets grayed out (as if not selected) and the Script editor window becomes the focus, all this is happening while the object in the application stack window is moving at the same time that my finger is on the arrow key down.

Code: Select all

on moveBox
   if keysdown() = 65362 then
      set the top of the button "box" to the top of the button "box" - 1
   end if
   if keysdown() = 65364 then
      set the bottom of the button "box" to the bottom of the button "box" +1
   end if
   if keysDown() = 65361 then
      set the left of the button "box" to the left of the button "box" - 1
   end if
   if keysdown() = 65363 then
      set the right of the button "box" to the right of the button "box" +1
      end if

Re: Is this expected behaviour?

Posted: Thu Nov 21, 2013 7:00 pm
by dunbarx
How do you invoke "moveBox"?

Craig

Re: Is this expected behaviour?

Posted: Thu Nov 21, 2013 7:05 pm
by FourthWorld
Turn off the navigationArrows global property (easily done in Preferences, with the "Arrow keys navigate through cards" option.

That behavior is "normal" only in that it reflects a certain legacy, but I recently initiated a discussion with the team to consider turning it off by default to avoid confusing people like you and me.

Re: Is this expected behaviour?

Posted: Thu Nov 21, 2013 7:32 pm
by chris25
dunbarx wrote:How do you invoke "moveBox"?

Craig
With the arrow keys

Re: Is this expected behaviour?

Posted: Thu Nov 21, 2013 7:33 pm
by chris25
Thankyou Richard