Arbortext IsoDraw > Macro Language Reference > 3D and User Interaction Commands > Further Macro Commands > Wait Timer
  
Wait Timer
With the WAIT TIMER command you can stop the application for a given time period. The current window will be redrawn beforehand.
WAIT TIMERticks
ticks
Length of time the application will be stopped as an integer. One tick is 1/60 of a second.
MACRO movement
DEFINE i AS integer
DEFINE n AS integer
FOR i = 0 TO 90 STEP 15
CREATE ELLIPSE 100 200 20 180 i
CREATE ELLIPSE 100 200 20 90 i
END FOR
SELECT ALL
GROUP SELECTION
FOR n=2 TO 400 STEP 5
WAIT TIMER 1
MOVE SELECTION 5 1
END FOR
END MACRO