I cannot Preview a form in Adobe LiveCycle. The Preview option is gray off.

I cannot Preview my design form in Adobe LiveCycle. The Preview option is gray off. need help

Hi,
Try repairing your default PDF handler.
You can check your default PDF handler by opening Acrobat / Reader --> edit --> preferences --> General  --> Select Default PDF Handler
You can repair the application by clicking on Help--> Repair
Regards,
Ratnesh

Similar Messages

  • Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  t worked, but only for those with PC.  I could not get it to work with Apple Yosemite even with reader installed .  is there a way i can make it work for apple /

    Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email. It worked, but only for those with PC. However,  I could not get it to work with Apple loaded with Yosemite even with reader installed .  Is there a way i can make it work for apple / Mac? It worked fine on a mac using Mountain Lion and reader
    Thanks

    LiveCycle = XFA forms.
    afaik - These cannot be used in Apple OSs.
    Be well...

  • Read Only HTML Forms using adobe livecycle Output ES

    Hi,
    We have a requirement to display the adobe html forms in read-only format. got to know from adobe consultants that Adobe Livecycle Output ES has this feature. but i am not able to find out any services or components that would give me this functionality.
    Is there a way to get these readonly forms using Adobe Livecycle Output ES.

    Dear Dfoto,
    Thank you so much for being so kind to spend the effort and reply back, I though my question was left behind the sun... but now I am very happy in deed.
    To be more specific, the Form has 2 parts. The first part "Subform1" any one can fill and sign.
    The second part "Subform2", only certain users can fill and sign.
    I think I found a very strong lead to my solution, when I was playing with LiveCycle Desinger few days ago.
    On the Singature Field Advanced Setting, there is a place you can attach the public part of a certificate (Digital Signature) of any user, one or more.
    In this part, you tell LC that only those users "signing parties" can sign the field. I tested it and it worked.
    Now, if I can use this feature via JavaScript to find out if the user who is filling the form, can sign this field, then he can fill the form. If he cannot sign the field, then he cannot fill the form. I can do that by setting the "access" property of the Subform. Another solution is that I can prevent the user from hitting the "Submit" button unless he signes the designated Signature Field.
    I have another small issue:
    I found out that if the Signature field is part of a repeating dynamic Subform, it will not work during run-time. Very bad in deed. While I cannot understand why ?, I tool this as "By Desing" feature.
    Now, if the Signature is locking parts of forms which has dynamic content (repeating subforms), it will always show somthing like "Signature is corrupted or form was changed after it was signed".
    Is this normal ? Is there a way to control Dynamic Forms using Digital Signatures without such annoying issues ?
    Thank you.

  • Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  the button did not work and i looked online and saw where you could change it to a regular button and enter the email for it to go.  it worked, but only for thos

    Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  the button did not work and i looked online and saw where you could change it to a regular button and enter the email for it to go.  it worked, but only for those with adobe pro.  i could not get it to work with reader.  is there a way i can make it work for reader?

    Noted.
    The LiveCycle user to user forum is across town at:
    Adobe LiveCycle 
    Be well...

  • Can't seem to change the Document Properties Advanced Reading Options in a Form that was created in Adobe LiveCycle. This option has been "greyed" out - anyone know how to update this to English so I can pass Accessibility Testing?

    Can't seem to change the Document Properties > Advanced > Reading Options in a Form that was created in Adobe LiveCycle. This option has been "greyed" out - anyone know how to update this to English so I can pass Accessibility Testing?

    LiveCycle forms use a very different approach to create a PDF form than Acrobat and that approach makes many features for processing PDFs non-functional.
    You might want to ask this question in one of the LiveCycle product forums.

  • 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;

  • I had my computer re imaged and reintalled Adobe XI.  Now I cannot locate my forms in Adobe Forms Central.  Help!

    I had my computer re imaged and reintalled Adobe XI.  Now I cannot locate my forms in Adobe Forms Central.  Help!

    From your question, I take it you have Photoshop Elements 5.0.
    You should ask over in the Photoshop Elements forum how to restore catalogs. I hope you have back ups of your images because the organizer doesn't physically store your images.
    Link to Photoshop Elements forum:
    http://forums.adobe.com/community/photoshop_elements

  • Why cannot I distribute forms in Adobe Acrobat 8 Professional (when following directions)?

    Why cannot I distribute forms in Adobe Acrobat 8 Professional (when following directions)?

    Hello,
    When you try to open Adobe Acrobat 8 Professional, the application returns the error "Adobe Acrobat 8 Professional cannot be launched at this time. You must launch at least one other suite component (such as Adobe Photoshop) before launching Acrobat 8 Professional."
    Please try to do one of the following solutions:
    * Open another Creative Suite 3 application first.
    *Open any other Creative Suite 3 application and follow the on-screen instructions to enter a serial number and activate your software. Then open Acrobat 8 Professional.
    But if you have MAC OS - Move the Acrobat, Adobe PCD, and Adobe PDF folders.
    Quit any Adobe applications that are open.
    In the Finder, navigate to /Library/Application Support/Adobe.
    Note: This folder path refers to the Library folder at the root level of the startup disk, not the Library folder that is inside a user's Home folder.
    Move the following folders to your Documents folder or another safe location:
    Acrobat
    Adobe PCD
    Adobe PDF
         Important: Do not delete these folders.
      4.  Open Acrobat 8 Professional.
      5.  Enter your serial number when prompted.
    Hope this one could help.

  • When I open iTunes, it will not allow me to preview or download TV shows. The preview and download options are gray and will not let me view them. I have the latest Quicktime so I don't know what's wrong

    When I open iTunes, it will not allow me to preview or download TV shows. The preview and download options are gray and will not let me view them. I have tried installing the latest Quicktime but it tells me that I have to do software update and when I do, Quicktime does not appear to need an update. I have no idea what to do

    Click on your preference and check the Parental tab for possible restrictions.  Open iTunes, then click the iTunes menu, select preferences after the window opens click on the Parental icon, take a look at the content restrictions section.

  • HT4437 I have followed all relevant steps, my iPhone5 and apple TV are connected to the same wireless network, but I still cannot use airplay. When I choose the airplay option on my phone, the only option I get is "iPhone"

    I have followed all relevant steps, my iPhone5 and apple TV are connected to the same wireless network, but I still cannot use airplay. When I choose the airplay option on my phone, the only option I get is "iPhone"

    Welcome to the Apple Community Willy.
    Try the following steps, check whether things are working after each step where appropriate, before trying the next.
    Check AirPlay is turned on on the Apple TV (turn it off and on if it already is)
    Check that both devices are on the same network (Settings > Wifi, on the mobile device and Settings > General > Network, on the Apple TV).
    Restart the Apple TV (Settings > General > Restart).
    Restart the Apple TV by removing ALL the cables for 30 seconds.
    Restart your router. (Also try removing it’s power cord for at least 30 seconds)
    Restart your mobile device.

  • Cannot Edit a Form in Adobe Acrobat Pro Xi - use Livecycle

    Hi all,
    I was advised to buy Adobe Pro XI yesterday by the Direct Sales Adobe team because it includes "everything I need" to create and EDIT PDF forms.  I actually rang up to buy X but was told it was now XI.
    I tried to edit a form today and got this message:
    "this form cannot be edited in Acrobat. Please use Adobe Livecycle Designer to edit this form"
    I was told this was included in Pro but can't get past this message.  I previously had a trial of Adobe Pro X and WAS able to edit this very form.
    It is very frustrating.  I cannot edit anything I have been working on.
    FormsCentral seems too basic as I need to be able to edit the field name in the properties of the field.
    Can anyone help?
    Thanks
    David

    We created forms in acrobat 9 pro and now with XI pro cannot edit them.  Error message states that livecycle designer is required to edit forms previously created in acrobat.  Called tech support and waited for over an hour before being told that another product needed to be purchased for $300 more than the upgrade cost for acrobat pro XI!!!  From the XI FAQ - The web site states:
    The following customers are eligible for a free upgrade:
    Customers who purchased a prior license to Acrobat and have purchased an upgrade to Acrobat XI Pro
    Customers who have an Adobe Maintenance and Support contract or purchased Upgrade Plan eligible for an Acrobat XI Pro upgrade
    Active Creative Cloud Complete members whose memberships started before October 15, 2012
    The one-time LiveCycle Designer upgrade is available in English, French, German, or Japanese. Eligible customers can choose which language they would like to receive. Visit the Customer Support Portal to request an upgrade.
    After entering in the needed info on the support portal was told that adobe will Not honor the sales rep & web site which both said we are eligible for the free upgrade.  We asked for a full refund and will not longer be using any new adobe products.  We went back to 9 pro forms work fine and adobe lost $.  Nice work adobe - lie to customers and then act surprised that the customers want their $ back!  They told us to just toss their software DVD in the trash where IT belongs, so we did!
    Cheers,
    Actiondan

  • Problems previewing in HTML in Adobe LiveCycle ES4 Designer

    I have downloaded and installed the trial version of Adobe LiveCycle ES4 Designer. After creating a very simple XFA form, I cannot preview it in HTML. Clicking on Preview HTML tab does something funny with the UI and then just returns to the "Design View" tab. Manually trying to contact the localhost server e.g. localhost:8080/lc/content/xfaforms/profiles/default.html returns ERR_CONNECTION_REFUSED. Any ideas?

    Do you have LiveCycle ES4 Server installed? HTML forms are designed in Designer but rendered with server components.

  • Preview Problem: PDF file:Adobe livecycle designer ES 10.0

    Hallo.
    How do I fix  preview problem of a .pdf file that was created with Adobe livecycle designer es 10.0.  version 1.7 ( show on the properties of the file). The file opens normally. No preview in explorer preview pane and change to printing problem too. Need to preview the file before uploading it onto the internet. All updates done: Windows 7, Explorer 11, Java (Javascript enable) Adobe reader XI. and Adobe Reader XI Pro.(Trail version). When in Explorer and using open with:Default program: select software already in stalled on computer: Browse Adobe reader XI (Acrord32.exe: properties show version 11.0.06.70) This will show as Adobe reader 9.4 on the list of programs.

    If you purchased a prior license of Acrobat and have purchased an upgrade to Acrobat XI Pro then you are eligible for free LiveCycle Designer upgrade.
    See more information on: http://www.adobe.com/products/acrobatpro/faq.edu.html
    Visit the http://www.adobe.com/go/learn_acr_livecycle_upgrade_en to request an upgrade.

  • Nothing was changed,now i cannot print any forms ;says adobe already installed?? novice level

    I cannot get my forms to print now, says Adobe is already installed, I did nothing different, been using the computer for a year no issues, any ideas?

    What is your operating system?
    What is your Reader version?
    What exactly means "cannot"?
    Can you post a screenshot of that message?

  • IBM workplace forms to Adobe LiveCycle forms

    Hi
    I have been using IBM Workplace forms in my application for a long time and now want to migrate to adobe livecycle forms. Please can anyone tell me about how much similar are both? What all should i look out for while migrating. ?
    Regards
    Ullas

    We are also looking into a similar type of project. I'm not well versed in the IBM software, but I suspect there is no utlity or conversion tool to automate some of the transition work. (ie creating fields and other common objects)
    We are looking at re-desinging the forms from scratch.

Maybe you are looking for

  • Time machine disk drive disappears

    I just bought a Seagate 2 TB external hdd to use as my Time Machine Backup drive.  Time Machine formatted it properly and named it Time Machine Backups. Unfortunately, it sometimes just disappears from the desktop, which I don't notice until I try to

  • Updated payment details due to a new debit card

    I've recently changed debit cards and was told by my bank that all Direct debits wold be transferred over to this new card. However a payment was never taken from my new card and could not be taken from my old card and now I can't use any of my adobe

  • How to add entry in OMT3R and transport it to other clients

    Hello Experts, I am adding MRP4 view to tow Z transactions. I added entry in the screen ref. key which is associated with this transaction using t.code OMT3B - Define Structure of Data screens for each sreen sequence in development configuration clie

  • Cold Fusion Issue

    Hi There my name is Javier and I am a baby on this java issues. I am having this problem trying to get the pay flow program from VeriSign to work with the cold fusion administrator I did all the steps but when I test it came out with an error saying

  • Complex Bessel functions in LV 2009?

    Can anyone please clarify whether the Bessel functions in LV 2009 operate on complex inputs and give complex outputs? The "Help" text mentions only real outputs. A quick test on the Bessel function Jv of zeroth order seems to indicate that it accepts