Thread: Text unreadable
View Single Post
  #8  
Old 04-04-2014, 04:28 AM
rlh001 rlh001 is offline
Member
 
Join Date: Mar 2011
Posts: 18
Depending on the TEXT used different letters will be dim .. Here they are only dim in non full screen. other times they are missing and dim on full screen.




trackDisp = viz.addText('First message on screen',parent=viz.SCREEN, )

trackDisp.message('second message from in line code')

TimerID = 1
#Create a function to handle the timer events.
def onTimer(num):
# #Use the time ids to identify the timer.
print 'timeout'
trackDisp.message('this is the text from the timer 123456789')

#Register the timer callback.
viz.callback(viz.TIMER_EVENT,onTimer)

#Start timer.
viz.starttimer( TimerID, 1, viz.PERPETUAL )
Reply With Quote