Flickerless Textobject, how?
Posted: Thu Jul 12, 2012 10:33 pm
This demonstration shows that textobjects are flickering when updated like this:
i also tried:
But its flickering too! whats wrong?
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)