Just a quick thought before I leave for work again...
why not use variables, locally. Give each button a value.
moveStatus = 0;
Then on the actual buttons:
(say on _right1):
(say on _right2):Code:on(press){ moveStatus = 1; }
Then:Code:on(press){ moveStatus = 2; }
Code:on(release){ if (moveStatus == 1){ //_right1 through _right 5 .originalX + 1.5; else if(moveStatus ==2){ //_right1 moves left, 2 through 5 .originalX +1.5; //etc.





Bookmarks