Reply to Re: how 2 move group of sprites at same time
If you don't have an account, just leave the password field blank.
You'd have to do something like this:
move(&sprite1, 2, 300, 1);
move(&sprite2, 2, 300, 1);
move(&sprite3, 2, 300, 1);
move(&sprite4, 2, 300, 1);
move_stop(&sprite5, 2, 300, 1);
The trick is to use 'move' for all movements except the last, or longest, move.
move(&sprite1, 2, 300, 1);
move(&sprite2, 2, 300, 1);
move(&sprite3, 2, 300, 1);
move(&sprite4, 2, 300, 1);
move_stop(&sprite5, 2, 300, 1);
The trick is to use 'move' for all movements except the last, or longest, move.