Copy link to clipboard
Copied
I am trying to import mark-ups based on the value of a dropdown on the page.
I currently have the import script as a toolbar button. I have several different pre-made styles and need the dropdown "RISER_TYPE" to import the mark-up associated to the value when selected.
EXAMPLE
if "RISER_TYPE" dropdown = "example value-1" then IMPORT("C:\PDF MARK UP TEMPLATES\TEMPLATE-1 REV 1.0.bax" , if "RISER_TYPE" dropdown value = "example value-2" then IMPORT("C:\PDF MARK UP TEMPLATES\TEMPLATE-2 REV 1.0.bax"))
The basic code would be something like this (as the custom validation script of the drop-down field):
if (event.value=="ABC") this.importAnFDF("/c/temp/abc.fdf");
Copy link to clipboard
Copied
Acrobat doesn't have the ability to import .bax files. It can import comments in FDF and XFDF files. What PDF viewer are you using?
Copy link to clipboard
Copied
I am using Bluebeam and Adobe. What would the script for importing various FDF files from a dropdown selection?
Copy link to clipboard
Copied
The basic code would be something like this (as the custom validation script of the drop-down field):
if (event.value=="ABC") this.importAnFDF("/c/temp/abc.fdf");
Copy link to clipboard
Copied
Thanks for the help!