Small print area | Projector | FlashProducts affected
Issue
When you call a print command from a Flash standalone projector, the printed area is only about 1-inch square. The projector has its allowscale property set to false,
Solution
Use ActionScript to temporarily set the allowscale property to TRUE before issuing the print command and then set allowscale back to FALSE. Attach the following ActionScript to the button used to print the Flash material.
This example is ActionScript 2.0 (not compatible with ActionScript 3.0).
on (release) {
fscommand("allowscale", "true");
print(0, "bmovie");
}
// fscommand ("allowscale", "false")
The script first uses the fscommand action to setallowscale to TRUE. The print command is then called, and the SWF file prints at the expected size. Finally, allowscale is set back to FALSE, its original value.
Additional information
This issue occurs due to a conflict between theallowscale and print commands.
Doc ID
(tn_15525)
Last updated
2011-05-31
Products affected
