Dynamic PDF Creator Replacement Widget

Hi,
I'm trying figure out I can get a widget similar to Dynamic PDF Export that was sold by CaptivateDev.com - eLearning Development with Adobe Captivate
Now that they closed there door...I'm stuck it's the exact widget I needed.
My goal is to capture user input and compile a completed 'Take away Workbook" from the questions that were answered.
Any other way to accomplish this?
-Rob

I'm pretty good with Captivate and advanced actions; but once java is involved I do get a little lost.
Can you give me a little bit of direction on how to make the connection between the external library, captivate and the javascript pdf thing.
I have an email out a web designer with our company but he won't know Captivate so I'll need to give them a little bit of support.
Thanks
Rob

Similar Messages

  • I can't get my Dynamic PDF Widget to work in Captivate 7

    Hello all,
    I've been trying to get my Dynamic PDF to work in my Captivate 7 project. I have created a button on the final slide where I want the user to open the PDF, I have named it correctly to correspond with the Dynamic PDF. I have also updated everything within the editor to appear how I would like it to appear. I have also tried viewing it in various formats such as Published, In a Browser etc. and nothing appears to work for me.
    What am I doing wrong?
    Thanks in advance!
    Peter

    Hi Peter,
    Please make sure that the pdf is also saved in the same published folder .
    Also test the behavior in other browsers as well like Chrome and Firefox .
    If you still face this issue then try to add the published output in trusted location of Flash.
    http://helpx.adobe.com/captivate/kb/hyperlinks-do-captivate-6.html
    Thanks

  • Help Dynamic pdf generation

    please help to generate dynamic pdf which show data of database.

    Look at the URLS below:
    Creating PDF, RTF or HTML document from a Java class at runtime
    http://www.java-tips.org/content/view/130/29/
    How to connect MySql Server using JDBC
    http://www.java-tips.org/content/view/808/29/
    How to view database data in PDF format using servlets
    http://www.java-tips.org/content/view/850/74/
    The example in "How to view database data in PDF format using servlets" is for servlet, but you can easily replace that for desktop application.

  • Dynamic pdf up to 200 images, the size of pdf is larger, cannot save data and images to the form

    Hi all,
    My client would like to dynamic images up to 200 pictures to my forms. It is working fine. However, when I add images up to 35 images. I could not add images to the form any more. Then, I save data on the form. All images and data typed on the form are disappeared. I don't know reason.
    If I only add 10 images - I can save data and images on the form. The size of pdf is 15456 kb.  I was unable to  add more pictures or data on the form.
    Maybe there are problem the size of pdf? How much size can an dynamic pdf  limited?
    Can we save the information and images as much as we want?
    I have spent 2 weeks to work and try to figure out this problem. However it is not successful.
    Please help,
    Cindy

    You should ensure, that your users do not import big images.
    Therefore you can use a script on the change event of an image field which checks the data size and warns the user if the file is too big.
    function formatNumber(number) {
        var num = number + '',
        x = num.split('.'),
        x1 = x[0],
        x2 = x.length > 1 ? '.' + x[1] : '',
        rgx = /(\d+)(\d{3})/;
        while (rgx.test(x1)) {
            x1 = x1.replace(rgx, '$1' + ',' + '$2');
        return x1 + x2 + "KB";
    var sizeLimit = 200, //allow upto 200KB images
      thisSize = Math.round((this.value.oneOfChild.value.length * 3 / 4) / 1024);
    if (sizeLimit > 0) {
      if (thisSize > sizeLimit) {
      xfa.host.messageBox("Note: With " + formatNumber(thisSize) + " the size of the imported image is greater that the recommended maximum of " + formatNumber(sizeLimit) + ".\nLarge images can cause a insufficent performance.\n\nIf possible, use images with the following recommended specs:\nFormat:\t\tPNG or JPG\nColor depth:\t8 Bit (higher is not supported)\nColor space:\tRGB (CMYK is not supported)\nFile Size:\t\t" + formatNumber(sizeLimit), "Recommended image size exceeded", 3, 0);

  • Save dynamic PDF as flattened or read only

    I finished filling a form, which is a dynamic PDF. Now that I'm done filling it out, I want to save it as a regular PDF, where the fields cannot be edited, and anyone can open it without needing a special version of adobe (basically just a regular PDF viewer), since it's easier to email, and anyone can open it without a problem. Can this be done?
    I have a MacBook Pro, with Yosemite OS.
    Thanks guys

    Do you understand what "flattening" a PDF does?
    It converts fields and annotations content into the context of the PDF and removes the form fields and annotations and they cannot be recovered to their original objects.
    I would look at making the fields read only and using a digital signature to disclose if the PDF has been changed after the signature has been applied.

  • RE: Dynamically mapping data to widgets

    One quick and dirty solution would be something like this (though not
    terribly efficient):
    newPanel : Panel;
    newPanel = <panelCreatedFromWindowWorkshop>.Clone(deep = TRUE);for childWidget in newPanel.children do
    -- check if the childWidget field name matches field name to be
    set
    if childWidget.name.isEqual(source=<..FieldNameToSet..>,
    ignoreCase=TRUE) then
    dataWidget : dataField = dataField(childWidget);
    if dataWidget.textvalue = NIL then
    dataWidget.textvalue = new;
    end if;
    -- set the textvalue of the childWidget to required
    value
    dataWidget.textvalue.setvalue('WORKS !');
    end if;
    end for;
    Your problem would have been directly solved if the Forte library class
    CompoundField provided a SetDataObject( ) method corresponding to the
    GetDataObject( ) method.
    According to Forte Help - "The GetDataObject method returns the object
    that the compound field is mapped to. If the compound field is not
    mapped to an object, this method returns NIL."
    Maybe Forte could consider providing this in a future release.
    Another option would have been to use the GetFieldByName( ) method on
    the newly created panel to get at the child widgets directly.
    According to Forte help - "GetFieldByName is designed for use in dynamic
    applications. For example, you can use GetFieldByName to retrieve the
    names of dynamically created fields for immediate use in dynamic
    applications."
    This works fine for compile-time named widgets, but I couldn't get it to
    work for the newPanel child widgets using the code below, or maybe I am
    missing something here.
    newPanel : Panel;
    newPanel = <panelCreatedFromWindowWorkshop>.Clone(deep = TRUE);newPanel.name.setvalue('newPanel');
    newPanel.parent = <aGridField>;
    dataWidget : dataField = dataField(newPanel.getFieldByName('age'));
    (OR)
    dataWidget : dataField =
    dataField(<aGridField>.getFieldByName('newPanel.age'));
    (OR)
    dataWidget : dataField =
    dataField(self.window.getFieldByName('newPanel.age'));
    In all cases the return value was NIL.
    Maybe someone from Forte could shed more light on this.
    Hope this helps.
    Prashant.
    From: Richard Finegan[SMTP:[email protected]]
    Reply To: Richard Finegan
    Sent: Thursday, August 13, 1998 2:27 PM
    To: 'Forte Users Mailing List'
    Subject: Dynamically mapping data to widgets
    Here's what I'm trying to do:
    I have a panel with a bunch of data fields that I've mapped to an
    object.
    I want to replicate the panel several times to programmatically
    populate a
    TabFolder (although the TabFolder bit isn't really relevant here, I
    think).
    But I can't figure out how to get at the mapped data in the replicas
    of my
    object...
    newPanel : Panel;
    newPanel = <panelCreatedFromWindowWorkshop>.Clone(deep = TRUE);
    panelCreatedFromWindowWorkshop.anAttributeOfObjMappedToPanel =
    something;
    // tada! "something" appears in a data field of the original panel
    newPanel.? = something; // how to do the same thing with the new
    panel?
    How do I map an object to the replicated panel? I've experimented
    with
    assigning "Widget.AppData" to a new object, but I can't seem to get it
    to
    do anything...
    Thanks in advance for your help.
    Richard Finegan
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Michael,
    did you find any solution?
    I've the same problem.

  • How do you drag pages from one PDF to replace pages in another?

    In Acrobat Pro CS2 for Macintosh you could drag one or more pages from one PDF, and choose whether to insert them into another PDF, or replace pages in the other PDF.
    To insert them you dropped the dragged pages between two pages in the Pages panel.
    To replace pages in the other PDF you dropped the dragged pages onto a page in the Pages panel.
    I recently upgraded to Acrobat CS5, and this no longer seems to work. All you can do is insert.
    Of course I can then delete the pages I wanted to replace, but it's now much less convenient, and there's more opportunity for error.
    Am I missing something, or has this feature really been removed between CS2 and CS5?

    You still can but you have to press command + option when you cursor is hovering over the page you want to replace. A blue border will appear around the page.
    So select the new page you are bringing in, drag it over to your main document, keeping the mouse pressed down. Hover over the page you want to replace and press command + option. A blue box will appear around the page. Let go of the mouse and you will get your confirmation message. Press OK, and you are good to go.

  • Reader XI "save" button creates "save as"-dialog in a dynamic PDF

    I made a dynamic PDF with LCD ES4. Sometimes it occurs that a "save as"-dialog appears though I pushed the "save"-button. I am using Reader XI 11.0.07 on a Windows 7 Pro system. Suggestions?

    This don't seems to be a problem of the form.
    It's more likely that Readers save operation fails because the file is used by another process (Exploerers preview pane for example) or there are no rights to save into the current directory.

  • How to include image in dynamic .pdf CF8

    What is the proper way to include an image in a dynamic .pdf?
    In CF7, I did this.
    <img src="file://///xxxDocServer/HiRes
    Photos#Biography.File_Path#" width="119" height="153" />

    Hello,
    Someone maybe able to help you here https://discussions.apple.com/community/books
    Good luck

  • FrameMaker 10 Trial not installing Acrobat PDF Creator

    Hi, I am trying to install the Trial Edition of FrameMaker 10 on a Windows 7 PC, for evaluation.
    The installation of FM10 completes, however PDF Creator 10 is not installed even though I select for it to be done.  I would guess that there should be a separate installer process run by the main FM10 installer, to install PDF Creator 10.  This never happens.
    There are no error messages from the install program, but when I check the installer log I find:
    Testing dependency: Adobe PDF Creation Add-On 10 with relationship Recommended
    Adding failed payload to recommended list
    and
    Checking operation result for {AC76D478-1033-0000-3478-000000000005} Adobe PDF Creation Add-On 10 10.0.0.0
    Recording dependent operation failure for payload: {A6828F8A-83D7-4fff-B763-F69122BB1D74} Adobe FrameMaker 10_AdobeFrameMaker10.0.1_en_US 10.0.1.0
    and
    DW050: The following payload errors were found during install:
    DW050:  - Adobe PDF Creation Add-On 10: Install failed
    I understand that attempting to install Adobe products is problematic if previous versions are present on the machine, so I took great care to remove all traces of previous installs of Acrobat etc. before starting.
    Please could someone from Adobe assist? I would like to evaluate FM10 with PDF Creator 10 but am unable to due to the buggy installer.
    Note: What makes this even more frustrating is that running the installer for PDF Creator on its own gives the message 'Cannot Install Alone, Please Run Installer for FrameMaker'!

    Hi,
    Could you please confirm if you already have Adobe Acrobat/ Adobe RoboHelp installed on your machine, if so the add on might not be installed as the componenets required to create a PDF (under Adobe PDF creation Add on) might be already installed there?
    Just do a test to confirm if the PDF creation functionality is working fine--
    Launch FrameMaker
    Create a Dummy Document
    Select File save as PDF
    Verify if you get a PDF file created at the chosen location?
    Good Luck!
    Thanks,
    Anjaneai

  • How to make dynamic PDF form flowable across 2 pages in LiveCycle?

    I have a dynamic PDF form that is flowable on each page but not both. By that I mean that the fields on the 2nd page won't move to the 1st page if there is available space. How can I make the entire document flowable? I am using Adobe LiveCycle ES2 Designer to create the form. Thank you in advance.

    Hi,
    you need just one page which is flowable and allows page breaks.

  • Dynamic pdf created in adobe 8 not working in Adobe reader 9

    Hi ,
    I designed dynamic pdf using Adobe 8 livecylce.
    I am able to generate the dynamic pdf with values filled in from the database in Adobe 8 reader,standard and professional versions.
    I recently installed Adobe 9 reader and when I try to generate the dynamic pdf , the pdf if generated but the values of the fields comes as null.
    Is dynamic pdfs created in 8 not compatable with adobe 9 reader? Do I need to redesign the documents in 9 again ?
    Please let me know, I designed a lot of pdf documents using 8 livecycle under the assumption that it is going to work in future versions.
    Thanks,
    Vidya

    Hi,
    I figured our there was a setting to enable/disable  Javascript which caused this issue.
    I was using javascript in the LC 8 for manipulations in the dynamic pdfs.
    I enabled the javascript and now it is working fine.
    Thanks,
    Vidya

  • Office PDF Print and office PDF creator(adobe plugin) create different line thickness result

    Hi together,
    Office PDF Print and office abobe PDF creator(adobe plugin) create different result. It seems that Adobe PDf creater improves line thickness to 1pt instead of 0,3pt. Is there a setting to change to original 0,3 because this 0,3 are standard line thickness for our documents. with adobe V9 the line was 0,3pt. (we need thin, mid and thick lines)
    After 2 day's google searching this is the last change for hope :-)
    Software Versions
    Windows 7
    MS Office 2007 (12.0.6668.5000) SP3 MSO (12.0.6662.5000)
    Adobe Acrobat X (10.1.7)
    Left: MSO Adobe Plugin / MId: MS Word / Rigth: PDF printed over "print" AdobePDF printer

    Hi Bill,
    Thanks a lot for the fast reply, i have tested it with 300dpi but I didn't get a different result. The bad thing is that not all lines getting thicker. if there is no arrow or ball at the end of the line the line thickness will not change (see Pic). I think this is a Acrobat error, i don't think that this will improve the pdf quality if the progam changes only some lanes and not all to 1pt.
    I Think we must downgrade to version 9.

  • PDF Creator can creat PDF

    PDF Creator can creat PDF document files from Microsoft Office 2003/2007/2010 (Word, Excel, PowerPoint), image (JPEG, GIF, TIFF, PNG, BMP), Text, RTF, CHM, DjVu and more printable files.
    PDF Creator
    JPEG to PDF converter
    GIF to PDF converter
    PNG to PDF converter

    Please say what PDF creator you have including version
    and how you know they are corrupt

  • Adobe Reader XI - dynamic PDF Form and the E-Mail Dialog

    Hi Community,
    I have a dynamic PDF Form and we use the E-Mail function to save the XML-Data to local harddrive. That works until Adobe Acrobat Reader 10.1.2. But with the Adobe Reader XI (11.0.4) the E-Mail Dialog has changed so I am One is forced to send the XML file with Outlook or the internal mailer and has no option to save the file locally.
    Does anyone know a workaround or something similar. The Live Cycle server with PDF extension is too expensive for our small project.
    E-Mail Dialog (10.1.2)
    If you choose Internet-E-Mail you get a Save-As File Dialog
    E-Mail Dialog (11.0.4)
    There is no way to save the XML-Data to local Harddrive.

    Hi Pat,
    Are you using Adobe Reader XI? And not Acrobat. It does not ask me to save the form if there are unsaved changes.
    I have used previous versions of reader for saving this form data and it did allow me to save it with ctrl+s. And those versions did prompt me to save the changes before closing.
    I guess I should not have updated the reader.

Maybe you are looking for

  • I just purchased a new Mac and I am having problems getting online with my old user name and password

    I cannot access my old gmail account which is "[email protected] and the password I have stored is not working'

  • Home Sharing Library doesn't include all music that's in main Music Library

    Sorry if this has been answered previously. I haven't been able to fashion a search to find the answer. I turned on Home Sharing in the Remote app on my iPhone 4. It readily found my Home Sharing Library from my iMac (that contains 1306 items). After

  • Gl issue

    hi, An invoice was posted in system, Doc. No. *********. For this sale invoice an excise JV was also posted,  Since this invoice was wrong, the excise JV was reversed, and the billing document was also reversed, . All theses documents can be seen thr

  • Several tracks don't give any sound.

    I made a podcast episode, which I have exported into AAC and what not. Today I opened the project to export an mp3 version, and when i was done I noticed only 2 of the 5 tracks were exported. So I go back into Garageband, and all but one track is pla

  • Reset Password email:  subject line and body

    For an email that is sent from this page: Home>Manage Workspaces>Manage Developers and Users>Reset Password Question: Where/how can I change the subject line and message-body contents for this email