Problem trying to make a LC Designer ES4 form "Reader Extended" in Acrobat XI Pro

I have a form that I created in LC Designer ES4 that I was able to successfully "Reader Extend" using Acrobat XI Pro.  I added a script to the form to allow for the deselecting of radio buttons (which I found on this forum), and now I cannot Reader Extend the form.
Here are the specifics of my environment:
Acrobat XI Pro - Ver. 11.0.10
Adobe LiveCycle Designer ES4 - Ver.  11.0.20130826.2.901444
Windows 7 Professional, SP1
Here's the error I am getting in the Acrobat debugger:
Exception in line 1 of function top_level, script Document-Level:!ADBE::0100_VersChkStrings
InvalidGetError: Get not possible, invalid or unknown.  Doc.layout:1:Document-Level:!ADBE::0100_VersChkStrings
This error message appears at the very bottom of the debugger window:
Unable to find source for Document-Level:!ADBE::0100_VersChkStrings
Acrobat XI Pro does not allow me to save the new file, and gives this error:
This document could not be Reader enabled.
I used the chat support for Acrobat XI Pro, and was told that this is a LC Designer issue.  Since there's no phone support for LC (at least not free), I came to this forum for help.
Here's the script object (JavaScript) that I inserted into the main subform:
form1.Main.#variables[0].RBClear_Script_Object - (JavaScript, client)
var rbs = new Object();
function handleRBClick(o)
    if (rbs[o.name]==null)
        rbs[o.name]=o.rawValue;
    else{
        if (rbs[o.name] == o.rawValue)
            o.selectedMember().rawValue = 0;
            o.execEvent('change');
        rbs[o.name] = o.rawValue;
I then call the above function from within a radio button's group list object (not individual items).
form1.Main.Subform_Stock_Detail.Table2.Row3.Subform_Responsibility.RadioButtonList::click - (JavaScript, client)
RBClear_Script_Object.handleRBClick(this);
This all works fine when I preview the form from within LC Designer ES4.  I then open the dynamic PDF form in Acrobat XI Pro, click File, Save as Other..., Reader Extended PDF, then Enable More Tools.
Acrobat shows the errors at the top of this post within the Acrobat debugger window.  When I close debugger, Acrobat does not allow me to save the new file, and gives this error:
    This document could not be Reader enabled.
I've been searching for days and cannot find any resolution to this issue.  It appears to me that this is a security related issue, and Acrobat does not like the running of a function within the form.  Just a guess.  I can't think of anything else.
Anyone come across this issue, and how were you able to fix it?
Thanks in advance,
Dean

Although I did not find a cause for the errors, I did find a workaround in my case.
This only happens when running the Javascript Debugger in Acrobat XI Pro.  If you turn it off, you can Reader Extend the document.  If you turn it on, you have to cycle through all of the debugger errors/warnings using the arrow button in the top left corner of the debugger window, then close that window.  Still not sure what the errors are for, but at least I got the form to work.

Similar Messages

  • I am trying to make a fraction in a form field and I would like it to have an over/under appearance. Is this possible?

    I am trying to make a fraction in a form field and I would like it to have an over/under appearance. Is this possible?

    What system and iPhoto version are you running?  What theme are you using.
    All of my calendars do have the month starting on Sunday,  Don't know of any way to change it.  Where are you located?
    How do you have your Calendar application's preferences set to, Sunday or Monday start of week? 

  • My livecycle designer es4 form needs password protection for parts of the form

    I  have a form created in livecycle designer es4 that will be used by Adobe Reader users in three stages. The first stage is setting up choices on the form, saving them and passwordprotecting this Save. The form will be used three more times, each time saved as a new file.
    How do I password protect each saved version from a command button?

    Greetings,
    You have a couple of options depending on whether you need to display the number when the form is created, or saved.
    You will need a 'Back-end' data store - most likely a database with a table that at a minimum keeps track of the last used number.
    If you are saving the data from the form into a database, you could return the number to the user after saving the data ( and generating the associated number )
    If you are wanting to display the number when the form is first opened, you will need to set up an action profile that fires when the form opens to call the back-end and get the next number.
    There is no guarantee that the user will save this form, so you may end up with gaps in your sequence if you are assigning numbers other than when saving.
    The forum has many posts on loading data into forms before presentation, and also some on using web services to push and pull data from forms.
    Hope this helps
    Mark

  • Viewing live cycle designer es4 forms on iPhone adobe

    hi. Can anyone help as to why I am unable to view forms in Adobe reader app for iOS? The forms were created in lifecycle designer es4 if it helps? My Adobe app is updated to most current version. Thanks

    Bizarrely, the mobile Readers don't do XFA, and there are no apps to do this so far as I know. These are for the desktop only.

  • Problem in implementing Master-Detail-Detail design in Forms 6i

    Hi, all technocrats!!
    Here i've problem in Master-Detail-Detail sort of design in
    Forms 6i..
    This thing i've implemented earlier in one form...and that is
    fine...and i could not track the root when i've got a problem in
    a new form...which of the same manner...
    The problem is that...
    When i enter data into the 1st detail block and navigate to the
    2nd detail which is a detail block to the 1st detail...and enter
    data, there is no problem, but when i navigate back to the 1st
    detail block and that to a new record in the 1st detail...form
    is showing indefinite behaviour( Hanging )...
    But when i navigate back to the same record in the 1st detail
    from the 2nd detail...there were no problems and it is working
    fine...
    And whenever i shift to a new record in the first detail it is
    asking to save that record...to solve this problem., i've used
    POST in the new block instance of the 1st detail...and i'm
    comfortably managing it...if i dont use this POST method...it is
    clearing the details in the 1st detail itself when i traverse
    back to it from 2nd detail after inserting records...
    But this hanging problem is really driving me to Hang myself...
    Plz do suggest me to get rid of this problem...

    Developing proper transactional behavior with Oracle Forms
    in Grandparent-Parent-Child case is a problem.
    We must use some 'container' for 'non-visible' Child records
    (Child records with Parent different from current record in
    Parent block).
    I try to solve this problem in 2 different ways:
    1. Using POST built-in. In this case 'container' is Child
    database table. But, problem can be because POST built-in
    actually executes DML statements (this locks records and fires
    database triggers - so a deadlock can occur) before COMMIT_FORM.
    2. Using a 'temporary container'. 'Temporary container' can be
    (for example) temporary database table, PL/SQL table of records
    (defined in Forms package or database package), Forms record
    group. This variant has not problem with record locks/database
    triggers, but is much more complex for programming than 1.
    variant.
    In my development, when I haven't problem with record locks or
    database triggers, then I use POST. In other cases, I use 2.
    variant, with PL/SQL table of records (defined in Forms package)
    as 'temporary container'.
    Further, when we use POST, we can do this in more ways.
    One method is to use POST in Forms level WHEN-NEW-RECORD-
    INSTANCE trigger.
    Different method is to change code in CLEAR_ALL_MASTER_DETAILS.
    Instead of:
    CLEAR_BLOCK (ASK_COMMIT);
    we can write:
    IF mastblk = "name_of_master_block" THEN
    CLEAR_BLOCK (ASK_COMMIT);
    ELSE
    POST;
    END IF;
    Which method you use?
    Regards
    Zlatko Sirotic

  • How to make a pdf (form) accessible for reader in Adobe Acrobat x pro?

    Hi guys, i have bit of a problem here as i am new to the Acrobat pro X 
    Using Acrobat pro 9 i always could save a LiveCycle pdf form with permission to fill and save as a reader user. now i have upgraded to cs6 and i have no clue how to do that anymore. The half of the options are gone and i can't access the older Acrobat pro anymore. 
    Does anyone know how to save a pdf form using Acrobat X for adobe reader users giving permission to read and save my pdf files?

    For Acrobat X go to File-> Save as->Reader Extended PDF
    This will embed the reader extended rights in PDF.

  • Problems trying to make acapella

    Hi I recently bought a Macbook and ordered logic express 8 along with it hoping to edit some tracks and create some acapellas...so i have followed all steps givin to me through youtube on how to make an acapella but logic express is giving me a hard time...please if anyone out there has made an acapella using logic express 8 please let me know what i'm doing wrong...

    What's an "acapella"? Surely you don't mean a voice-only arrangement of a song… or do you?
    Apart from that, you haven't actually said what the problem is. There's such a wide range of possible problems that you really will have to give us some (preferably lots of) info about what you've got, what you're trying to do, how far you get, where it all goes wrong…
    And I believe there may be several different videos on YouTube, so we might not have seen the same one. I did go there & see something about a dancing hamster once, but this might not be the video you mean.
    Anyway, get back with loads of details, & we'll be very happy to help.

  • Problems trying to make a 3D text out of cubes

    I'm trying to build a word in an old school Arcade font. http://www.dafont.com/arcade-pizzadude.font
    I want the pixels in 3D and in different colors and then import them into After Effects. There I'd like to move them down the screen, so it looks like the fall from the sky and then assemble as a whole word.
    I allready arranged about 80 cubes and then tried to import them into After Effects but there the programm just hangs it self. Now I can't even open the file in Photoshop because it tells me I have to many windows open. Maybe the file is to big because I'm doing it in a completely stupid way, so if anyone can tell me how to solve this problem, I'd be very happy

    so if anyone can tell me how to solve this problem
    Use a 3D program. Aside from that, there is a million ways to get 3D-ish cubes in AE (Shatter, Card Dance, this here, other plug-ins and techniques), you really don't need PS in any way.
    Mylenium

  • I am trying to install adobe livecycle designer es4 trial version on my computer and i keep getting the message Error 13.11 Source file not found: c:\  verify that the file exist. I have tried to install on both windows 7 and windows 8 and i still get the

    error 13.11 Source file not found verify that the file exsist

    Try a more recent version of my advice. The "for older video cards version" may work when the default version doesn't.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • Problems trying to install CS5.5 Design Premium on a second machine

    I have downloaded the software on to my new machine but I am told that serial number is wrong, don't know where to go from here.
    I am pretty sure that this is only the second machine I have installed on - no obvious way of finding out though

    Error "The serial number is not valid for this product" | Creative Suite

  • Having problems trying to make a DVD off a footage I shot....

    Hello folks,
    I shot a footage of my cousin's baptism, now I am imported everything in Imovie HD, what it does on the right side it cuts all the clip so what I do is take all these clips put them in the timeline... now let's say I just want to burn it to DVD without doing any editing to it...
    I'd click on File - share - DVD and it exports to Idvd? and from there I'd burn it - does it loose quality? all i have to do is press BURN?
    Thanks,
    joey

    in iM's presets, you can select "import to clip pane" (to drag indivdual clips to the timeline) or "to timeline" (to get all in one rush, in chronical order into timeline, just do some trimming, titleing...)…
    you can even import to iDVD itself…
    no, you don't loose any quality…
    have you read here?
    http://apple.com/ilife/tutorials

  • Hi I'm trying to make a radio button web form using edge animate.

    www.smpcanada.com/1.5/infinite_app
    Hi,
    Basically I'm working on this app, the only thing I need is, I want every option that the user click will be recorded and summarize, and will emailed to my email. Much like a web form, can I do that in edge animate? Please help... 

    www.smpcanada.com/1.5/infinite_app
    Hi,
    Basically I'm working on this app, the only thing I need is, I want every option that the user click will be recorded and summarize, and will emailed to my email. Much like a web form, can I do that in edge animate? Please help... 

  • Trying to make a DVD with an old/non-existent version of iDVD!

    Ladies and Gentlemen,
    Please could you help me?
    I work at a school in the UK, and have recently been able to purchase an external Lacie DVD drive, as the school’s computer (currently an iBook G4 with OSX 10.3.2 and a 1GHZ Power PC Processor – 640 MB Memory and a 40 GB HD) wasn’t shipped with one – however, I have a problem…
    Trying to make a DVD that will play in a stand-alone DVD player – I followed the advice in iMovie Help – but was stopped suddenly on finding that I do not have the relevant version of iDVD (which version (if any – I can’t see it anywhere!) was shipped with iMovie 4.0?). Is it possible to download a copy of iDVD 3 or later from anywhere compatible with OSX 10.3.2 and iMovie 4.0?
    The iMovie Help has an additional option to ‘export your movie in a format appropriate for DVD authoring’ which has let me burn the movie as a (name).DV file – but this is not compatible with any DVD player I have tried. I noticed a while ago on this forum that someone was talking about Toast but I do not have this, but I do have Roxio Easy Media Creator 7, which was bundled with the burner – but is only compatible with a PC – would I be able to build a project in iMovie, transfer it to a PC, and use REMC7 to do what toast would?
    Finally, I was wondering if anyone has any experience of using Avid’s free DV software – and if they would recommend it (and also if I would be able to make DVDs with it?).
    Well thanks for reading if you got this far – and I’d appreciate it if you could offer any advice (I know I’ve not been very concise)…
    Kevin.
    iBook G4   Mac OS X (10.3.2)  

    Thanks for the welcome Karsten! I’ve checked the installer disks – which appear to have all the main pieces of software, but not iDVD. If you or anyone knows where it might be hidden that would be great. Thanks for all the other info too!
    Thanks Lennart – I don’t think my computer could support iLife ’05 as it is running Mac OSX 10.3.2 and I’ve just been looking at its system requirements which state it requires 10.3.4 minimum – if you know differently, please let me know. As an alternative I have considered getting iLife ’04, but your comment about iLife ’05 being the first version to support external drives worried me (“iDVD 5 is the first iDVD version that officially supports external burners“ does this mean there is an unofficial option for iLife ‘04? Perhaps a patch similar to the one mentioned by Karsten), does that mean iLife ’04 would not support an external Lacie DVD writer?
    What is the earliest version of Toast I’d be able to use (as a money saving option!)?
    Thank you both, and apoligies for my amateurish questions…
    Kevin.

  • I am trying to make a main menu for my project but I don't know where IDVD is located?

    I am trying to make a main menu but I read some info. and said I have to do it through IDVD and I tried it but can not find IDVD anywhere so I wanted to know if I have to purchase it or something and I also wanted to know how to create a main menu?

    depends on how old your Mac is ...
    newer machines do not come along with a pre-installed  iDVD (.. and iWeb ..) anymore; you have to purchase a boxed version of iLife11.
    if somehow iDVD is installed on your Mac, you should find it in your Apps-folder
    (or use Spotlight, search for iDVD) ...-

  • Hi. I use Adobe Acrobat XI pro to make a PDF ebook embedded with audio. It works really well on my computer-I can read the book and hear the auto play mp3. The problem is, when I send it to my customers, they have difficulty hearing the audio. A few of th

    Hi. I use Adobe Acrobat XI pro to make a PDF ebook embedded with audio. It works really well on my computer-I can read the book and hear the auto play mp3. The problem is, when I send it to my customers, they have difficulty hearing the audio. A few of them say they have Flash player on their PC and somehow they still can't hear, some say their Google Chrome browser tells them they've already got one flash player while they try to download one. For me, I had to download two versions of Flash player to be able to access to the audio. I don't know what the problem is, is it because it's the latest version of Adobe Acrobat XI pro that people with older version of Adobe reader or flash player can't open it properly? Or is it something else? How can I make sure every customer with different system can access to my books? Hope to hear from you ASAP! Thank you very much.

    And how are the customers accessing the PDFs?
    What devices are they using?
    What program or apps with versions are they using?
    I this age of other then PDF eBooks formats and reader program and apss for computers and mobile devices for these formats I would look at creating the books in one or more of the eBook formats.
    Google Chrome and FireFox both have their own version of a PDF reader plug-in and they are well known to be less capable than Adobe Reader. It is possible to configure these products to use Adobe Reader.

Maybe you are looking for