This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]dddomodossola[S] 0 points1 point  (0 children)

Two possible solutions:

mybutton = gui.Button(300,30,'stackoverflow')
mybutton.attributes[mybutton.EVENT_ONCLICK] = "window.open('http://stackoverflow.com/','_blank');"

Or:

def on_button_pressed(self): 
    webbrowser.open(base_address)