As far as I can make out it's not possible to reset the default font or font size in LC Designer ES 8.2........or is it, & if so, how?I found this page re LC ES3, but it doesn't seem to apply to earlier versions.TIA
Reading the document "Javascript for Acrobat API Reference" Page 120:http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdfthe document discusses the execMenuItem command. From all that I have researched it appears I cannot create a button that copies text from a text fi...
I was trying to get a box to fill in someone's name slowly so it looked like a person was typing. I tried this code but it never worked out.var x = 0 while (x<2) { x = x + 1; app.setTimeOut("xfa.form.gameform.money_game.player_name.writeFred(x)", 2000); } function writeFred(t) { if ( t == 1 )...
The user of the form I am desiging will enter text into a two column table. The user has the ability to create additional text boxes in the table to contain more names. I have written a javascript to take the names from each box and place all of the names into one text field seperated by a semicolon...
I created a 5 page forms using buttons to navigate to different pages. When the form is opened you can navigate using the buttons, however, you can also scroll down and see the other pages how do I hide these pages? tHe code i'm ising is this:/ this calls the function to hide all the pagespageNav.hi...
How do I convert a dynamic XML pdf form created from Livecycle designer ES to Microsoft word? I have Acrobat X and when I click on File -> Save As - > and choose 'Save as type' as "Microsoft Word Document (*.doc)", I am getting this message: "Save as failed to process this document. No file was crea...
Although it consistenly goes to the same choice for each group, when I tab through my form, it seems somewhat random which radio button I tab into for each group. Most times it is the left-most or top button (desired) but often it is another choice. I have them in the correct order in the heirarch...
Based on Adobe Acrobat SDK document "Javascript for Acrobat API Reference": Pg 146 I have been able to get the trusted function to work and save a file to a particular path with a non-dynamic name. However I have yet to figure out why the document will not save the field entry I specify as the file ...
I have two checkboxes: 'Yes' and 'No'. When I check the 'Yes' box I want a textstring 'Good Job!' to be visible in the textbox. And when I check the 'No' box I want a sad emoticon to be visible in the textbox. Of course, I want to disable multiple answers too. Help please