Hi, 
If I use:
	Code:
	yield viztask.waitTime(10)
yield viztask.waitMouseUp(viz.MOUSEBUTTON_LEFT)
 the application will wait 10 seconds and then it will expect a left mouse click to continue. It's sequencial.
How can I do something like:
	Code:
	if time_is_up or mouse_clicked:
    do_stuff()
 using viztask?
Best regards,
Alex.