Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Using a printer in Windows

From: izkata:aol at: 16-Apr-2002 20:02

Why don't you just use: printer: func [ text [file! string!] ][ if file? text [text: read text] write %printing.html rejoin [{<HTML> <BODY onLoad=window.print> } text { </BODY> </HTML> browse %printing.html ] Or something like that. I'm not sure if the onLoad function is window.print, or if I need something else to make it work - something similar is what I used to use. Daniel S.