Attempting to auto-fill from .AI file

Hello,
I'm trying to streamline a corporate process. Is there any way to get a PDF file to auto-complete fields by referencing them in an Adobe Illustrator document?
Thanks

Hi George - I'll be as specific as I'm allowed to be (frustrating I know)
We have illustrator documents with standard title blocks, containing text fields like Author, Date, etc.
For each of those there are a number of PDF forms--paperwork that needs to be reviewed by different groups as part of the project. The PDF forms require redundant information to be filled in (Author, Date, etc), which currently has to be done by hand, taking time and increasing the chance of a typographical error or omission, which can derail the whole process depending on what's incorrect. We're hoping to get the PDFs to fill themselves in automatically by refencing the illustrator documents. Of course, none of us are exactly programmers, so any scripts that would need to be continually altered turn out to be a net loss.
Is there any Acrobat or Illustrator tool/process that could help us out? Its worth noting that even minor workflow improvements are welcome (we've implemented a couple already).
Thanks,
Chris

Similar Messages

  • Auto-fill Existing PDF files?

    I have been given some standard shipping forms in an editable PDF format. Instead of spending 200 hours recreating reports in Report Builder that are the exact same thing, I was hoping Oracle Reports (or Forms) could just "send" the data to the PDFs (like passing in parameters) which would auto-fill the existing editable PDFs.
    We DO have Acrobat 8 Professional --- so if there is a way to change the properties of a report to accept these "parameters" (aka "passed in data"), then we can do that. The person who has Acrobat on her computer is out of the office for the next week. So I can't go look on her computer and play with it. :(
    We have the 6i development tools on a 9i db.

    I dont think this is possible in reports.
    However there are third parties who perform this. Search in google.
    Rajesh Alex

  • Cannot find symbol error -- array fill from text file

    When I compile my program I receive a cannot find symbol error for the variable ayears. I thought this snippet would fill the array ayears that could be accessed later in the program but I am getting the error message from my buildGUI() class. What could I have done wrong?
    (my file options.txt contains data separated by a comma and a space)
    public void getOption(){
         InputStream istream;
         File options = new File("options.txt");
         istream = new FileInputStream(options);
         try {
                               StringBuffer sbuff = new StringBuffer();
                               BufferedReader inbuff = new
    BufferedReader(new FileReader(options));
                               String line = "";
                               while((line = inbuff.readLine()) != null) {
                               System.out.println(line); 
              sbuff.append(line);
                               inbuff.close();
                              String fileData = sbuff.toString();
              String[] splitData = fileData.split(", ");
              String[] ayears = new String[splitData.length];
         catch(Exception e){
         JOptionPane.showMessageDialog(null,
         "Could not find specified file", "Error Message",
         JOptionPane.ERROR_MESSAGE);
    }

    Okay -- that helped. I've avoided that error -- now on to the next one, why won't my array fill? It's going to be a long night.
    Thanks for the help.

  • Anyway to do away with task number or auto fill from outline number?

    Our client has approximately 300-500 tasks ...
    they would like the system to somehow automatically fill the task number as it is felt it is redundent to task name if we use alpha... and number has issues if they start moving tasks and then need to renumber to make things look correctly...
    any thoughts on how to handle or overcome this?? is there a way??
    thanks

    we are using alpha numeric for both name and number and the same value is being used on both fields
    the client would prefer numbers..but when they shift or move or add ..the numbering would be out of sequence though the outline number will be correct...they would have to manually renumber all the numbers to flow correctly after an adjustment is made...
    any way to automate or alternative ideas?

  • How can I auto export a PDF File using the "Smallest File Size" preset and set the Exported File Name based on information from an Imported PDF?

    Greetings all,
    I am trying to create a script to automate a PDF export process for my company for inDesign. I’m fairly new to inDesign itself and have no previous experience with javascript, although I did take C++ in high school and have found it helpful in putting this code together.
    We have an inDesign template file and then use the Multi-page PDF importer script to import PDF files. We then have to export two version of each file that we import, then delete the imported file and all of the pages to reset the template. This has to be done for nearly 1000 pdf files each month and is quite tedious. I’m working on automating the process as much as possible. I’ve managed to piece together code that will cleanup the file much quicker and am now trying to automate the PDF exports themselves.
    The files are sent to us as “TRUGLY#####_Client” and need to be exported as “POP#####_Client_Date-Range_North/South.pdf”
    For example, TRUGLY12345_Client needs to be exported as POP12345_Client_Mar01-Mar31_North and POP12345_Client_Mar01-Mar31_South.
    There are two templates built into the template file for the north and south file that are toggled easily via layer visibility switches. I need to get a code that can ideally read the #s from the imported Trugly file as well as the Client and input those into variables to use when exporting. The date range is found in the same place in the top right of each pdf file. I am not sure if this can be read somehow or if it will have to be input manually. I can put North or South into the file name based on which template layer is visible.
    I am not sure how to go about doing this. I did find the following code for exporting to PDF with preset but it requires me to select a preset and then type the full file name. How can I set it to automatically use the “Smallest File Size” preset without prompting me to choose and then automatically input some or preferably all of the file name automatically? (If the entire filename is possible then I don’t even want a prompt to appear so it will be fully automated!)
    PDF Export Code (Originally from here: Simple PDF Export with Preset selection | IndiSnip [InDesign® Snippets]):
    var myPresets = app.pdfExportPresets.everyItem().name;
    myPresets.unshift("- Select Preset -");
    var myWin = new Window('dialog', 'PDF Export Presets');
    myWin.orientation = 'row';
    with(myWin){
        myWin.sText = add('statictext', undefined, 'Select PDF Export preset:');
        myWin.myPDFExport = add('dropdownlist',undefined,undefined,{items:myPresets});
        myWin.myPDFExport.selection = 0;
        myWin.btnOK = add('button', undefined, 'OK');
    myWin.center();
    var myWindow = myWin.show();
    if(myWindow == true && myWin.myPDFExport.selection.index != 0){
        var myPreset = app.pdfExportPresets.item(String(myWin.myPDFExport.selection));
        myFile = File(File.saveDialog("Save file with preset: " + myPreset.name,"PDF files: *.pdf"));
        if(myFile != null){
            app.activeDocument.exportFile(ExportFormat.PDF_TYPE, myFile, false, myPreset);
        }else{
            alert("No File selected");
    }else{
        alert("No PDF Preset selected");
    So far my code does the following:
    1) Runs the Multi-Page PDF Import Script
    2) Runs PDF Export Script Above
    3) Toggles the Template
    4) Runs #2 Again
    5) Deletes the imported PDF and all pages and toggles template again.
    It’s close and much better than the original process which was almost 100% manual but I’d like to remove the Preset prompt from the PDF script and have it automatically select the “Smallest File Size” preset. and then if there’s a way to have it auto-fill in the file name so no user input is required at all other than selecting each file to import. (If there’s a way to setup a batch action for the multi-import script that would be even better!)
    Thanks in advance and if there’s anything else I can provide that would help please let me know! Even a nudge in the right direction will be a big help!

    If you hold down the option key, it will typically show the location. Or you can often hit option-return on the file and it will reveal the file in the Finder, instead of opening it.
    Final option is to open it, and just option-click the filename in the toolbar of Preview and it should show you the location.
    It's probably an attachment to an email you've received. If you have Mail set to cache emails and their attachments it'll be stashed in a subdirectory of ~/Library/Mail. Which is fine.

  • Auto filling iPod

    I have a 2nd gen. shuffle. How do I just pick certain artists from my music library and have the iPod randomly auto fill from those artists instead of the entire library?
    Thanks.
      Mac OS X (10.4.9)  

    Hello, Jcstormy
    You may want to try the steps below.
    In the Tab called Contents, look below they have a box you can checkmark called Choose Items Randomly.
    http://docs.info.apple.com/article.html?path=iTunesWin/7.0/en/799.html

  • Cannot delete itunes from pc,message states. a network error occurred while attempting to read from the file C:\windows\installer\itunes.msi

    ITUNES WILL NOT DELETE FROM ADD @ REMOVE PROGRAMS,
    MESSAGE, READS  a network error occured while attempting to read from the file  C:WINDOWS\installer\iTunes.msi

    All sorted now just needed to repair itunes from control panel

  • I bought this MAC from a family member. Did everything need to change items to my apple id. Today I did the update for IOS Yosemite now the app store is auto filling with someone else id?? But they seem to be my apps??

    I bought this MAC from a family member. Did everything need to change items to my apple id. Today I did the update for IOS Yosemite now the app store is auto filling with someone else id?? But they seem to be my apps??

    If you didn’t erase the drive and install using you AppleID, then the OS and the purchased apps are still registered to the other AppleID. You cannot change that by logging into iCloud. Apps are forever tied to the AppleID used to purchase/download them.
    You have to erase the drive and download/install the Apps using your AppleID.

  • Is there a way to create auto fill fields in an excel spreadsheet from AB?

    Hey, so I've got an Excel spreadsheet that I'd like to tweak so when I enter a name, the boxes next to it labeled Phone Number and Email will auto fill the information in from Address Book. I don't know if this is possible in Excel, I have a Address Label Widget that does it though.

    Being Applescriptable, you should be able to do that in Excel. MacTech magazine has a long article on applescripting Office. You might ask around in the Applescript forums or take a look at Macscripter.net.

  • Auto Fill Shipping Address from Billing Address on a New Form in SharePoint 2013

    I have a new form on SharePoint that has a few fields:
    Billing Address 1 (Single Line of Text)
    Billing Address 2 (Single Line of Text)
    Billing Address City (Single Line of Text)
    Billing Address State (Drop Down Menu)
    Billing Address Zip (Single Line of Text)
    Shipping Address is the Same (Yes/No Check Box)
    Shipping Address 1 (Single Line of Text)
    Shipping Address 2 (Single Line of Text)
    Shipping Address City (Single Line of Text)
    Shipping Address State (Drop Down Menu)
    Shipping Address Zip (Single Line of Text)
    The object is that a user would fill in the Billing Address Fields, then click the "Shipping Address is the Same" check box and the Shipping Address Fields would auto fill with the Billing Address Fields.
    I've tried using a CEWP and editing the form file in SharePoint Designer 2013. I just don't know how to make this Dynamic auto fill work! Any help is greatly appreciated!!!!

    Use a custom web part
    Design the form controls and in "Shipping Address is the Same" check box check event or button click,
    copy the same data into a label form contains the same fields but in form of labels instead of textbox and dropdownlist.
    try this solution and let me know.
    Ahmed Said Moussa SharePoint Consultant

  • While updating the older version iTunes to latest one it shows "a network error occurred while attempting to read from the file: C:\windows\installer\iTunes64.msi. pls help on this matter to connect my i5 to PC. Thanks in advance

    while updating the older version iTunes to latest one it shows "a network error occurred while attempting to read from the file: C:\windows\installer\iTunes64.msi. pls help on this matter to connect my i5 to PC. Thanks in advance

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page): 
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • I am getting "a network error occurred while attempting to read from the file c:\windows\installer\itunes.msi" when I attempt to download itunes, can someone help me with this?

    I am getting "a network error occurred while attempting to read from the file c:\windows\installer\itunes.msi" when I attempt to install itunes.  Can anybody help me to resolve this issue?

    You can try disabling the computer's antivirus and firewall during the download the iTunes installation
    Also try posting in the iTunes forum since it is not an iPod touch problem.

  • Trying to update to iTunes 10.4.1 and I get a message "A network error occured while attempting to read from the file C:|Windows|Installer|iTunes.msi"  Running WIndows 7 with all updates done.  I  have never had an issue with iTunes updating before.  Anyo

    iTunes has tried to update itself and runs into an error and tells me to manually install.  When I d/l and run the iTunesSetup.exe file I always encounter the following error message...
    "A network error occured while attempting to read from the file C;|Windows|Installer|iTunes.msi" and iTunes does not update to iTunes 10.4.1.
    Anyone know what is creating this error message?  Thanks for the help...

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page): 
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • I have a user on Adobe Reader X.  whenever they open a .pdf file, the form fields do not auto-fill u

    I have a user on Adobe Reader X.  whenever they open a .pdf file, the form fields do not auto-fill until you click in the box.  Is there a setting that can be changed to make the form open properly?

    Sounds like the form fields were filled in on a Mac using Mac Preview. This cannot be fixed in Reader only Acrobat. Ask the person who filled in the form to redo their work in Adobe Reader.

  • Yahoo e-mail will not allow me to add contacts and will not auto fill e-mail addresses, and now I'm having trouble downloading Adobe documents from my bank. All of these problems can be solved by using Internet Explorer, but I prefer Firefox.

    I get an error message when trying to add new contacts and it is suggested I try back later, also when sending an e-mail the address I wish to send an e-mail to will no longer auto-fill. This has been a problem for sometime, maybe a month. The last problem I had was trying to download my March bank statement, in Adobe. If I switch to Internet Explorer I can accomplish these tasks. I am using Yahoo on both Firefox and Internet Explorer.

    Check the Ethernet connection to the AirPort Express. Make sure that the Ethernet connection from the Comcast modem is connected to the WAN port on the back of the AirPort Express. The WAN port is the one with the circle of dots shown over the port.
    It sounds like you are connected to the Ethernet LAN port.

Maybe you are looking for

  • Problems with OAS Version 10.1.2.0.2

    Hallo, i have a few problems with my OAS. 1. I will open my Apllikation on a machine with Windows 7 and my Applikation crashed. But on a machine with Windows XP it's ok. 2. In the error log from the Apache I see the following: [Fri Oct 12 07:49:33 20

  • Why can I not send a photo by e-mail?

    I can not send a photo by e-mail.  I have tried every thing.  What else can I do?

  • Adding More Java Classes

    Can I add my own Java classes in the Import Java Classes... (Program -> Import Java Classes...) in the Report Builder? In what path I should place my Java classes if it is possible?

  • Start up disc full - do I need to delete files?

    I continue to receive this pop-up on my computer and Apple won't help me. Does anyone know where to go to fix this problem? Please help! Thanks!

  • Convert 8.20 LV vi's to 7.0 LV

    Hi Thanks in advance, Can anybody plz convert the 8.20 L.V Vi's to 7.0 L.V, Plz find the attached Vi's. Plz send me a copy of the same to [email protected] Thanks Best Regards Suresh Attachments: 201-56.zip ‏1083 KB