I apologise for posting this absurd question on something I have done many times some years ago and had simply forgotten.
I do, however, have a real problem with moving Sprites as I don't seem to be able to use IF ---- THEN before moving a sprite. This code doesn't work but if I REM out the IF THEN and END IF lines it works okay. The trouble is, that without the IF ---- THEN it will also move other sprites.
IF Sname$="LeftSP" OR Sname$="RiteSP" THEN
EZ_MoveSprites Sname$, -1, 0, 1 ' Move Left
END IF
I have also tried moving the code to a subroutine but it still doesn't work with the IF ---- THEN but works without it.
Any suggestions?