MACROMEDIA DIRECTOR MX 2004-DIRECTOR SCRIPTING Reference page 475

Director scripting reference
Table of Contents

Advertisement

printFrom()
Usage
-- Lingo syntax
_movie.printFrom(startFrameNameOrNum {, endFrameNameOrNum, redux})
// JavaScript syntax
_movie.printFrom(startFrameNameOrNum {, endFrameNameOrNum, redux});
Description
Movie method; prints whatever is displayed on the Stage in each frame, whether or not the frame
is selected, starting at the frame specified by
and a reduction (
The frame being printed need not be currently displayed. This command always prints at 72 dots
per inch (dpi), bitmaps everything on the screen (text will not be as smooth in some cases), prints
in portrait (vertical) orientation, and ignores Page Setup settings. For more flexibility when
printing from within Director, see PrintOMatic Lite Xtra, which is on the installation disk.
Parameters
startFrameNameOrNum
first frame to print.
endFrameNameOrNum
frame to print.
Optional. An integer that specifies the reduction value. Valid values are 100, 50, or 25.
redux
Example
This statement prints what is on the Stage in frame 1:
-- Lingo syntax
_movie.printFrom(1)
// JavaScript syntax
_movie.printFrom(1);
The following statement prints what is on the Stage in every frame from frame 10 to frame 25.
The reduction is 50%.
-- Lingo syntax
_movie.printFrom(10, 25, 50)
// JavaScript syntax
_movie.printFrom(10, 25, 50);
See also
Movie
) value (100%, 50%, or 25%).
redux
Required. A string or integer that specifies the name or number of the
Optional. A string or integer that specifies the name or number of the last
. Optionally, you can supply
startFrame
endFrame
printFrom()
475

Hide quick links:

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the DIRECTOR MX 2004-DIRECTOR SCRIPTING and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Director mx 2004

Table of Contents