Help with PDF Generation

We are currently evaluating LiveCycle ES to potentially convert numerous Pro/E 3D drawings to PDF. Unfortunately, I am having a difficult time finding the proper resources to help achieve this. What we would like the process to do is:
1) Take a Pro/E file, and apply a forms template
2) Add an "Exploded View" animation for the 3D drawing (such as what can be generated by Adobe 3D Reviewer)
3) Expose the "Bill of Material" to the template fields
4) Save the generated PDF to a defined folder
5) Perform these steps for a "watched folder" for when new drawings are submitted
In LiveCycle Workbench, I have been able to read a Pro/E file and apply our template. But I cannot find information on how to achieve the other steps.
Could somebody please point me to specific resources and/or samples that would help with this? Any help would be very appreciated.
Thanks!

Thanks for your reply.
If I'm understanding you correctly, option 1 probably won't work for this situation, because we're working with existing ProE drawings -- hundreds, if not thousands, of them. So, they don't want to go back and add the exploded view. Unless you're saying that we could use javaScript to generate the exploded view and BOM from the ProE files?
Do you know of an example (or other resource) that describes either of the options you outlined? Could you explain a little more?
Thanks again!

Similar Messages

  • Urgent help with pdf

    I have updated to Leopard and Office 2008 and find that pdf handling is now quite different. Instead of a single pdf file I now get three! And, as noted in this forum, the size is many, many times greater than Tiger. I have run http://www.apple.com/downloads/macosx/automator/compresspdfworkflow.html and I do not get any Compress Pdf option - does anyone know why this is please?
    And can anyone tell me how to get the pdf printer or Save-As to give me a SINGLE pdf file (this when running Word 2008)? I totally rely on this feature on the Mac and the loss in Leopard is a very major issue for me.
    Thanks - Lawrence

    Thanks for your help, I also had no problem with Office 2004 and 10.5.1, it all started with Office 2008 but I was of the opinion that the print drivers were OS related, I have the same problem no matter what application I print from - that is, great big fat pdf files. The 3-part thing, which renders pdf distribution useless (unless I can figure out how to smush the 3 parts into 1), must be - it would seem - a Word 2008 problem, and this is not something I can test elsewhere as the document is a Word document. But even so, Word is passing off the file to the print driver so, my immediate suspicion, is that it is the print driver; it could however be Word shipping of three chunks of the file to the driver, and so I get three files. I tend to believe that it is this latter for the three part nonsense. The big fat file issue I think is a driver problem. And why does the Compress-pdf option not work? Does anyone know how to remove/deinstall this so I can perhaps try reinstalling it all. Maybe if I reinstall the Compress-pdf stuff first and THEN Office 2008.
    I think that Office 2008 and 2004 can co-exist. Maybe I can mix and match - using 2004 Word for pdf generation and 2008 for everything else.
    Big major hassle though and no mistake...
    Thanks again.
    Lawrence

  • HELP WITH PDF TO WORD DOC

    pLEASE HELP WITH CONVERTING A PDF REPORT TO A WORD DOC WHERE i CAN MAKE CHANGES AND PRINT A NEW REPORT.

    Hi Christine,
    It looks like you have a subscription to our ExportPDF service. Follow the steps in our Getting Started Guide to convert your PDF to Word: http://forums.adobe.com/docs/DOC-2412
    You should be able to edit your file in Word after the conversion.
    -David

  • Help with pdf tasks

    Hello,
    I am trying to automate a couple of specific tasks with pdf files but I am having some trouble. At my job we are printing files to pdf but afterwards we must go back and edit the pdf files. Basically what we need to do is this (in order):
    1) Rotate the first 'one to three' pages. The first page(s) need to be rotated counterclockwise but it can be 1-3 pages that need this. All we know is that they always appear first. These pages are very similiar in content so I was thinking about making the program search for a keyword common to those pages then rotate it if it finds that keyword. That way we can ensure that its only rotating the pages which need to be rotated.
    2) The last 3 pages of the document need to be moved to the top. These documents vary in number of pages so I cant just tell the program to move certain pages numbers to the top. All we know is that its always the last 3 pages of any document that need to be moved to the top. Also, just for clarification is another way to reorder pages in Acrobat besides dragging them with the mouse?
    Any input would be greatly appreciated.
    Thanks
    Fazal

    Both of these could be implemented using JavaScript, perhaps using a batch sequence. #2 is easy, and #1 may or may not be possible/reliable based on the actual content of the document.
    For #1, a script is able to loop through the words on a page to search for one or more words. If found, it can look at the position of the word on the page, and if it meets the position criteria, use the setPageRotations document method to rotate the page.
    For #2, just use the movePage document method to move the last three pages.
    If you need help with the code, consider posting in the Acrobat Scripting forum. Include more information for #1 if you do.

  • Help with PDF Javascript calculation involving checkboxes

    Hello Everyone,
    I have a PDF Form, and need help with a calculation.
    For the sake of simplicity, Lets say I have 5 fields. FSA1 and FSA2 are checkboxes. TotalClaimed1 and TotalClaimed2 are text fields which allow only a numerical input.
    The last box, FSA_Total, should add the value from TotalClaimed1 if FSA1 is checked, and it should also add the value from TotalClaimed2 if FSA2 is checked.
    The code is malfunctioning, however. Something is causing it to add to the total every time the box is checked. Its almost like the checking off of the box is what causes the addition.
    It seems like the code is being read as "When the box is checked, add the value to the total", so each time the box gets checked, it adds to the total again.
    and it should be "IF the box is checked, add the value to the total" so if there is a value in the field, and the box is checked, that value is passed on to the total; and if the box is not checked, the value is ignored.
    Can anyone spot what might be causing this? Code is below.
    var claim1 = parseInt(this.getField('TotalClaimed1').value),
        claim2 = parseInt(this.getField('TotalClaimed2').value),
        fsabox = parseInt(this.getField('FSA_Total').value);
    if (this.getField('FSA1').value == 'Yes') {
        fsabox += claim1;
    if (this.getField('FSA2').value == 'Yes') {
        fsabox += claim2;
    event.value = fsabox;
    Thanks
    Thisguy1234

    This is a custom calculation script for FSA_Total, correct? The code is working correctly, it's just not what you want. Assuming this is a custom calculation script in the FSA_Total field, it should be something like:
    var sum = 0;
    var claim1 = parseInt(getField('TotalClaimed1').value, 10),
        claim2 = parseInt(getField('TotalClaimed2').value, 10),
    // Add field values if corresponding check boxes are selected
    if (getField('FSA1').value !== "Off") {
        sum += claim1;
    if (getField('FSA2').value !== "Off") {
        sum += claim2;
    // Set this field value
    event.value = sum;
    Why are you using parseInt, exactly?

  • Need help with PDF/X-1a

    I am beyond frustrated here so I hope someone can help me!!!! Ii have Adobe 8 Standard and I can't find the PDF/X-1a in my distiller. I need this particular preset to upload a book cover. The website won't accept any other format. The only thing I have in my distiller is PDF/A-1b.
    Does anyone know where I can get the correct distiller? Everyone I know with Adobe 8 has the PDF/X-1a in their options and they don't remember having to do anything special to get it.

    Assuming you have Acrobat installed, it would not hurt to verify compliance after the document is created. With the doc open (on my vesion 9) Advanced > Print Production > Preflight > PDF/X Compliance > Verify compliance with PDF/X-1a  hit analyze
    Note that a document must have a Title in the Title box under Document > Properties (ctrl+d) to pass X-1a and, for whatever reason, analyze and fix cannot add this.
    And I'm far from the resident expert here..

  • Help with PDF form responses

    Hey there!
    I have two issues with online form data collection and am completely stumped. It's a real struggle to find useful documentation for Acrobat forms!
    #1 - I have created a form uploaded it to Acrobat.com, and have been able to collect test form data. In the local responses portfolio, I'm able to use the 'Update' button to bring the latest form data into the portfolio. But I would like to have a colleague be responsible for monitoring the form data and we're running into problems. He's able to open the portfolio and has full access, however the 'Update' button is greyed out so he is unable to bring in new form data. We've already updated his 'Acrobat.com' username/password in Acrobat preferences to match mine, but still no luck. Any help?
    #2 - Some computers are having issues with electronic submission. My best guess is that this is to do with Acrobat versions, as the issues all seem to come from computers where the form is completed using Acrobat Reader 8. The form was created with Pro 9, and form submission works for both Pro 9 and also Reader 9. Is there something I can do here? (And yes I know that it's a free upgrade to 9, but 8 is still in the official build for our organisation and I don't really have time to wait for them to complete an upgrade!)
    Thanks in advance for any help you can give.
    Jarrod

    Hello Paul,
    Thank you for your reply.
    I use Ipower for my hosting.  I see they use sendmail and the path on the server is - /usr/sbin/sendmail.  Would this work?
    The way I would like this to work would be:
    1) I e-mail the PDF form to the client
    2) Client opens and fills in the form
    3) They hit submit and the form information eventually gets e-mailed to my business e-mail
    I chose to use the HTTP method instead of e-mail because the PDF form says it can not be saved and if the client uses an internet beased e-mail like Yahoo it gets kind of messy.
    But, does the HTTP delivery method make it more difficult since this is not embedded in a website?
    Sorry, I did not realise this would be as involved as it is.  Your help would be greatly appreciated.

  • Livecycle design 8 Help with PDF forms

    I am new to Livecycle 8. I have created a simple PDF form in Livecycle 8 which was orignally an excel form. I set it up with a submit button to submit by email to a designated person. The form is housed on an internal web site for viewers with adobe reader to open and fill out and then submit by email. The goal is for the designated receiver to receive the the same PDF form with the information filled out by the previous viewer. I was successful with the form being emailed to the designated person as long as the peson submitting the form was using adobe professional. If the viewer only has adobe reader, the form would not submit to the designated receiver. Please help? 

    Reader does not allow a local save of the form and data by default. To be able to add the attachment o an email message a local save must occur. You can Reader Extend your form to allow for this. Open th eform in Acrobat Pro. Under the Advanced menu choose the "Extend Features in Adobe Reader". Follow the wizard and save the result PDF as a different name ....I like to put RE in the name so I know it is Reader Extended. Try the new file.
    paul

  • Help with PDF Form Submission

    Hello,
    I am using Live Cycle for the first time.  I have designed a PDF form that my clients will fill out and then send back to me.
    I have a website and thought submitting the form via http would be best but am having a problem with knowing the correct URL an then the server authentication.
    When I try to submit now I get an authorization error.
    Here is the URL I used in LiveCycle - http://watchmymvp.com/profilesubmissions
    This is to a folder a created on the server.
    How do I set this up?
    Thanks

    Hello Paul,
    Thank you for your reply.
    I use Ipower for my hosting.  I see they use sendmail and the path on the server is - /usr/sbin/sendmail.  Would this work?
    The way I would like this to work would be:
    1) I e-mail the PDF form to the client
    2) Client opens and fills in the form
    3) They hit submit and the form information eventually gets e-mailed to my business e-mail
    I chose to use the HTTP method instead of e-mail because the PDF form says it can not be saved and if the client uses an internet beased e-mail like Yahoo it gets kind of messy.
    But, does the HTTP delivery method make it more difficult since this is not embedded in a website?
    Sorry, I did not realise this would be as involved as it is.  Your help would be greatly appreciated.

  • Help with PDF export

    Hi,
    I'm a beginner with InDesign, and I need help badly. I've gone through lots of threads with no solution yet.
    Earlier today I exported an InDesign file to PDF and parts of the document with black text went to gray. It's been that way since, even in the original InDesign document. I don't know if it's just a color thing. If I change the color to red it simply looks like a "light" red. When I'm  scrolling down the page it looks black, so long as I'm holding down and scrolling. Does anyone have a solution to getting my "light" font to be rich with color again. All of my black text is gray!
    Thanks in advance.

    No, I didn't make any changes. How do I find the opacity?
    Does the opacity not show when you scroll? It may very well be the opacity, because it looks the same even in PDF. But then it doesn't explain how some parts look like opacity has changed and then some parts look completely normal.
    EDITED TO ADD: THANK YOU SO MUCH. I FIXED IT.
    It took me hours. THANK YOU!!!!!!!!!

  • Help with pdf forms

    Hello all,
    I need help desperately! Ok. so, I created a for from an existing document (PDF) on a mac computer. I did a test to see what would happen from the receiving end. When I distribute the form, the client receives it and fills in the blanks with type. WHenever they type a multiple line of text, the text becomes jumbled. I am running out of time and need to get this form to my client asap. Has anyone ever experienced this? If so, whast did you do to fix the problem?
    Thanks

    You'll need to go back and set the properties for the fields in question to multi-line. Right click on the field and select properties.

  • Need help with pdf file

    I have the version Adobe Reader XI and I can't open up a pdf attachment.  I tried all the troubleshooting in the help menu but nothing is working.   I have to be able to open up pdf file every day. HELP

    Okay the pdf file has a little (save) at the bottom of the file and when you click on it, it says (save to my computer) When I click on this it does not give me an option of where to put the file it just blinks for a secondlike it saved it somewhere but when I go into my c drive and look I can't find it or when I go into adobe reader I can't find it so I tried right clicking on the save to my computer and got these messages
    open
    Open in tab
    open in new window
    save target as
    Now I have tried all of these and it does the same thing.  Just blinks for a second like it did something but again I can't find the file.  I really would like to just go back to opening the file in my email.  Do you think if I uninstalled Adobe reader X1 and reinstalled another adobe reader that might get me back to what I used to have?  This just happened yesterday and I have the same browser and haven't changed anything on my browser but I did update adobe reader so I was thinking it had something to do with Adobe reader X1.
    If you don't think this will work then go ahead and walk me through saving the pdf file but so far I have not been able to open or save it.

  • Help with PDF's in Flash

    I need to make a hyper link to jpegs, and while this is easy
    enough, the images are already in a PDF doc. I would love to not
    have to go page by page and save them out as jpegs. Is it possible
    to link a hyper link to a specific page in a specific PDF ? And if
    not a hyper link is there some other way of clicking on some text
    or something and telling it to go to page 2 of Test.pdf ?
    -Thanks

    I'm totally confused - i think it is your terminology - when
    you say things like "window" - it is
    very hard to tell what you mean. "Window" can refer to so
    many different things. Then you say things
    that popup at first glance can't be seen - even more
    confusing. When you say "when I open the window
    more..." what "window" are we talking about? Are you
    previewing in a browser? Or is this inside the
    DW IDE? Or the Flash IDE?
    It's probably a very simple solution but I can't figure out
    what you are physically looking at, what
    it looks like now, and what it should look like based on your
    workflow.
    sorry - trying to help.
    Chris Georgenes
    Adobe Community Expert
    mudbubble.com
    keyframer.com
    howtocheatinflash.com
    undesirablenumberone wrote:
    > just to stating the obvious, ....i'm a total novice.
    >
    > i'm using the same file from dreamweaver, just renaming
    it....then i change
    > the placeholder to correspond with the new file...then i
    save it and
    > refresh....I notice that when i preview it in flash that
    as a flash item, when
    > the window with the nav bar in it pops up at first
    glance you don't see it, but
    > if i open the window more then the text is there ...but
    still doesn't show up
    > in dreamweaver.......
    >

  • Help with PDF form download

    Could anyone help please.  I have completed a form and saved it, then I went back into it and made a couple of changes and now I cannot download it as a PDF file.  Here is the error message I keep getting
    There is nothing else open on my mac, so I don't understand it.  Any advice would be greatly appreciated.  Thanks.

    Hi;
    The general things to try are:
    1) Make sure that youdo not have the file open, close any applications that might have had the file open
    2) Make sure you are saving to a location you can "write" to, such as your Desktop (not a read only location)
    3) Try giving the file a new name when saving (you probably need to add ".pdf" or you might end up with a file with no extension and you'd get another error message)
    4) Try restarting the web browser
    5) Try another web browser
    6) If all else fails restart your computer and try again
    Let me know if those do not get you going again.
    Thanks,
    Josh
    PS - I see Genevieve has just responded as well, I am leaving my response up since I mention trying another browser since that just resolved the same issue for another user...
    PSS - We now have the following FAQ for this issue:
    http://forums.adobe.com/docs/DOC-4141

  • Need help with report generation toolkit

    I'm having a really hard time finding a solution for my problem. I'm measuring a distance and a diameter simultaneously. The outcoming values have a depency and are stored in a 2-D array.  I want to export this array to an excel table and x-y-chart (distance is x and diameter y). So far I can export the data to a table, however the charts produced are useless. Can somebody please help me? I'm almost crying since I'm trying to find a solution for 3 days now.
    Additionally, after one measurement is done, the user should have the possibility to do the next measurement, and the data has to be stored in the same excel file, in another worksheet. How can I do this? 
    Attachments:
    Hauptprogramm_0.5.vi ‏129 KB

    Hi!
    If you want a nice graph in Excel based on your data you have input there, I would recommend creating a macro that builds your graph. Read more about macro, Excel and LabVIEW here. I don't have the Report Generation toolkit, but I think you can send macros with it too. 
    Regards,
    Even
    Certified LabVIEW Associate Developer
    Automated Test Developer
    Topro AS
    Norway

Maybe you are looking for

  • Some CGM graphics do not appear when FrameMaker files are converted to PDF

    CGM files are exported from ISO (Arbortext Isodraw 7.0 CadProcess) files. Then they are imported into Adobe FrameMaker 7.2, where all elements of the illustration are visible and can be printed. The FrameMaker FM file is converted to a PDF file using

  • How to test that my JDBC work?

    I'm migrating an application from Weblogic 5.1 to 6.1 and already it's driving nuts with all the huge changes. Essentially, in the past, we had our own directory structure and script files where they referenced the necessary Weblogic jars... and webl

  • 'Pan' across an image

    I've seen some Keynote presentations and been blown away by the quality and visual impact and would love to 'switch', particularly when we have rumoured MacBooks in the next few days However - I've been into the Apple Store in London to have a play w

  • Is SSO included in 10gAS Standard Edition

    Hello. In the Oracle Application Server product editions' page (http://www.oracle.com/appserver/pkgsum.html) appears that the 10gAS Standard Edition includes the Single Sign - On feature, but when i see the price list appears that the SSO is included

  • When i open tabs they go to yahhoo search i want google back how do i get it back to the origanal

    i cannot figure out how to change my browser settings when i open new tabs