Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
10.1
10.2
10.3
10.4
10.5
11.0
11.1
11.2
11.3
11.4
Statistic
FMM
Blog
DynaPDF.CreateGoToRAction
Creates a go-to-remote action.
Component |
Version |
macOS |
Windows |
Linux |
Server |
iOS SDK |
DynaPDF
|
10.0 |
✅ Yes
|
✅ Yes
|
✅ Yes
|
✅ Yes
|
✅ Yes
|
MBS( "DynaPDF.CreateGoToRAction"; PDF; FileName; PageNum )
More
MBS(
"DynaPDF.CreateGoToRAction"; /* Creates a go-to-remote action. */
$PDF; /* The PDF reference returned from
DynaPDF.New. */
$FileName; /* File path to external PDF file. */
$PageNum) /* Destination Pagee.g. 5 */
Less
Parameters
Parameter |
Description |
Example |
PDF |
The PDF reference returned from DynaPDF.New. |
$pdf |
FileName |
File path to external PDF file. |
|
PageNum |
Destination Page |
5 |
Result
Returns action index or error.
Description
Creates a go-to-remote action.
A go-to-remote action opens an external PDF file and jumps to the page defined by the parameter PageNum. If the destination page does not exist the first page will be displayed.
The path to the external PDF file should be defined as relative path. Actions must be added to a PDF object with DynaPDF.AddActionToObj. This function is also implemented in a wide version that accepts an Unicode file path. However, Unicode file path are supported since PDF 1.7 (Acrobat 8). Earlier Acrobat versions will fail to open the file if the path contains non-Ansi characters.
If the function succeeds the return value is the action handle, a value greater or equal zero.
See also CreateGoToRAction function in DynaPDF manual.
See also
Release notes
Blog Entries
Created 5th December 2019, last changed 5th December 2019
DynaPDF.CreateGoToActionEx
-
DynaPDF.CreateGoToRActionEx
Feedback: Report problem or ask question.