Multiple Clients
use as a remote interface
if you want to run this as a remote interface, you can use window.onopen
event.
def handler(window):
document=window.document
windo.alert("test")
mywindow=dicksonui.window()
mywindow.onopen=handler
your event handler is called when new client connected;
argument of event handler(window) is a window object
The Window ObjectLast updated
Was this helpful?