PennController for IBEX › Forums › Support › response timeout › Reply To: response timeout
February 8, 2023 at 10:57 am
#9894
Keymaster
Hi,
As long as you keep the 200ms timer before removing the Canvas, you should see the frame for 0.2s:
newTimer("timeout", 5000)
,
newSelector("pal_sel")
.add(getText("pal1"), getText("pal2"), getText("pal3"))
.frame("dashed 3px violet")
.log()
.callback( getTimer("timeout").stop() )
,
getTimer("timeout").start().wait()
,
newTimer(200).start().wait()
,
getCanvas("canvas12").remove(),
Jeremy