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

goneforgolddamo
goneforgolddamo
Offline

Badges

Badges
4

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
8

Discussions

Discussions
0

Questions

Questions
4

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by goneforgolddamo
Customize the badges you want to showcase on your profile
Re: Using a variable in an object name. - Adobe LiveCycle 21-09-2013
Hi Bruce,I am running this code in a 'on click' event on a button.Basically, I have 5 passenger names each with 6 CheckBox's for 6 sectors.If Checkbox1 (Sector 1) is checked, I want to put the passenger name in a textfield. Then look for the next passenger on sector 1 and put them in the next textfield.This needs to be done for each sector.So this is what I have:var PaxName1=Page1.PaxName1.rawValue; // and all other passenger names.// Sector 1var x = 1;while (x<5) var vCheck=Page1["CheckS1P"+x];...

Views

183

Likes

0

Replies

0
Re: Using a variable in an object name. - Adobe LiveCycle 21-09-2013
This doesn't seem to help me.I have managed the following:var x = 1;var vCheck="Page1.CheckS1P"+x;if (vCheck.rawValue==1) {Pax1Sect1.rawValue=PaxName1};I have confirmed vCheck = Page1.CheckS1P1 but the IF statement still does not work.

Views

179

Likes

0

Replies

0
Using a variable in an object name. - Adobe LiveCycle 21-09-2013
Hi,I have 15 text fields each with 6 check boxes.I would like to copy the text fields to new fields depending on which checkbox's are checked.This also needs to be in a loop.I need to know how to add a variable into a textfield name?My code is basically like this:var x = 1;while (x<15) {if (Page1.CheckP// insert the value of x //S1.rawValue==1) {Pax// insert the vaule of x //Sect1.rawValue=PaxName1 x=x+1}; }I am using Adobe Designer.Thank you in advance.Damo.

Views

1.1K

Likes

0

Replies

5
Re: Creating a document script for Clock in Acrobat Professional. - Adobe LiveCycle 12-01-2013
Hi Thom,I have now downloaded Acrodat Pro XI.It looks a bit different to acrobat professional 7.I need to work out where to add scripts.Thanks,Damien

Views

464

Likes

0

Replies

0
Creating a document script for Clock in Acrobat Professional. - Adobe LiveCycle 11-01-2013
Hi,I am trying to add a field on my PDF form which shows a continuous clock.I do not know how to add code to a document script in Acrobat Professional."Advaned/ Javascript/ Set Document Actions" is greyed out.Thanks in advance,Damo.

Views

3.1K

Likes

0

Replies

3
Re: Adding a clock to a field in a PDF using Adobe Designer - Adobe LiveCycle 10-01-2013
Hi Vjay,Thanks for your reply.Unfortunately this only gives me a timestamp for when the Pdf is opened.I need a continuous clock.Thanks.

Views

426

Likes

0

Replies

0
Adding a clock to a field in a PDF using Adobe Designer - Adobe LiveCycle 10-01-2013
Hi,I am trying to add a clock field to a PDF.It needs to be a continous clock in the format of HH:MM:SS. I am having alot of trouble.It is probably quite simple.Can anyone help?Thanks,Damo.

Views

1.3K

Likes

0

Replies

3
xfa.host.messageBox - Break the script with a return value - Adobe LiveCycle 03-10-2012
I have a message box with a YES/NO answer.If No is the return value, I would like to stop the script.Is there a way of doing this? Here is my script:if (xfa.host.messageBox("The manifest has already been created! Do you wish to continue?","Create Manifest",2,2)=="3") { break; }I am not sure if 'Break' is the right code.Hope someone can help me please!BTW, I am using Adobe Designer v7.0

Views

1.6K

Likes

0

Replies

0