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.
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.
window.nativeWindow.close();
with jQuery
$('a').click(function(){
window.nativeWindow.close();
});