Interesting stuff - I hadn't come across the 'with' syntax before, so
I've learned something already.
I was briefly excited to learn about the callLater command which is just
a convenience class for the wxTimer class. It seems to be pretty much
a parallel of the
var t = window.setTimeout( f
I believe WxTimerEvent is handled using the event queue, which isn't
going to do what you want. An event which goes through the queue does
not get processed until you return to the queue.
What you want to do is actually a rather difficult task to do
generically. Should the task be interrupted im
bieff...@gmail.com wrote:
Python has in its standard library a timer class which actually is
implemented as a thread (I think) ...
however, when using a GUI package, I think it is better to use gui-
specific functions for event-driven programming,
to make sure that your code do not mess with GUI
On 15 Dic, 16:21, Ross wrote:
> I'm porting some ugly javascript managed stuff to have an equivalent
> behaviour in a standalone app. It uses events that arrive from a server,
> and various small images. In this standalone version, the data is local
> in a file and the images in a local directory
I'm porting some ugly javascript managed stuff to have an equivalent
behaviour in a standalone app. It uses events that arrive from a server,
and various small images. In this standalone version, the data is local
in a file and the images in a local directory.
My AJAX code managed a timely