Expand my Community achievements bar.

BarlaeDC
BarlaeDC
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • HI,I believe this should help you outhttp://acrobatusers.com/tutorials/dynamically-setting-submit-e-mail-addressHope this helpsMalcolm

    Type

    Questions

    Views

    679

    Likes

    0

    Replies

    0
  • Hi,As you have set Visa/Mastercard/Switch to have a value of 1, this means that as far as the form is concerned these are the same value and therefore it always shows the first entry in the dropdown list with the value '1'. There are two possible solutions that I can think of1 - Change your dropdown...

    Type

    Questions

    Views

    322

    Likes

    0

    Replies

    0
  • Hi,If you put this code on the initialise event of the 'time' object in you hierarchy and make sure the event is set to 'JavaScript' ( at the right of the script window title bar)// if there is only 1 rowif ( this.instanceManager.count == 1){    // if TextField1.rawValue has no content    // I have ...

    Type

    Questions

    Views

    660

    Likes

    0

    Replies

    0
  • Hi,Reader extensions is not breaking your form, it is working exactly as I would expect it to, this may not however be how you are expecting it to work. ( or for that matter how it should work, but I believe it is how it works)I understand your reasoning for why you have set the form as you have wit...

    Type

    Questions

    Views

    658

    Likes

    0

    Replies

    0
  • Hi,I believe you problem with the rows being removed are because you have the repeating settings on the bindings tab set to "Repeat Row For Each Data Item" is checked"Min Count" is checked and set to "1""Initial Count" is checked and set to "8"This would mean to me that when it is first opened it sh...

    Type

    Questions

    Views

    685

    Like

    1

    Replies

    0
  • Hi,Can you post your form to a file sharing site ( e.g. acrobat.com) and post the link here then I can see how you form is made and should be able to find a solution to your problem.regardsMalcolm

    Type

    Questions

    Views

    1.1K

    Likes

    0

    Replies

    0
  • Hi, You could use code like this on the "+" and "-" buttons//This code is for the "+" button// get font sizevar currentSize = TextField1.font.size;// get location of the "pt" stringvar ptPlace = currentSize.indexOf ( "pt");// get the part of the string that is just numbersvar currentSizeInt = curren...

    Type

    Questions

    Views

    1.1K

    Likes

    0

    Replies

    0
  • Hi,Please note SHOUTING does not help.Using the code above you could easily modify that to generate a number on a button click but removing the if from the code and placing this on a button click and assigning it to a field;var d = new Date();fieldName.rawValue = Math.floor (d/1000);however as John ...

    Type

    Questions

    Views

    545

    Likes

    0

    Replies

    0
  • Hi,the  this.getfield(fieldName).rawValue = unescape(kvPair[1]) is how Acrobat JavaScript works this may need to be converted to LiveCycle Designer JavaScript which is of a formatsubformX.subformY.subformZ.resolveNode (fieldName).rawValue = unescape (kvPair[1]);Where the subformX, Y and Z are the ac...

    Type

    Questions

    Views

    319

    Likes

    0

    Replies

    0
  • Hi,Your script is written using Acrobat JavaScript, whereas because you are working in LiveCycle Designer you need to make the script compatible with the LiveCycle Designer form JavaScript.The code could be changed to this which works in LiveCycle Designervar cMyMsg = event.target.path// Assuming th...

    Type

    Questions

    Views

    799

    Likes

    0

    Replies

    0