in reply to Re^8: Tk Bind scalar
in thread Tk Bind scalar
Thanks for all the help Skywalker#start thread $thr = threads->new(\&sub1); #setup timer to process in 500ms intervals $mw->repeat(500 => \&update_display); MainLoop(); sub update_display{ print "Running from Mainloop\n"; $mw->update; } sub sub1{ while (1){ print "Running From thread\n"; sleep(1); } }
|
|---|