Flasher Archive

[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]


Subject: RE: FLASH: Printing from a .swf
From: Waldo Smeets
Date: Tue, 16 Nov 1999 21:50:45 GMT

i encountered some problems.
Only the first frame of the movie was printed, and ot the frame that was
visible at that time!
As far as I know there's no function for that in flash.
You can only use your browsers capabilities to print when that command is
given.
use FScommand to print in netscape 4 and explorer 4 and 5.

I have an action in dreamweaver that can print:

function print(theWindow) {
function stopError() {
return true;
};
window.onerror = stopError;
if (window.print) {
eval(theWindow + ".print()");
} else {
if (document.all) {
var OLECMDID_PRINT = 6;
var OLECMDEXECOPT_DONTPROMPTUSER = 2;
var OLECMDEXECOPT_PROMPTUSER = 1;
var WebBrowser = "<OBJECT ID=\"WebBrowser1\" WIDTH=0 HEIGHT=0
CLASSID=\"CLSID:8856F961-340A-11D0-A96B-00C04FD705A2\"></OBJECT>";
document.body.insertAdjacentHTML("beforeEnd", WebBrowser);
WebBrowser1.ExecWB(OLECMDID_PRINT, OLECMDEXECOPT_PROMPTUSER);
WebBrowser1.outerHTML = "";
}
}
}


When calling this function use print("self") if you want to print the
current window. Use an other javascript referrer if you want to print an
other window.
It should work an other browsers without error.


I hope you can use this for your FSCommand.


Waldo





-----Oorspronkelijk bericht-----
Van: owneratchinwag [dot] com [owneratchinwag [dot] com]Namens">mailto:owneratchinwag [dot] com]Namens Marty Gerich
Verzonden: dinsdag 16 november 1999 20:50
Aan: 'flasheratchinwag [dot] com'
Onderwerp: FLASH: Printing from a .swf


Is there a way to print from a shockwave file? I'm bringing text into a
text field and would like to print the info.

Thanks!
MWG


flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Streaming Media WEST '99 Conference & Exhibition
"The Worlds largest Internet Audio & Video Event"
December 7 - 9, San Jose Convention Center, California

Reserve your space today at http://www.streamingmedia.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com



flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Streaming Media WEST '99 Conference & Exhibition
"The Worlds largest Internet Audio & Video Event"
December 7 - 9, San Jose Convention Center, California

Reserve your space today at http://www.streamingmedia.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com


Replies
  FLASH: Printing from a .swf, Marty Gerich

[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]