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

nguyenp77
nguyenp77
Offline

Badges

Badges
5

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
9

Discussions

Discussions
0

Questions

Questions
5

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by nguyenp77
Customize the badges you want to showcase on your profile
Re: FileUtilsService Find method always return empty list! bug or config error? - Adobe LiveCycle 23-08-2010
Still not working. I write a simple script to do it.Thanks,Paulimport java.io.File;import java.lang.String;import java.util.Arrays;import java.util.List;File folder = new File("D:\\temp");File[] listOfFiles = folder.listFiles();String [] files = new String[listOfFiles.length];for (int i = 0; i < listOfFiles.length; i++) { if (listOfFiles[i].isFile()) { files[i] = listOfFiles[i].getName();}}List lstFile = Arrays.asList(files);patExecContext.setProcessDataListValue("/process_data/javaArray",lstFil...

Views

89

Likes

0

Replies

0
Re: FileUtilsService Find method always return empty list! bug or config error? - Adobe LiveCycle 23-08-2010
I have tried with all kind of reg expressions and I still get the same empty list result.yes, the list subtype is a string type.Thanks for looking into this issue,Paul

Views

90

Likes

0

Replies

0
FileUtilsService Find method always return empty list! bug or config error? - Adobe LiveCycle 23-08-2010
Dear all,I am trying to use the FileUtilsService Find method to return a list of file in a folder.For some reasons, it always returns empty list.Here is the config that I am using:InputDirectory: "c:\temp"Regular Expression: "*"Match Directories: "true"Match Files: "false"OutputResults: listThanks,Paul

Views

1.4K

Likes

0

Replies

4
Delete/remove attachement in PDF form? - Adobe LiveCycle 18-08-2010
Users send back PDF form with attach documents. How do you go about remove/delete these attachments in the PDF form? Any help is appreciated.Paul

Views

686

Likes

0

Replies

1
Flatten XML nodes? - Adobe LiveCycle 26-07-2010
Deal All,Is there a way to flatten xml nodes?Say, I have extracted the xml from the PDF document like this: Joe 123 July 13, 2010 2010-07-13 Paul 123 no where LN somewhere And I want to flatten it like this: Joe 123 July 13, 2010 2010-07-13 Paul 123 no where LN somewhere Is this possible?Thanks,Paul

Views

667

Likes

0

Replies

1
Set email notification when a process failed in LiveCycle - Adobe LiveCycle 16-07-2010
Dear All,Where do you go to set email notification when a process failed in LiveCycle? Say, I have a custom process to do somework. Currently, when the process failed, it writes to a log file but it does not help since I don’t monitor the process 24/7.Thanks,Paul

Views

627

Likes

0

Replies

1
Re: Insert data into a Dynamic table? - Adobe LiveCycle 28-04-2010
Srini,I got it to work by using this:xfa.resolveNode("Table1.Row1["+ i + "].Cell1").rawValue = "some value";thanks so much for you help.Paul

Views

84

Likes

0

Replies

0
Re: Insert data into a Dynamic table? - Adobe LiveCycle 28-04-2010
Srini,Thank you for your response but it still not working...for(var i = 1; i < 10; i++){//xfa.resolveNode("Table1.Row1[" + i + "].Cell1").rawValue = i"; // Still not workingTable1._Row1.addInstance(1);//form1.Table2.resolveNode("Row1[" + i + "]").Text1.rawValue = "hello" + i; // Still not workingTable2._Row1.addInstance(1);}xfa.form.recalculate(1);Let me know if you have some other ideas.Again thank you for your input...Paul

Views

85

Likes

0

Replies

0
Insert data into a Dynamic table? - Adobe LiveCycle 27-04-2010
I create a dymanic table.how do go about inserting data into it?Example:for(int i = 0; i < 10; i++){ form1.Table1.Row1.Text1.rawValue = i; //form1.Table1.Row[i].Text1.rawValue = i; // not working form1.Table1._Row1.addInstance(1);}xfa.form.recalculate(1);Any help is appreciated!Paul

Views

763

Likes

0

Replies

4