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

JMFTech12335
JMFTech12335
Offline

Badges

Badges
8

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
16

Discussions

Discussions
0

Questions

Questions
5

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by JMFTech12335
Customize the badges you want to showcase on your profile
Re: Going to jump out a window if this code doesn't work!!! (kidding...) - Adobe LiveCycle 13-07-2011
You have accomplished what I have been trying to do for weeks. Thank you.Thanks for the other tips as well!!!!!

Views

138

Likes

0

Replies

0
Re: Going to jump out a window if this code doesn't work!!! (kidding...) - Adobe LiveCycle 12-07-2011
I will test...how did you get the lines in there?You are awesome and I will pay it forward the best I can.Thanks again!!!

Views

136

Likes

0

Replies

0
Re: Going to jump out a window if this code doesn't work!!! (kidding...) - Adobe LiveCycle 12-07-2011
Wow...this is awsome!Thanks for the great tip on publishing!!!!!Here's the one with the code you helped me with:https://acrobat.com/#d=KGpnYlBloVNlt7IlDPOnZQHere's the previous one:https://acrobat.com/#d=g15oHp1EWo58lz7oD-qC*gThanks again for this great file sharing tip!!!!Now...I really need to get those underlines removed when a user STARTS TYPING in the NOTES_1 field(and agaian and again for NOTES_2, NOTES_3, etc...)Then, when the user opens the file back up, the underlines will not appear if...

Views

138

Likes

0

Replies

0
Re: Going to jump out a window if this code doesn't work!!! (kidding...) - Adobe LiveCycle 12-07-2011
Whew....it's definitely a Dynamic XML form saved for compatibility with 9.2 and up.I use Paperforms barcodes in this form as well.Still....at a loss on how to make these Text Fields disappear.Can I attach the file in this forum?

Views

133

Likes

0

Replies

0
Re: Going to jump out a window if this code doesn't work!!! (kidding...) - Adobe LiveCycle 12-07-2011
It does help, but doesn't fix the problem(Unless I did something wrong)I removed all other code related to this.Then added the following, but have the same identical issue.:topmostSubform.Page1.NOTES_1::docReady - (FormCalc, client)if ($ eq "") thenUNDLN_1.presence= "visible"UNDLN_2.presence= "visible"UNDLN_3.presence= "visible"elseUNDLN_1.presence= "hidden"UNDLN_2.presence= "hidden"UNDLN_3.presence= "hidden"endif

Views

133

Likes

0

Replies

0
Going to jump out a window if this code doesn't work!!! (kidding...) - Adobe LiveCycle 12-07-2011
But seriously, I need Underscores to disappear when a user starts typing in a Notes field and it does, but if the user did not type anything into the notes field, I need the underscores to appear so someone can handwrite notes.Here's the code under Page1:topmostSubform.Page1.UNDLN_1::initialize - (FormCalc, client)// start scriptif (NOTES_1.value <> "") thenUNDLN_1.presence="hidden" UNDLN_2.presence= "hidden" UNDLN_3.presence= "hidden"endif--------------------------------------------------------...

Views

819

Likes

0

Replies

10
Re: Simple formCalc script to set ALLtext fields = 1 text field - Adobe LiveCycle 15-06-2011
Thank you for your reply...I got the answer a bit differently as I wanted to use a button to AUTOFILL. Here's what I did:topmostSubform.Page1.OC.Button2::mouseUp - (FormCalc, client)File_Name[1]=File_NameFile_Name[2]=File_NameFile_Name[3]=File_NameFile_Name[4]=File_NameFile_Name[5]=File_NameFile_Name[6]=File_NameFile_Name[7]=File_NameFile_Name[8]=File_NameFile_Name[9]=File_NameFile_Name[10]=File_Name

Views

129

Likes

0

Replies

0
Simple formCalc script to set ALLtext fields = 1 text field - Adobe LiveCycle 15-06-2011
I want to add a button that will calculate all text fields in the form = 1 individual text field. I cancalculate 1 txt field = another text field, but don't know how to set multiple text fields = 1 text field. Ex: AutoFill button.Thanks!-JoeF

Views

730

Likes

0

Replies

3
Re: Script or Option to make text field invisible if user starts typing in another text field - Adobe LiveCycle 08-06-2011
Thank you for your suggestions...I just can't figure this out. There's no default value. I even inserted a new text field with an initialize script showing the value of "NOTES_1", but nothing shows up there.I had to change all my TEXT objects(That contain the UNDERSCORE) to TEXT FIELD object types in order to get a script inserted. Now it's giving me "Mispelled Caption" warnings, which I don't care about because it's only underscores, but maybe this has something to do with it?

Views

91

Likes

0

Replies

0
Re: Script or Option to make text field invisible if user starts typing in another text field - Adobe LiveCycle 08-06-2011
I tried but there's a problem. When I open up the PDF, the TextField2(Underlines) is hidden before anything is typed. There must be a value already in TextField1?// start scriptif (NOTES_1.value <> "" ) then UNDLN_1.presence = "hidden" UNDLN_2.presence = "hidden" UNDLN_3.presence = "hidden"endif// end script

Views

90

Likes

0

Replies

0