Hello, I am still programming in PTC because I am in germany, soo.. I can´t get it :L I have soome questions: 1. Is SPANIM still existent? 2. How are variables declared? 3. How is TOUCH used?
Variable declaration is optional, except for arrays
VAR and DIM are the same
DIM a[0],randomnumber=42
PUSH a,[some value]
is very common
TOUCH OUT TM,TX,TY
IF TM>0 THEN PRINT TX,TY
prints out the touch coordinates when the user is tapping (TM is 0 if not tapping, and >0 if tapping, TM==1 if its the first tap)