OK, I have a small PHP-GTK App that creates a new window when a button is clicked. When another button is clicked, I want that window to go away. However, I cant find a fucntion to do it...
I tried
$window -> close();
and also
$window -> destroy();
I dont want to use gtk::main_quit(); because that will kill the whole thing. Any ideas?
D