Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

skies1001
skies1001
Offline

Badges

Badges
2

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts

Posts
2

Discussions

Discussions
0

Questions

Questions
2

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by skies1001
Customize the badges you want to showcase on your profile
Re: Opening encrypted attachment using Acrobat JavaScript exportDataObject - Adobe LiveCycle 27-10-2011
That seems right to me. Is there a way to prevent that caching ? Like programatically or through configuration ?One thing I forgot to mention, this does not happen on all the machines, on some machines, it works fine, I click on open, click on cancel, again click open and the box appears just fine. While on other machines, once I hit cancel on the login dialog box, the dialog box never appears again, the above code keeps going in the exception block.So I am wondering if it is because of some set...

Views

159

Likes

0

Replies

0
Opening encrypted attachment using Acrobat JavaScript exportDataObject - Adobe LiveCycle 27-10-2011
Hello Folks,We are trying to implement an open button in our main pdf file, which tries to open an encrypted attachment in the pdf doc. The attachment is also a pdf document. Below is the code that we are using :-var doc = event.target;var dataObjects = doc.dataObjects;var file;var e;var i;for (i = 0; i < dataObjects.length; i++){ file = dataObjects[i].name; try { doc.exportDataObject({ cName: file, nLaunch: 2, bAllowAuth:true }); } catch(e) { app.alert(e.message); }}This code works fine, when t...

Views

2.3K

Likes

0

Replies

3