|
The background color of the screen in full screen mode. See Color arrays for details.
Color Array
R/W
app.fs.backgroundColor = color.ltGray;
Specifies whether a mouse click anywhere on the page causes the page to advance.
Boolean
R/W
Determines the behavior of the pointer in full screen mode. The convenience cursor object defines all the valid cursor behaviors:
Cursor Behavior |
Keyword |
---|---|
Always hidden |
cursor.hidden |
Hidden after delay |
cursor.delay |
Visible |
cursor.visible |
Number
R/W
app.fs.cursor = cursor.visible;
The default transition to use when advancing pages in full screen mode. Use transitions to obtain list of valid transition names supported by the viewer.
“No Transition” is equivalent to app.fs.defaultTransition = "";
String
R/W
Put the document into presentation mode.
app.fs.defaultTransition = "WipeDown";
app.fs.isFullScreen = true;
A Boolean value specifying the escape key can be used to exit full screen mode.
Note:(Version 8.0) This property can only set to false during batch and console events. See Privileged versus non-privileged context for details. The event object contains a discussion of JavaScript events.
Boolean
R/W
5.0 |
|
|
|
If true, the viewer is in full screen mode rather than regular viewing mode, which is possible only if one or more documents are open for viewing.
Note:A PDF document being viewed from within a web browser cannot be put into full screen mode.
Boolean
R/W
app.fs.isFullScreen = true;
In the above example, the viewer is set to full screen mode. If isFullScreen was previously false, the default viewing mode would be set. (The default viewing mode is defined as the original mode the
Specifies whether the document will loop around to the beginning of the document in response to a page advance (whether generated by mouse click, keyboard, or timer) in full screen mode.
Boolean
R/W
The default number of seconds before the page automatically advances in full screen mode. See useTimer to activate or deactivate automatic page turning.
Number
R/W
Set full screen properties, then go into full screen mode.
app.fs.timeDelay = 5; // Delay 5 seconds
app.fs.useTimer = true; // Activate automatic page turning
app.fs.usePageTiming = true; // Allow page override
app.fs.isFullScreen = true; // Go into full screen
5.0 |
|
|
|
An array of strings representing valid transition names implemented in the viewer. No Transition is equivalent to setting defaultTransition to the empty string:
app.fs.defaultTransition = "";
Array
R
Produce a listing of the currently supported transition names.
console.println("[" + app.fs.transitions + "]");
Specifies whether automatic page turning will respect the values specified for individual pages in full screen mode. Set transition properties of individual pages using setPageTransitions.
Boolean
R/W
Specifies whether automatic page turning is enabled in full screen mode. Use timeDelay to set the default time interval before proceeding to the next page.
Boolean
R/W