Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

Feedback: irt.org FAQ Knowledge Base Q993

Feedback on: irt.org FAQ Knowledge Base Q993

Sent by Quan Liu on November 26, 1999 at 17:07:17: - feedback #628

Technical:
Not technical enough

Comments:
The script for printing multiple pages with a single button does not work because windows.print() will trigger a print prompt box which will print only the first document and ignore the rest of the documents. Is there any other way to print multiple documents using only one click?

Please respond as soon as possible to the following two emails:
quan.liu@wcom.com
linhin@erols.com

Thank you for your time.


Sent by rul on November 26, 2001 at 02:30:48: - feedback #3367

Technical:
Just right

Comments:
the problem is when I print it only out one output


Sent by rul on November 26, 2001 at 18:37:10: - feedback #3370

Technical:
Just right

Comments:
The script for printing multiple pages with a single button does not work because windows.print() will trigger a print prompt box which will print only the first document and ignore the rest of the documents. Is there any other way to print multiple documents using only one click?

Please respond as soon as possible to the following a emails:
rul_s@yahoo.com


Thank you for your time.




Sent by Chris Lively on July 03, 2002 at 13:19:38: - feedback #3981

Worth:
Worth reading

Comments:
The behavior listed needs to be updated for IE 6.

Under IE 6, if you execute the frames[i].print(); command, then a dialog box shows up which forces you to print ALL of the frames at once, individually.

In other words, each time you execute the print command, it will print a separate copy of the frame. Under this example there will be 3 copies of each frame printed.

Therefore, the printAll() function should really look like the following:

function printAll() {
frames.print();
}

Also, the original example appears to not work at all under NS4.5 on Win98


©2018 Martin Webb