Save only active artboard as PDF

Hi all,
I have a CS4 .ai file with about 90 artboards.  I would like to be able to save only the current artboard and related layers and artwork as a uniquely named PDF.  So far I have only been able to save a PDF with all artboards enumerated as different files, save the current artboard as an .eps but neither fit my need.  It would be great if I could get some help on the appropriate applescript to perform this task as well.
Thanks!
Tom

I do understand that when you do a 'Save as' and select PDF that it auto-checks and disables the 'Use Artboards' box and then allows you to save all or a range of artboards.  However, since I am trying to build this into a script I was hoping for a way to save just the active artboard without having to know the artboard number.  In contrast is there a way that I can do the following in a applescript:
- fetch the number of the current artboard
- save as pdf with a range of 'insert that number here'
thanks!
tom

Similar Messages

  • Save Only The Artboard area into AI file

    Hi,
    Is it possible to save only the ARTBoard Area into a new AI document by using JSX.
    for example in the above image I want only the yellow marked drawing ,that is inside the artboard area, to be save in the new document [AI file] by using JSX.
    Thanks

    What you see in the document is what you will see when you save it.
    I recommend saving as a psd then if you really want to you can merge the layer or flatten (merge will leave the background transparent whereas flatten will give you a white backgound if there are any transparent areas in the document)
    (ctrl-e or ctrl-shift-e {windows} cmd-e or cmd-shift-e {Mac})
    Or you can leave the layers alone and create a composite (A new merge layer on top of the other layers)
    (ctrl-shift-alt-e {windows} cmd-shift-opt-e {mac})
    That said not all formats support layers or transparency. An example of that is jpg when you save with that format you will get a single flattened layer that will have a white background anyplace there was transparency.
    To recap:
    1)Always work on a duplicate file when doing destructive work so you can return later and undo what you did.
    2)When ever possible use non-destructive edits such as a composite layer.
    3)If you require layers or transparency it is required that you use a format that supports them like tiff or psd
    4)Use jpg as a file for sharing and never as the master file. Because the format is destructive and throws out data each time you open and save it.

  • How do I save only part of a PDF file?

    I have a PDF of a book layout, which is 176 pages. It's one big file. How can I save only selected pages as a separate PDF?
    Thanks
    David Heim

    Document>Extract pages but only if you have Adobe Acrobat (you haven't mentioned that as of yet) and only if there is no security preventing modifications and such.

  • Save only the artboard

    I have large text that extends out past the artboart boundaries.  why in gods name anyone would want to include this when they save is beyond me, kind of defeats the purpose of the artboard.  also, there is no easily identifiable way to exclude the work outside the artboard when exporting (jpeg).  i tried to just find a selection tool (rectangle) like in photoshop so i could select the artboard and then maybe select the inverse and cut.  but thats a no-go.  so, how do i do it?
    thanks.

    McLrn,
    The area outside the Artboard is part of the Work Area and may contain artwork that needs to be kept.
    Depending on the version, you may do different things to limit what is Exported.
    In the newest version(s), I believe the Artboard is used to crop for export.
    In older versions, you may create a rectangle where you want the image borders and Object>Crop Area (or Crop Marks)>Make.

  • How to use Magic Wand to select in Active Artboard only - CS5

    I've run into a problem that I would think already has a solution. I have a layout with 7 artboards, each a variation on a logo design. I want to select a specific color, but only in the active artboard. The Magic Wand would seem to be the right choice, but I see no way of specifying this. Every attempt I make, the color is selected in every artboard that it exists. I know that Select All can narrow its scope to the active artboard by adding the option key to the command but see no equivalent for the Magic Wand. Am I missing something or is Illustrator missing the ability?

    Use locking or hiding to make you selection.
    Draw a frame around the elements on one artbaord
    Select >> Inverse
    Object >> Lock
    (use your magic wand and make your change)
    Object unlock all

  • I have adobe illustrator CS5. When I save a document as a pdf and open it again later to edit Adobe reader can't read the whole document because it only shows part of the document. It is very frustrating. How can I fix this?

    I have adobe illustrator CS5. When I save a document as a pdf and open it again later to edit Adobe reader can't read the whole document because it only shows part of the document. It is very frustrating. How can I fix this?

    keokipineapples schrieb:
    I do have all of my files I am working on located on an external drive. I plan to transfer them directly to the hard drive
    Transfer them to your harddisk immediately.
    External drives are not offiially supported and the source of errors of all kinds including complete loss of files.
    Illustrator support for networks and removable media

  • How do I export/save (iOS numbers)only 1 sheet to pdf??

    How do I export/save (iOS numbers)only 1 sheet to pdf??
    Everytime i tried it ,,,every pages/sheet lays in the pdf-file..

    Trying with better english
    In Numbers 08, I used to be able to export a single page to a PDF. Now it seems as though my only option is to export the entire document to the PDF (Share > Export...). Am I missing the option or did they remove it from us?

  • Script to open SVGs in a folder and save them to one multipage PDF

    Hi.
    I'm using Illustrator for work and I love it, I never needed scripts yet.
    Now I have couple houndred svgs coming in per day,
    I would like to have a script that opens every svg one by one in the selected directory and add them to a pdf
    as pages of the same size and than save it.
    Is this possible? How many files I could put in 1 pdf this way?
    I'm using Illustrator CS5 on Win7 x64.
    Thanks in advance.
    Istvan

    I think there is a 100 file limit on artboards ( not tested ) but the size would also affect that… You can't straight place *.svg but you can make group from them would that do you?
    #target Illustrator
    function filesToArtboards() {
              // My function variables…
              var doc, fileList, i, inFolder, mm, svgFile;
              // Get the user to select a folder
              inFolder = Folder.selectDialog( 'Please choose your Folder of files to place…' );
              // Check they ain't cancelled
              if ( inFolder != null ) {
                        // Gets just the SVG files…
                        fileList = inFolder.getFiles( /\.svg$/i );
                        // Make sure it has AI files in it…
                        if ( fileList.length > 0 ) {
                                  mm = 2.83464567 // Metric MM converter…
                                  // Set the script to work with artboard rulers
                                  app.coordinateSystem =
                                  CoordinateSystem.ARTBOARDCOORDINATESYSTEM;
                                  // Add new multi-page document
                                  doc = app.documents.add(
                                             DocumentColorSpace.RGB,
                                             width = 148.5*mm,
                                             height = 210*mm,
                                             numArtboards = fileList.length, // The number of SVG files
                                             DocumentArtboardLayout.GridByCol,
                                             artboardSpacing = 20*mm,
                                             artboardRowsOrCols = Math.round( Math.sqrt( fileList.length ) )
                                  // Loop thru the counter
                                  for ( i = 0; i < fileList.length; i++ ) {
                                            // Set the active artboard rulers based on this 
                                            doc.artboards.setActiveArtboardIndex( i );
                                            // Create group from SVG
                                            svgFile = doc.groupItems.createFromFile( fileList[i] );
                                            // Move relative to this artboards rulers
                                            // Top Left
                                            sgvFile.position = [ 0, 0 ];
    filesToArtboards();

  • Exporting Specific Artboards into .PDF

    I would like to know if it is possible to export only specific artboards from a CS4 .ai file as a .pdf like you can select them for print. I can't figure out how or find any info on that subject. (ie: I want to export artboards 2 and 4 in .pdf format for customer proof.)

    While saving as pdf, in the Save dialog, choose the Range option & input: 2,4.

  • How to keep the save-button active all the time?

    Hi!
    I'm using mobile sales 4.0.
    On a tile i've only fixed questions and combo boxes with yes and no ...
    When i write manually a "yes" in the combo box field the save button is active - When i use the combo box with a mouse click the save-button isn't active.
    What are the settings i've to do to keep the save-button active all the time?
    Thanks a lot in advance.
    Best regards,
    Ingo

    Hi Ingo,
    If your combobox is a bound control, then when you change a value in it, the save button should be enabled. Strange. But anyway, you can do this.
    In the <b>combobox_OnValueChanged2</b> event, make a call to makeDirty method in the tile:
    If boundAttributeChanged Then
         <b>anchorthatyourcombotiedto</b>.bo.MakeDirty True
    End If
    This will make the Save button enabled.
    Regards, Vadim.

  • File Save As Other Reader Extended PDF Enable Commenting & Measuring GRAYED OUT

    I have an PDF form created in Adobe LiveCycle Designer ES 10.0.
    When I open in Reader, All the "Sign" options are grayed out.
    Under "Properties" Signing is allowed but Commenting is not.
    From all I have seen, I hope that allowing Commenting will allow me to use the sign features.
    The only solution I'm finding on the internet is below:
    File > Save As Other > Reader Extended PDF > Enable Commenting & Measuring
    It is grayed out in my (latest version of) Acrobat pro.
    **Is there a way to make this option available?**
    **Will this even solve my problem?**
    **Is it possible that it is impossible to use these features on this document?**
    At this point, I've spent about two and a half hours on this issue and haven't been able to find a solution. Very frustrated.
    Thanks.

    Thanks. I'm not an IT person and needed that lead.
    In the end, I just printed to Adobe PDF and then was able to use the commenting options (once I had flattened it). For those who might come across this - this is one of the only ways to flatten a XFA PDF.

  • HP 8500A saves scans as v1.3 PDF. I need version 1.4 or above.

    The scanner on an HP 8500A, product number CM755A, scans and saves as a PDF to a network drive.
    It works well, but in the properties of the saved PDF show it is Version 1.3
    We need to e-mail the scanned image to customers including some who can only read PDFs version 1.4 or above
    We have a workaround of printing the saved PDF using CutePDF or similar, which saves the new PDF as version 1.4
    This can then be emailed to our customers who can read it, no problem.
    But as this is a hassle, and we do not know which customers might be affected, I need to update the scanner to save as a v1.4+ PDF. I tried updating the firmware, but it tells me that it is already up-to-date.
    Is there any way to fix this?
    Thanks for your help.
    Andrew

    I have the latest Adobe reader
    Adobe Reader cannot create a PDF (even from a scan).
    Acrobat (Standard or Pro) is required for that.
    Even with Acrobat the actual "scan" and image output is a process that is exclusive to the scanner and its software.
    The scanner/scanner software image output file is handed off to Acrobat for conversion to PDF.
    Not having Acrobat means that the PDF created is coming from software bundled with the scanner/scanner software.
    That a version 1.3 (Acrobat 4) PDF is created indicates the bundled stuff is, well... "old" .
    By design Acrobat creates/saves a PDF to a PDF version that is "one back".
    Acrobat Pro has the ability to process a given PDF to be compatible with different PDF versions.
    (e.g., the Optimizer facility or Preflights)
    If it is important that you have a PDF created to a newer version you may want to consider obtaining Acrobat or updating whatever was bundled with your scanner.
    Be well...

  • Cannot Save Word files as a PDF in Office 2013 with Office customization tool

    Hello
    I'm deploying office 2013 as a part of a post clone task.  Using the customization tool I created an msp with the full installation (without outlook,Link, or skydrive) I noticed that I cannot save or export files as PDF files.  If I do a manual
    install (without MSP) I can save files as pdf.  I can't find anywhere in the customization tool that allows me to choose different "save as" file types. In office 2010 I used to be able to save word files as PDF files.  Any ideas would
    be greatly appreciated.
    Charles

    Hi,
    In regarding the issue, could you give me more information? Did you test to install the Office 2013 by using MSP and manual installation in the same computer? Did the other Office suits can not save files as pdf?
    Let's do some test to narrow down the issue:
    If you use the only one computer to test, please export a new MSP file include all the suits and use the all the default setting. Then we follow the
    link to deploy again.
    If the issue still exists, please try to change a computer, and update Adobe programs to install the new MSP file to test.
    If you get some error message when you save as pdf through Word, please upload, I'll do more deeply research.
    Regards,
    George Zhao
    TechNet Community Support

  • Can you save print settings with a PDF?

    I have an 8.5"x14" PDF. Is there anyway to save default print settings with this PDF so if a user opens it on their machine it defaults to printing to 8.5"x14" paper? Right now it always defaults to the standard 8.5"x11". I'm not sure this can be done because it seems like more of a specific users machine thing. I don't think you can save print settings with a PDF can you?
    Thanks!

    The "auto-formatting" of a hardcopy print format is generally the realm of the output device, in this case the printer. Printer software gereally includes an auto-format feature that selects the proper bin. For those who only have a "letter" tray, it usually asks to feed the right format manually, or switch trays. This is not a PDF feature but an output device feature.
    Hope this helps.

  • How do I save a document as a PDF file instead of an HTML?

    I just installed Acrobat XI on my Windows 7 laptop. When I save a file as a PDF, it saves it as an HTML PDF, and will only open in the web browser. I would prefer to simply save it as a PDF file.

    It was a Word document.
    Robert A. Cooper, MPA, NREMT-P
    Director
    Transylvania County EMS
    155 Public Safety Way
    Brevard, NC 28712
    (828) 884-3108 Ext. 6
    Fax (828) 862-8925
    Cell (828) 553-9794
    [email protected]<mailto:[email protected]>
    Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential, proprietary, and/or privileged information protected by law. If you are not the intended recipient, you may not use, copy, or distribute this e-mail message or its attachments. If you believe you have received this e-mail message in error, please contact the sender by reply e-mail and telephone immediately and destroy all copies of the original message.

Maybe you are looking for

  • Data is not getting updated in CRM

    HI experts, I am updating the new address and postal codes in ISU.And now if I check these address for buisness partner in CRM. Its not getting updated. why this is happening? Is there any BDOC used in this case then how we can check that BDOC? Thank

  • Are Smart HUD options available in Dreamweaver CS6 Version 12 Build 5861

    Have just upgraded to Dreamweaver CS6 and cannot find the Smart HUD options. Are the Smart HUD options available in Dreamweaver CS6 Version 12.0 Build 5861.

  • Created partition without bootcamp, now i can't delete it

    Hi Everyone, I was trying to install Windows 8 on my Late 2011 MBP and it was not possible with Bootcamp. I tried it and got an interesting error like 'No bootable device...'. Then i decided to try to install Windows 8 without Bootcamp. Created a par

  • Mail usability issue -- message list positioning

    I'm loving the iPad, but noticed a slight usability issue while reading my email today. Would be great if Apple would consider changing it in future updates. Whenever I open the mail app, the right pane shows the most recent message I had open last t

  • Eyedropper tool does not copy all attributes

    Illustrator CS2 with Windows XP (SP2) Every document I've checked says that AI CS2's eyedropper tool will copy all appearance attributes. Yet it fails to copy the Align Stroke attribute. It's not given as an option on preferences so I haven't inadver