vote up 0 vote down star

I'm using Adobe Air with a custom chrome and want to have a close button to close the window

I'm just starting out so I have no idea. I'm using HTML and javascript with Aptana Studio.

flag

73% accept rate
What that "close button" should do? – Ivan Nevostruev Nov 2 at 17:37
I want it to close the window, sorry should have said. – Ben Shelock Nov 2 at 17:39

1 Answer

vote up 0 vote down check
window.nativeWindow.close();

with jQuery

$('a').click(function(){
    window.nativeWindow.close();
});

More info

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.