Link to home
Start Free TrialLog in
Avatar of hpeng
hpeng

asked on

How to programatically access adobe form's fields/methods/events in java?

1). I need programatically manipulate the Adobe form's fields/methods/events/values.
2). I don't have Adobe Form Server.
3). Is there any util class/tool (In a jar) I can use to manipulate the Adobe Form's fields/methods/events/values in java?

Please provide some sample.

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Mayank S
Mayank S
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of hpeng
hpeng

ASKER

Actually my scenario is:
1). I have an adobe form which contains many fields, user can manually input value to each field.
2). and an export button on the form which can export the content of current pdf to a XML. Seems the export button is calling a script like "xfa.host.exportData("",0)"
3). and an import button which can import the content from an outside XML. And the import button just calls script like "xfa.host.importData()"
4). The adobe form is base on IPC 1752 standard. http://www.ipc.org/IPC-175x

I am wondering:
1). Whether I can execute the same script (like xfa.host.importData()) in java to import/export data?
or
2). I can manually import/export data to this form by java?

The purpose is to automatically import/export xml data to & from the PDF without need user click on the import/export button.

Thanks