Reply To: response timeout

PennController for IBEX Forums Support response timeout Reply To: response timeout

#9894
Jeremy
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