Custom Netsend pop-up notifications

Whats the easiest way of having a popup box that will let the other code run?

I’ve tried a newDialouge box and a message box, but each of them need to you either press ok or close the window for the rest of the code to run.

Ideally i would have a popup box appear while it runs the rest of the code in the background

Hi,

This sounds like a job for the threading module in Python
docs.python.org/2/library/threading.html

Some examples if it helps:
daniweb.com/software-develo … g-tutorial
stackoverflow.com/questions/2846 … or-dummies
en.wikibooks.org/wiki/Python_Pro … /Threading