Creating 3-D arrays in LiveCycle Designer

Hi All,
I would like to know how to declare 3-D arrays using JavaScript in Adobe LiveCycle Designer ver 8.
Explanation with a small example would be helpful.
Regards,
Prashant

Hi Muhammad,
I am not sure about availability of bookmarks in LiveCycle Designer 7.1. But you have setFocus method available in designer. This method you can use to set the cursor position.
Syntax for this method is:
xfa.host.setFocus("xfa[0].form[0].form1[0].#subform[2].TextField2[0]");
Regards,
Amit

Similar Messages

  • Updating Tag Name using Adobe Professional for PDF form created with Tags in Adobe Livecycl Designer

    I have created a form using Adobe Livecycle Designer. These PDF forms have Tags on them when created and generted from Adobe livecycle designer.
    I am able to open the PDF form in the Adobe Profesional 9.0.
    I want to edit / Update the Tags on the PDF form using Adobe Professional 9.0. I am not seeing any option to view the Tags on the forms so that I can edit it while I have open the PDF in the Adobe Professional. The PDF document was created in Adobe Livecycle Designer 9.0
    Please let me know how can I edit the Tags on a PDF form using Adobe Professional for a Form that was created using Adobe livecycle and tags added.
    Thanks,
    Siva.

    Edit the tags in Adobe Livecycle Designer.

  • Is it too much to ask that a Mac user can just OPEN and USE a PDF form created by LiveCycle Designer PC software?!?

    My problem is just that- I have created all my forms using LiveCycle Designer because it is easier to make the forms accessible to individuals with disabilities.  Apparently it doesn't make Mac users have access to the forms.  I've received complaints from Mac users that cannot complete or submit the forms that I created.  I'm not asking how to recreate using another software, I know how to do that.  I'm asking is there a work around to allow a Mac user to open a PDF form or even XML (bedded within an HTML page) on a Mac computer WITHOUT having to use bootcamp, parallels, etc. and be able to complete the form and submit, print or email it?????  I've exhausted all my knowledge on this thus far and I'm hoping to find something that will help.  So far all forums talk about how Mac users need to have a PC side to their computer.  Isn't there another way?
    I've attached an example form that we are no longer using (though still created exactly the same as the others)
    Thanks!

    Hi, as far as I can infer, that term means it's not loading any resources until needed, opposite of this...
    -bind_at_load
                     Sets a bit in the mach header of the resulting binary which tells dyld to bind all symbols                when the binary is loaded, rather than lazily.
    https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/ man1/ld.1.html
    Load resources lazily.
    You should never load a resource file until it is actually needed. Prefetching resource files may seem like a way to save time, but this practice actually slows down your app right away. In addition, if you end up not using the resource, loading it wastes memory for no good purpose.
    http://developer.apple.com/library/ios/#documentation/iphone/conceptual/iphoneos programmingguide/PerformanceTuning/PerformanceTuning.html
    And, higher OS versionsare even worse with Bonjour/mDNSResponder, but might see this...
    http://support.apple.com/kb/ht3789

  • Why can't I 'place' a signature into a .pdf form created in LiveCycle Designer 9???

    Hi there,
    I have been pulling my hair out all afternoon!
    I have created a dynamic form in LiveCycle Designer 9 - saved it as a Dynamic XML Form - opened it in Acrobat X - saved it as Reader Extended PDF and Enabled Additional Features. My colleagues will then need to open it in Reader X and select the option to draw and place thier signature in the text field I have provided them with. When I open the form in Reader X and click on the SIGN tab I get the following error message:
    The security settings on this document prevent adding text and/or placing a signature on it from Adobe Reader. To fill and sign this document you need to print it out.
    I have looked for help on this issue everywhere, yet to no avail.
    I do not want to hear about using digital signatures or Echosign, We only want and need to have staff sign forms by drawing their signature.
    Please help!
    Thanks,
    Will

    Hi will,
    I am not aware of Reader Enabled PDF from Acrobat X.
    Have you tried enabling digital signature using Reader Extensions which comes with LiveCycle Server. viz http://I.P:Port/ReaderExtensions
    Regards,
    Ali

  • Can I combine a form created in Livecycle Designer with a standard pdf to create a new document?

    I have a fillable form that I created with Livecycle Designer along with two standard pdf files.  When I try to combine in Acrobat Pro 10 it identifies the form with XML data and will not allow me to complete the process.  Thanks in advance for any help with this.

    No you cannot... this is one of the things my organization struggles with.  I love livecycle becuase of its dynamic form capabilities, but we have so many other pre-built pdfs in adobe pro that can not be merged with these forms.  It is truly frustrating!!!  wish i had a better answer for you.  Also from the book 'Creating Dynamic Forms with Adobe LiveCycle Designer' page 6... "The PDF files that Designer creates are structurally different than other PDF files...... LiveCycle Designer can edit a PDF form created in Acrobat, but Acrobat can not edit a PDF form created in Designer."  Likewise... XML pdfs do not merge with other pdfs. JoBeth

  • Form design Adobe Livecycle Designer ES 8.1

    Hi,
    I have created a Form in Adobe Livecycle Designer ES 8.1.
    The form contains 6 pages.I want to display the particular page by clicking the button. I have designed those buttons in MasterPage like header.
    I am able to display the particular page. One condition i need to display 1 & 2 page at a time .I am not able display this scenario.
    Please help me.

    form1.#variables[0].controller - (JavaScript, client)
    var im;
    var pageName;
    var currentPageNum;
    var dataStore;
    var logLevel;
    var history;
    * ADOBE SYSTEMS INCORPORATED
    * Copyright 2005 Adobe Systems Incorporated
    * All Rights Reserved
    * NOTICE: Adobe permits you to use, modify, and distribute
    * this file in accordance with the terms of the Adobe license
    * agreement accompanying it. If you have received this file
    * from a source other than Adobe, then your use, modification,
    * or distribution of it requires the prior written permission
    * of Adobe.
    * MVC Model 2 XFA Sample Implementation
    * Created on Feb 22, 2005
    * Author Herve Dupriez
    * Email [email protected]
    * Version 1.0
    * Main Action Controller
    * For the simplicity of this controller, actions are coded within this main function.
    * For more complex frameworks, this function could simply act as a switch to other functions.
    function executeAction( action )
    debugLog("executeAction " + action );
    var pnum = getPageNum(action);
    debugLog("history size " + history.length );
    if ( action == "back" )
    if ( history.length > 1 )
    // Restore previous page
    debugLog("back to page " + history[history.length - 2] );
    im[currentPageNum].removeInstance(0);
    currentPageNum = history[history.length - 2];
    loadPage( currentPageNum );
    im[currentPageNum].addInstance();
    else
    forward(1);
    else if ( action == "first" )
    forward(1);
    else if ( action == "last" )
    forward(9);
    else if ( action == "previous" )
    var prev = currentPageNum-1;
    if ( prev > 0 && prev < pageName.length )
    forward(prev);
    else if ( action == "next" )
    var next = currentPageNum+1;
    if ( next > 0 && next < pageName.length -2 )
    forward(next);
    else if ( pnum == -1 )
    showErrorPage(404, "Page Not Found");
    else
    forward(pnum);
    * Initialization of the controller
    * For debugging purposes increase the logLevel variable below
    function init()
    console.println("init");
    // Init log level
    // 0: error
    // 1: warning
    // 2: info
    // 3: debug
    // 4: trace
    logLevel = 0;
    // Initialize instance managers and page names
    if ( im == null )
    scanPages();
    // Initialize "page number"
    if ( currentPageNum == null )
    currentPageNum = 0;
    var dataNodes = xfa.data.form1.nodes;
    debugLog( xfa.data.form1.saveXML() );
    if ( dataNodes != null )
    var intNumElements = dataNodes.length;
    for(var j=0; j < intNumElements; j++)
    var currentElement = dataNodes.item(j);
    debugLog("listNodes found " + currentElement.name );
    if ( currentElement.name.substr(0,5) == "page_" ) {
    var action = currentElement.name.substr(5) ;
    setCurrentPage( getPageNum( action ) );
    break;
    * Show last page viewed when document was saved
    * or the Welcome Page if document opened for the first time
    if ( currentPageNum == 0 )
    im[currentPageNum].addInstance();
    // Initialize a simple data store
    if ( dataStore == null )
    retrieveDataStore();
    // History
    if ( history == null )
    history = new Array();
    history[0] = currentPageNum;
    debugLog("history[0]= 0");
    executeAction("1");
    * Save page data to the in-memory data store
    function savePage( pageNum )
    debugLog("savePage " + pageNum);
    var pageObj = xfa.resolveNode(pageName[pageNum]);
    if (pageObj != null)
    var sXML = xfa.data.form1.saveXML();
    dataStore[pageNum] = sXML;
    * Load page data from the in-memory data store
    function loadPage( pageNum )
    debugLog("loadPage " + pageNum);
    if ( pageNum > 0 && pageNum < pageName.length )
    if ( dataStore[pageNum] != null && dataStore[pageNum] != "" )
    xfa.data.form1.loadXML( dataStore[pageNum], true, true );
    traceLog( xfa.data.saveXML() );
    debugLog("history[" + history.length + "]=" + pageNum);
    history[history.length] = pageNum;

  • Problem with expanding textfield in Adobe LiveCycle Designer

    I've got an urgent problem with Adobe LiveCycle Designer and I really could use some help. The problem is that I'm trying to get my textfield expandable, but whatever I try, it's not working. What I'm trying to get done is that you can fill in a textfield, and when there is more text than the size of the field, the textfield expands to make the text fit in the field.
    I tried a whole lot of things:
    placing the textfield in a subform
    expand to fit (height)
    allow multiple lines
    allow page breaks
    flowed/positioned
    etc.
    The strange thing is, that no matter what I try to adjust, I can't change anything in the pagination tab. Maybe that is the problem, but I don't know what to do, to change that.
    In the examples of Adobe itself (Purchase Form) is an example of a textfield that sort of behaves as I want it to, BUT the problem is that that textfield in the subform has to be triggered to appear by a button (add comments) and that is what I don't want. I want the textfield to be visible from the beginning. But in that example you CAN see the pagination tab and make changes in it.
    I searched a lot in the Adobe Helpfiles of Designer, and I even bought and read/studied the book 'Creating Dynamic Forms with Adobe LiveCycle Designer', but still I'm not able to get this done.
    Is there anyone who can help me?
    Thanks in advance,
    Sterre

    I am creating my first .pdf with no training. I first converted a word doc of our form into a .pdf. Modified everything and thought I was the "bomb" for figuring it out. Then I tried to use the form and where I had "allowed multiple lines" I realized that it would allow that but not display it or print it except for what was showing.
    In researching for a solution, this site said to use "expand to fit". After much frustration I realized that this feature is only available if you created the form from scratch in adobe.
    I have figured out, somewhat, how to create the form and get the field to move with the text but I need the entire form to adjust to the input. Can't have one specific field expand into the rest of the form.
    I did some more research on this site, and it looks like the solution has something to do with 'subforms'. No idea what to do.
    If anyone knows if there is a way to do this with a converted doc (since I already have that completed) I would GREATLY appreciate it. If it isn't possible, could someone walk me through how to do it or provide a reference for a "barney style" walk through?
    Appreciate ANY assistance you can provide. THANKS! Guess I need to sign up for an Adobe Pro class. BTW I'm working on LiveCyle 8.0

  • Adobe LiveCycle Designer ES has stopped workin

    After many projects with LiveCycle Designer, I get the following error message when trying to open any file that was created with the program: "Adobe LiveCycle Designer ES has stopped working. A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available." Operating system: Windows 7. I removed and reinstalled CS4 Master adding back Acrobat 9. I also downloaded and installed 32-bit version of the executable file vcredist_x86.exe. Please help!

    That could be due to a number of reasons so it's hard to pinpoint what caused the issue.
    Found this thread online: http://forums.adobe.com/thread/572584
    Not sure if this helps.

  • ViewerPreferences (e.g. HideWindowUI) in Adobe LiveCycle Designer

    Hi,
    When creating PDFs in Adobe Acrobat, you can set some ViewerPreferences:
    * HideWindowUI
    * HideMenubar
    * HideToolbar true
    These settings can be set via "Document Properties" => "Initial View" => "User Interface Options"
    However, when creating a form using Adobe LiveCycle Designer. These options are not available!
    Is there a way to change the ViewerPreferences for interactive forms?
    Thanks,
    Dries

    This isn't a question about PDF Specifications. Please try the
    LiveCycle Designer forum, thanks. Good luck,
    Aandi Inston

  • What is LiveCycle Designer ES capable of?

    I currently use MS Word 2003 to create RFP forms as part of my company's salesforce automation.  Word allows the users to use the form fields and save with fields modified, which is perfectly fine.  However, these forms are used on a worldwide basis and there are European versions of word that don't recognize table formatting which makes the forms look elementary and un-professional.  Can I create/transfer these forms into LiveCycle Designer ES and have this same functionality?  Can the user modify a form with Adobe Reader and save the modifications?  These forms cannot have email submission only as they are passed through different channels before being returned back to my company and not everyone out there has scanning capabilities to return completed forms that have been printed.
    Can this sofware provide this kind of solution (I already have it!)?

    Please ask in the Designer Forum  http://forums.adobe.com/community/livecycle/livecycle_es/livecycle_designer_es

  • [LiveCycle Designer] Extract data

    Hello,
    I created a form pdf with LiveCycle Designer ES2.
    Now, I'd like to retrieve automatically the data of the filled forms.
    I tried to read the form with a Java library (pdfBox) and i got this result :
    "Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF
    viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by
    visiting  http://www.adobe.com/go/reader_download.
    For more assistance with Adobe Reader visit  http://www.adobe.com/go/acrreader.
    Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark
    of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other
    countries."
    Adobe seems to prevent the reading of pdf files created by his own tools. Is it possible to return these forms pdf legible by all readers ? Is there any option in LC Designer ?
    Has Adobe some tools to extract (and injection) data ?
    By hoping to have been clear...
    Thanks a lot,
    Dubinho

    It sounds like you need use the adobe schema in MII so the output of your transaction matches it.
    Regards,
    Jamie

  • Java Library for dynamic PDF form creation similar to LiveCycle Designer

    Hi
    I have a requirement as below :
    Requirement :  I need to create a dynamic PDF form with a barcode of type PDF417. Where a user can fill the form offline and after click on some button it will save the form offline and generate a barcode in the same PDF. Later on usaer can take a printout or send the saved pdf as it is.
    Currently I am able to create such pdf from using LiveCycle Designer. But I need to create it manually using designer and then need to apply Reader Extension on it using livecycle server.
    I want to do this programatically. I would like to create a similar form using some Java Library.
    Is it possible to create it dynamicaly(using programs)? how ?
    Does any one know how to acheive this ?
    Can anyone help me please ?
    Thank you very much in advance.

    I heard about LiveCycle ES3 server and was wondering if it could be of any use in my scenario. Can some one explain how to use jar files in standalone application .  I explored the  livecycle forms api but could not figure out how it may be used ?

  • Expanding Textfield in Adobe LiveCycle Designer

    I've got an urgent problem with Adobe LiveCycle Designer and I really could use some help. The problem is that I'm trying to get my textfield expandable, but whatever I try, it's not working. What I'm trying to get done is that you can fill in a textfield, and when there is more text than the size of the field, the textfield expands to make the text fit in the field.
    I tried a whole lot of things:
    placing the textfield in a subform
    expand to fit (height)
    allow multiple lines
    allow page breaks
    flowed/positioned
    etc.
    The strange thing is, that no matter what I try to adjust, I can't change anything in the pagination tab. Maybe that is the problem, but I don't know what to do, to change that.
    In the examples of Adobe itself (Purchase Form) is an example of a textfield that sort of behaves as I want it to, BUT the problem is that that textfield in the subform has to be triggered to appear by a button (add comments) and that is what I don't want. I want the textfield to be visible from the beginning. But in that example you CAN see the pagination tab and make changes in it.
    I searched a lot in the Adobe Helpfiles of Designer, and I even bought and read/studied the book 'Creating Dynamic Forms with Adobe LiveCycle Designer', but still I'm not able to get this done.
    Is there anyone who can help me?
    Thanks in advance,
    Sterre

    Excellent directions and help on this subject, Thanks Jared & Gretchen.
    I must be missing something critical >>>
    I have a large employee review document (34 pages) with 23 sections. Each section has a feedback area with expanding text fields, each of the sections is in it's own positioned subform. I have grouped the sections (and subforms) on each page into a flowed subform. The document itself is saved as an Acrobat 7 Dynamic form. My problem...the sections do not Flow. The expanding text boxes work just fine, but they do over-run the sections below.
    I have reviewed the comments above and I can get it to work with a single page document, just not with a large - long document, everything over runs.
    Any ideas? You will be held in very high regard!
    ~dimwit

  • Exporting from livecycle designer es8.2 to Dreamweaver, possible?

    Hello everyone! I created a contact form in livecycle designer es 8.2. I am curious to know if it is possible to export the form to dreamweaver and embedd it in a website? Thanks

    You can submit the form or the data via email but you will not be able to do it without the mail dialog opening up and having the user
    click the send. This is for security reason.
    You can however do an HTTP/HTTPs post and have the data or PDF submitted to a web server by having the user click a button.
    Paul

  • What is LiveCycle Designer capable of?

    I currently use MS Word 2003 to create RFP forms as part of my company's salesforce automation.  Word allows the users to use the form fields and save with fields modified (return as email attachment), which is perfectly fine.  However, these forms are used on a worldwide basis and there are European versions of word that don't recognize table formatting which makes the forms look elementary and un-professional.  Can I create/transfer these forms into LiveCycle Designer ES and have this same functionality?  Can the user modify a form with Adobe Reader and save the modifications?  These forms cannot have email submission only as they are passed through different channels before being returned back to my company and not everyone out there has scanning capabilities to return completed forms that have been printed.
    Can this software provide this kind of solution (I already have it!)?

    There is a facility to import word forms into Designer and turn them into PDF Forms. As with any format change I cannot guarantee that you will not have to "touch up" the converted form. Once the form is a PDF then the issues you raised about the European distribution should be resolved.
    Paul

Maybe you are looking for