From: Stef M. <s.m...@ru...> - 2009-01-06 22:12:56
|
hello, the simple program below, hiding the scene for a moment, lets the text disappear in VP3 (VP5 works ok). (winXP-sp2) Is there a workaround ? thanks, Stef from visual import * label ( text = 'Click to show problem' ) while True : rate ( 50 ) if scene.mouse.clicked > 0 : while scene.mouse.clicked > 0 : scene.mouse.getclick() scene.visible = False scene.visible = True |