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

_Bruce_Robertson
_Bruce_Robertson
Offline

Badges

Badges
38

Accepted Solutions

Accepted Solutions
372

Likes Received

Likes Received
274

Posts

Posts
1782

Discussions

Discussions
45

Questions

Questions
1737

Ideas

Ideas
0

Blog Posts

Blog Posts
1
Top badges earned by _Bruce_Robertson
Customize the badges you want to showcase on your profile
Re: Binding and XML Data - Adobe LiveCycle 30-10-2020
Hi, If your table is static then could you have two body rows. The binding expression for MO1 in the first body row would be "$.Schedules[0].FieldA" , MO2 would be "$.Schedules[1].FieldA", then for the second row use "$.Schedules[0].FieldB" and "$.Schedules[1].FieldB". Bruce

Views

414

Likes

0

Replies

0
Re: Change Textfield (with default text) color when user... - Adobe LiveCycle 08-07-2020
The runtimeHighLight property is one of the users application preferences. It is the same as if you went into Edit ... Preferences ... Forms and change the highlight color options there. Maybe you have one of the other settings there getting in the way. Can you try a different computer and see if the same things happens?

Views

751

Likes

0

Replies

1
Re: Change Textfield (with default text) color when user... - Adobe LiveCycle 06-07-2020
Hi, your code to turn off highlighting should work, as long as the "F" of false is in lowercase, if that just some sort of auto correct in this forum? And, I would put it in the docReady event. There is more about the field highlighting, with a sample, in Niall's blog, https://experienceleaguecommunities.adobe.com/t5/adobe-livecycle/ct-p/adobe-livecycle-community Bruce

Views

754

Likes

0

Replies

1
Re: Incrementing the counter for every page - Adobe LiveCycle 03-07-2020
Hi Ashok1, I'm not sure I understand when does the form know to go from 2/2 to 1/4 or 4/4 to 1/3. Are there multiple master pages? Maybe some images of your form hierarchy would help. Regards Bruce

Views

438

Likes

0

Replies

0
Re: Change Textfield (with default text) color when user... - Adobe LiveCycle 03-07-2020
Hi, I guess there is something my code does not allow for in your form, are the fields in a repeating block, or are the field names duplicated? My test form for the code is;https://sites.google.com/site/livecycledesignercookbooks/home/ab35711410.pdf?attredirects=0&d=1 Can you share your form, just upload to whatever site (google docs, dropbox, etc) and post a link in this thread. Bruce

Views

772

Likes

0

Replies

1
Re: Change Textfield (with default text) color when user... - Adobe LiveCycle 30-06-2020
Hi, Try this code in the layout.ready event form1.#subform[0].TextField1::ready:layout - (JavaScript, client) var som = this.somExpression.replace(/\[[0-9]*\]$/, ""). replace(/\[[0-9]*\]\./g, "."). replace(/xfa\.form/, "$template"). replace(/#subform\./, ""); var f = xfa.resolveNode(som); if (this.isNull || f.value.text.value == this.rawValue) { // is field empty or the default value this.ui.oneOfChild.border.fill.color.value = "255,255,153"; } else { if (this.ui.oneOfChild.border.isPropertySpec...

Views

845

Likes

0

Replies

3
Re: PDF form crashes LiveCycle when trying to reopen - Adobe LiveCycle 10-06-2020
Hi, You can still add a link to your form in the thread. I can try opening it on my computer. Designer will create a copy of the form every time you preview it, this copy will be in your %temp% directory (just type %temp% into explorer) and will have a random name like _304g3770t141109nh.pdf. But this directory is usually under AppData, so you may have deleted it already ... but in case you took a copy. Regards Bruce

Views

1.1K

Likes

0

Replies

2
Re: Live Cycle Designer edit caption - Adobe LiveCycle 08-06-2020
Turns out I don't have a copy of Designer 11, but I have tried Designer 10 and AEM Forms 6 and can't see any problem. To upload your form you can use any file share web site, like google docs, dropbox, or whatever and post a link to it here. Bruce

Views

1.1K

Like

1

Replies

1
Re: Live Cycle Designer edit caption - Adobe LiveCycle 05-06-2020
Hi, That does sounds unusual, is it happening to all forms, even new ones? I am happy to try it on my system to see if it is the form or not. Are you able to share your form, you can upload it to any file share and post a link to it here. RegardsBruce

Views

1.3K

Likes

0

Replies

0
Re: Calculating time - Adobe LiveCycle 12-04-2020
To get the total number of hours between your two field you can use, this FormCalc in the calculate event of your hours field. (Time2Num(TimeField2.formattedValue, "HH:MM") - Time2Num(TimeField1.formattedValue, "HH:MM")) / (60 * 60 * 1000) If you want 10 minute increments you might be better off with a couple of dropdowns to choose hours/minutes or maybe something like this timepicker with up/down 'spinner' arrows.

Views

3.5K

Likes

0

Replies

0
Likes given to