Expand my Community achievements bar.

MinusZero
MinusZero
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Not too sure Adobe care much about non-subscription software anymore...there's money to be made. I still have unsolved problems with InDesign CS6 that have never been patched.

    Type

    Questions

    Views

    1.5K

    Likes

    0

    Replies

    0
  • I was writing this code and then i realised it isnt working as desired, however it does function and gives you a good idea about instance referencing.I added a numericfield with initialize event:NumericField1.rawValue = this.resolveNode("Table1.Row1.instanceManager").count;I also added to the button...

    Type

    Questions

    Views

    2.0K

    Likes

    0

    Replies

    0
  • The simple bit first.In the first table's exit javascript event add:this.resolveNode("form1.page1.Table1[2].Row1.Cell2").rawValue = this.resolveNode("form1.page1.Table1[1].Row1.Cell2").rawValue;That will duplicate the text in the second table when the first is exited.If you want to do this with repe...

    Type

    Questions

    Views

    2.1K

    Like

    1

    Replies

    0
  • Hi,In the Form docReady event (javascript) add:var printQuestion= app.alert("Do you want to print the instructions? \n\nClick Yes or No.",2,2, "Print Instructions?");if(printQuestion == "4") //4 equals yes{event.target.print(); //opens print dialog}if(printQuestion == "3") //3 equals no{//dont do an...

    Type

    Questions

    Views

    551

    Likes

    0

    Replies

    0
  • How are you referencing the other tables?From your description it seems like all three tables are the same, have you changed the table names in the hierarchy?If you are referencing the tables using this.resolveNode, you should make them diffferent names since it searches from the top of the form for...

    Type

    Questions

    Views

    710

    Likes

    0

    Replies

    0
  • No problem. Mine is part of the Design Standard CS6 package. Because of the way i solved this, it makes me wonder if for previewing it is a requirement. Maybe previewing even works with Reader?

    Type

    Questions

    Views

    1.5K

    Likes

    0

    Replies

    0
  • Hi,Assuming you have a standard install, there is a sample in the Aodbe folder which might help. Bring it into Livecycle and look at the code.Have a look here: (your acrobat version might be a different numberC:\Program Files (x86)\Adobe\Acrobat 10.0\Designer 9.0\EN\Samples\Forms\Purchase Order\Dyna...

    Type

    Questions

    Views

    1.7K

    Likes

    0

    Replies

    0
  • I have this come up periodically at my work place, so much so I wrote the solution so i wouldnt forget. I use ES2 and Acrobat Pro X.The solution for me was to do a repair install on Acrobat Pro X. When that was done, the preview worked again.

    Type

    Questions

    Views

    1.5K

    Likes

    0

    Replies

    0
  • Click your page in the Hierarchy ListIn the Object Properties, change to Flowed - SEE NOTE AT BOTTOMChange your textfield properties to Allow Multiple Lines and Expand to Fit.Objects below the expanding field will move down and over to another page if it reaches the bottom.NOTE: When you change your...

    Type

    Questions

    Views

    2.1K

    Likes

    0

    Replies

    0
  • Simply give the other objects the same rawValue when you exit the first label.eg:subform1.label1 exit event, javascriptsubform2.label1.rawValue = subform1.label1.rawValue;subform3.label1.rawValue = subform1.label1.rawValue;

    Type

    Questions

    Views

    934

    Likes

    0

    Replies

    0