[FONT=Times New Roman][SIZE=3][COLOR=blue]Hi friends[/COLOR][/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3][COLOR=#0000ff][/COLOR][/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3][COLOR=blue]I have 1024 X 768 flash Movie. I want to print the whole screen, but it not fit in the A4 sheet. Help me to make the print page fit in to the screen. Action script which I have used in flash is mentioned below[/COLOR][/SIZE][/FONT]
[COLOR=red]on (release) {
var my_pj:PrintJob = new PrintJob();
if (my_pj.start()) {
my_pj.pageHeight
var pageAdded:Boolean = false;
if (my_pj.orientation == “portrait”) {
pageAdded = my_pj.addPage(_root, {xMin:0, xMax:600, yMin:0, yMax:800});
} else {
pageAdded = my_pj.addPage(_root, {xMin:0, xMax:1024, yMin:0, yMax:768});
}
if (pageAdded) {
my_pj.send();
}
}
delete my_pj;
}[/COLOR]