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

zwickl
zwickl
Offline

Badges

Badges
4

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
7

Discussions

Discussions
0

Questions

Questions
3

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by zwickl
Customize the badges you want to showcase on your profile
Re: Adding Metadata to PDF Form - Adobe LiveCycle 13-08-2012
Hi,This is the code I use to place metadata into the pdf file. If you open the resulting pdf file using Notepad, the metadata is visible as readable text in the file. I'm not sure the same approach can be used to add metadata as viewed under Document Properties. We are not using it that way. Maybe by changing the node name?if ((EMAIL_SUBJECT1.rawValue != "")&&(EMAIL_SUBJECT1.rawValue != null)){ var vDesc=xfa.template.data.desc; var oNode1=xfa.template.createNode("text", "EMAIL_SUBJECT1"); vDesc....

Views

167

Likes

0

Replies

0
Re: Adding Metadata to PDF Form - Adobe LiveCycle 10-08-2012
I am out of the office until 08/13/2012.Note: This is an automated response to your message "[LiveCycle Designer]Adding Metadata to PDF Form" sent on 8/10/2012 6:18:49 PM.This is the only notification you will receive while this person is away.

Views

162

Likes

0

Replies

0
Re: Adding Metadata to PDF Form - Adobe LiveCycle 07-02-2011
Thanks for the tip. Using JavaScript instead of FormCalc corrected the problem.

Views

162

Likes

0

Replies

0
Adding Metadata to PDF Form - Adobe LiveCycle 04-02-2011
Hi, I'm trying to add some metadata to a pdf. I have the follow script in the form initialize event:if (form1.desc.nodes.namedItem("metadata") == null) then var oNode=xfa.form.createNode("text", "metadata") form1.desc.nodes.append(oNode)endifI receive the error message:Argument mismatch in property or function argumentI also tried this code:if (form1.desc.nodes.namedItem("metadata") == null) then var oNode=xfa.form.createNode("text", "metadata") oNode.value = "Test Data" form1.desc.nodes.append(...

Views

2.2K

Likes

0

Replies

6
Re: Controlling Subform Order - Adobe LiveCycle 11-11-2010
Yes, the subforms are set to repeat for each data item in the XML data file. If I set the subform not to repeat and use the same XML data file, I get only one instance of the each subform rendered.

Views

104

Likes

0

Replies

0
Controlling Subform Order - Adobe LiveCycle 10-11-2010
Hi, I have a form design that contains 2 subforms, SF and SF2. Can I specify the order of subform placement ina XML data file? For example, if I want to render SF1, SF2, SF2, SF1, can I specify the order in the XML data file? I tried this: Data1 Data2 Data3 Data4I get SF1, SF1, SF2, SF2 rendered.

Views

540

Likes

0

Replies

3
In Line Text Control - Adobe LiveCycle 04-11-2010
Hi, I'm in the process of transitioning from Adobe Output Designer to LiveCycle Designer ES. Is it possible to include in line text control in the XML data file similar to the \b or \u commands used in a field datastream?

Views

303

Likes

0

Replies

1