Code: Select all
EnableLayers()
SetFont(#SANS,60)
Function p_main()
CreateTextObject(1, GetTime(True))
Undo(#TEXTOBJECT,1,1)
DisplayTextObject(1, 0, 0)
EndFunction
SetInterval(1, p_main, 1000/50) ; 50 fps
Repeat
WaitEvent
Forever
Code: Select all
AddMove(1 ,#TEXTOBJECT, 1, 0, 0)
DoMove(1)
ClearMove(1)