Groups | Blog | Home
all groups > flash actionscript > october 2004 >

flash actionscript : Printjob.start() does not bring up print dialog box.


tbird
10/28/2004 2:09:48 PM
The printjob.start() command never does anything for me. Under debugging,
any variable set = my_pj.start() ends up being undefined and the dialog box
never shows. I couldn't find a solution on the net. Does anyone have any
suggestions on what might be happening?

Thanks.

theco
10/28/2004 9:44:48 PM
try this
my_bto.onPress = function() {
print("scene2","bframe");

}
it work for me.

[quoted text, click to view]

twicks
11/1/2004 11:08:42 AM
Try declaring the printjob first

var PrintDoc = new PrintJob();
var PrintStart:Boolean = PrintDoc.start();

PrintDoc.start();


[quoted text, click to view]

AddThis Social Bookmark Button