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

dohanlon
dohanlon
Offline

Badges

Badges
18

Accepted Solutions

Accepted Solutions
33

Likes Received

Likes Received
30

Posts & Comments

Posts & Comments
133

Discussions

Discussions
0

Questions

Questions
0

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by dohanlon
Customize the badges you want to showcase on your profile
Re: Folder hyperlink issue again - code reads differently in Reader than in Acrobat Pro - Adobe LiveCycle 12-04-2012
Your uri's all need to be safely encoded to be cross app/ corss platform ready. A safe path in adobe has different formatting than standard unc conventions, so if you enter \\cgi\\shares\Departments, you need to encode this as //cgi/shares/Departments and then add the file: notation in front. The safe path notation is not the same as a unc which you can use in browsers for example, it is just used to allow acrobat/reader api's a common format. When using paths like this in acrobat or reader all ...

Views

424

Likes

0

Replies

0
Re: Scripting for a pattern validation message - Adobe LiveCycle 12-04-2012
You can access the validation pattern message property through script using DateTimeField1.validate.message.formatTest.valueThe scripting validation pattern message is done using DateTimeField1.validate.message.scriptTest.value

Views

170

Likes

0

Replies

0
Re: Hyperlink issue in LS Form - Adobe LiveCycle 05-04-2012
I am presuming this issue arises under acrobat/reader as your code excludes presentation agent. The paths you are trying to use are not acrobat device independant paths, which basically uses a different notation to try and support cross platform uri's. You would need to use file://netapp/group/subdirectory and so on. In general it would be protocol: \ device \ path \ file. Anything else gets URI encoded.

Views

448

Likes

0

Replies

0
Re: 2 up multiple text box entry - Adobe LiveCycle 05-04-2012
You can just set the right hand text value to the left hand value on the change event of the left field using:RightField.rawValue = xfa.event.newText;

Views

143

Likes

0

Replies

0
Re: Auto fit text boxes to not save correctly - Adobe LiveCycle 05-04-2012
Have you got the script-based state changes on under Form Properties->Defaults->Scripting->Automatically? Otherwise do you have scripting on any initialise event which would interfere with the state of the save form?

Views

198

Likes

0

Replies

0
Re: So close but need help comparing strings in different subforms with for loop - Livecycle ES - Adobe LiveCycle 03-04-2012
Your if statement has a ; at the end basically making the test redundant and executing the code block following at all times. You also should not do - this.rawValue = this.rawValue + ... since it will keep adding on every calculate. Start from 0 in a local variable and assign it to the rawValue at the end.

Views

278

Like

1

Replies

0
Re: So close but need help comparing strings in different subforms with for loop - Livecycle ES - Adobe LiveCycle 03-04-2012
Sorry I cant see your document link - probably have to publish it first. However from looking at the script you are using array notation in javascript to access object collections. The hierarchy object model is not a javascript array but rather a collection of dom objects even though the som expressions use them as accessors in formcalc for example. clientName.rawValue == P1.rep[x].ItemSet[i].client.rawValuewould be invalid javascript since rep is not an array. Probably would need to be P1.resol...

Views

276

Likes

0

Replies

0
Re: How to efficiently check if ANY field in the form is not null - Adobe LiveCycle 29-03-2012
resolveNodes method will only return a list of objects which you need to loop through.

Views

934

Likes

0

Replies

0
Re: Adding CC to custom 'Submit' button - Adobe LiveCycle 29-03-2012
Just add "&cc=" + vCC to before "&body=" for example

Views

218

Likes

2

Replies

0
Re: if/else scripts - Adobe LiveCycle 29-03-2012
It depends on where you are running your script from and which event. If its on the check box then you will also need to check for the SSN before displaying your message, as at the moment it just fires the error when the checkbox is checked - nothing else. So something likeif ( this.rawValue == "1" && SSN.isNull ){... handle error }

Views

177

Likes

0

Replies

0
Likes given to