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,
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")
Keywords:
tn_15525

