PDA

View Full Version : Printing a browser window


jaredly
06-04-2002, 10:56 PM
Does any one Know how to print a browser window using a button.

tg
06-04-2002, 11:30 PM
try either:

on(release){
getURL("javascript:window.document.print();");
}

or

on(release){
getURL("javascript:window.print();");
}


check at some of the javascript sites and look up the DOM

*note: no space in 'javascript'(in the code) for some reason, the forums sometimes ad a space.

jaredly
06-05-2002, 12:00 AM
Thanks again.