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.

Similar Messages

  • 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.

  • 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

  • Save only the bounding box region of image as png?

    Hi,
    I'd like to save each layer's item as png.
    If possible, i'd like save only the bounding box of image(of an item), and the corresponding bounding box's origin/size info(relative to artboard's origin) somewhere as text file.
    To do this,
    I need to be able to get a bounding box of an item.
    and possibly artboard's origin. (because I'm not sure where a bounding box's coordinate's origin is).
    Thank you in advance

    If I understand you correctly you have one table with a bunch of yes/no values (SA, SC, SS, etc.).  Then for each record in that table you want to output a string listing all the fields from the first table which = yes (i.e are checked).  Perhaps
    the following code would get you started:
    Sub JimNeal()
        Dim strProcedure_Value As String
        Dim rst As DAO.Recordset
        Dim rstOut As DAO.Recordset
        Set rst = DBEngine(0)(0).OpenRecordset("TableWithCheckboxes")
        Set rstOut = DBEngine(0)(0).OpenRecordset("OutputTable")
        Do Until rst.EOF
            strProcedure_Value = ""
            If rst!SA Then strProcedure_Value = strProcedure_Value & "Surface Area,"
            If rst!SC Then strProcedure_Value = strProcedure_Value & "Surface Contour,"
            '... etc
            If rst!SS Then strProcedure_Value = strProcedure_Value & "Steep Slope,"
            rst.MoveNext
            ' Strip off final comma
            If Len(strProcedure_Value) > 0 Then strProcedure_Value = Left(strProcedure_Value, Len(strProcedure_Value) - 1)
            ' Output the string to your output table
            rstOut.AddNew
            rstOut!Procedure_Value = strProcedure_Value
            rstOut.Update
        Loop
        rst.Close
        rstOut.Close
        Set rst = Nothing
        Set rstOut = Nothing
    End Sub
    -Bruce

  • No Microsoft files listed in the settings "convert into PDF files"

    Hi, I wanted to convert different Microsoft Office files, but it doesn't work. There are no Microsoft files listed in the settings "convert into PDF files". I had the trial version of Adobe Acrobat Pro XI installed on a MAC in Windows that runs trough Parallels. Hope somebody can help. Thx

    Hi Rahul,
    many thanks for your suggestion.
    Yes, Parallels is a virtual machine on the top of MAC and I can see all files in the Windows Explorer. Also the ones I created on the MAC top with the Microsoft Office Software Word or Excel for MAC as well the ones I created earlier on a Windows PC.
    Unfortunately there is no possibility to convert files into PDF format with a click on the right mouse. And Adobe also doesn't open Word documents because it doesn't support this format.
    But nonetheless it wouldn't be a solution that I prefer to convert in adavance every single file in a PDF format. I need to create a PDF package from different formats.
    I assume this issue has to do something with MAC or Parallels, because this function of the Adobe Versions Acrobat 8 Pro and XI Pro work well on a Windows PC. I just don't understand why there are no Microsoft Office file formats listed in the Adobe settings. This settings also can't be changed. I tried to find out but couldn't find any hint for this problem thus I'm a bit at a loss... Maybe you have another idea?
    Regards
    Ly

  • To get the table data into a file in pl/sql developer

    Hi
    i have table with 90k rows, i want to get the table data into a file like excel....
    i executed the select statement it shows only 5k rows because of buffer problem.
    can u please help me any alternative way to get the table data into a file.
    using cursors like that

    Really? excel for 90K rows :)
    face/desk/floor/"Hi and sorry neighbours below, it's me again"
    Err, I see you point, thanks Dang, I completely missed the 90k recs part, I must be getting old or modern ;)
    @Ramanjaneyulu,
    can u please help me any alternative way to get the table data into a file.You can always dump a query to a file, check these:
    http://tkyte.blogspot.com/2009/10/httpasktomoraclecomtkyteflat.html
    How to create Excel file (scroll down when necessary)
    http://forums.oracle.com/forums/search.jspa?threadID=&q=export+to+excel&objID=f137&dateRange=all&userID=&numResults=15&rankBy=10001
    Depending on your database version ( the result of: select * from v$version; ) you might have some other options.

  • Java.io.NotSerializableException when overwrite the JTable data into .txt file

    hi everyone
    this is my first time to get help from sun forums
    i had java.io.NotSerializableException: java.lang.reflect.Constructor error when overwrite the JTable data into .txt file.
    At the beginning, the code will be generate successfully and the jtable will be showing out with the data that been save in the studio1.txt previously,
    but after i edit the data at the JTable, and when i trying to click the save button, the error had been showing out and i cannot succeed to save the JTable with the latest data.
    After this error, the code can't be run again and i had to copy the studio1.txt again to let the code run 1 more time.
    I hope i can get any solution at here and this will be very useful for me.
    the following is my code...some of it i create it with the GUI netbean
    but i dunno how to attach my .txt file with this forum
    did anyone need the .txt file?
    this is the code that suspect maybe some error here
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
    String filename = "studio1.txt";
              try {
                  FileOutputStream fos = new FileOutputStream(new File(filename));
                  ObjectOutputStream oos = new ObjectOutputStream(fos);
                   oos.writeObject(jTable2);
                   oos.close();
              catch(IOException e) {
                   System.out.println("Problem creating table file: " + e);
                   return;
              System.out.println("JTable correctly saved to file " + filename);
    }the full code will be at the next msg

    this is the part 1 of the code
    this is the full code...i had /*....*/ some of it to make it easier for reading
    package gui;
    import javax.swing.*;
    import java.io.*;
    public class timetables extends javax.swing.JFrame {
        public timetables() {
            initComponents();
        @SuppressWarnings("unchecked")
        private void initComponents() {
            jDialog1 = new javax.swing.JDialog();
            buttonGroup1 = new javax.swing.ButtonGroup();
            buttonGroup2 = new javax.swing.ButtonGroup();
            buttonGroup3 = new javax.swing.ButtonGroup();
            buttonGroup4 = new javax.swing.ButtonGroup();
            jTextField1 = new javax.swing.JTextField();
            jLayeredPane1 = new javax.swing.JLayeredPane();
            jLabel6 = new javax.swing.JLabel();
            jTabbedPane1 = new javax.swing.JTabbedPane();
            jScrollPane3 = new javax.swing.JScrollPane();
            jTable2 = new javax.swing.JTable();
            jScrollPane4 = new javax.swing.JScrollPane();
            jTable3 = new javax.swing.JTable();
            jButton1 = new javax.swing.JButton();
            jButton2 = new javax.swing.JButton();
    /*       org.jdesktop.layout.GroupLayout jDialog1Layout = new org.jdesktop.layout.GroupLayout(jDialog1.getContentPane());
            jDialog1.getContentPane().setLayout(jDialog1Layout);
            jDialog1Layout.setHorizontalGroup(
                jDialog1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(0, 400, Short.MAX_VALUE)
            jDialog1Layout.setVerticalGroup(
                jDialog1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(0, 300, Short.MAX_VALUE)
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            jLayeredPane1.add(jLabel6, javax.swing.JLayeredPane.DEFAULT_LAYER);
            String filename1 = "studio1.txt";
            try {
                   ObjectInputStream ois = new ObjectInputStream(new FileInputStream(filename1));
                   jTable2 = (JTable) ois.readObject();
                   System.out.println("reading for " + filename1);
              catch(Exception e) {
                   System.out.println("Problem reading back table from file: " + filename1);
                   return;
            try {
                   ObjectInputStream ois = new ObjectInputStream(new FileInputStream(filename1));
                   jTable3 = (JTable) ois.readObject();
                   System.out.println("reading for " + filename1);
              catch(Exception e) {
                   System.out.println("Problem reading back table from file: " + filename1);
                   return;
            jTable2.setRowHeight(20);
            jTable3.setRowHeight(20);
            jScrollPane3.setViewportView(jTable2);
            jScrollPane4.setViewportView(jTable3);
            jTable2.getColumnModel().getColumn(4).setResizable(false);
            jTable3.getColumnModel().getColumn(4).setResizable(false);
            jTabbedPane1.addTab("STUDIO 1", jScrollPane3);
            jTabbedPane1.addTab("STUDIO 2", jScrollPane4);
            jTextField1.setText("again n again");
            jLabel6.setText("jLabel5");
            jLabel6.setBounds(0, 0, -1, -1);
            jButton2.setText("jButton2");
            jButton1.setText("jButton1");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
          

  • Write the ldapsearch results into a file

    We are using ldapsearch from the command line and want to write the search results into a file. How can we do this?

    What OS are you using - If Unix / Linux then use the standard redirection > or >> facility.

  • Does adobe cloud synchronize only the modifications of a pdf file?

    I have a large PDF file in adobe cloud on my iPad. Whenever I annotate it, will the entire file be reuploaded (consuming lots of bandwidth) or only the annotations are (consuming very minimal bandwidth). Please let me know!

    I was able to sync the annotations I made on an iPad to the PC just a few minutes ago. Though the annotations were not visible when I viewed the file on the browser in acrobat.com, when downloaded, it had the annotations, indicating that syncing does occur. Could you please check again!
    I will be much grateful if you have an answer to my question! Thank you!

  • How can I extract only the audio as an aiff file?

    Using a Sony DSC-N2 Cybershot Camera I recorded video that was saved as “MOV01606.MPG”. The video plays back with sound in Quicktime Pro and iTunes but how can I extract only the audio as an aiff file?

    Use MPEG Streamclip (free) to convert your .mpg files to QuickTime formats.
    QuickTime can't extract audio from muxed file formats.

  • I would like to copy all the songs from one Ipod into another. All the songs are into my Itunes account, I tried to drag and drop the songs from the old Ipod to the new one but it doesn't work. Is there a way to do it ?

    Hello everybody,
    I would like to copy all the songs from one Ipod into another. All the songs are into my Itunes account, I tried to drag and drop the songs from the old Ipod to the new one but it doesn't work. Is there a way to do it ?
    I share one Itunes account with other people from my family and one person would like to keep the same songs on the new Ipod as the ones which were on the old one.
    Thanks in advance for your answer.
    Yan

    Hello Chris,
    Thanks for your answer. I was hoping for an easier answer. Too bad there is no drag and drop solution, it would have been much easier.
    Thanks for answering so fast.
    Bye.
    Yan

  • How can I save ONLY the bookmarks and extensions

    I am about to do a clean reinstall of Firefox. I want to save ONLY the Bookmarks and Extensions and NOTHING ELSE from the Firefox Profile. How can I do this please?
    Thank you,

    Both answers combined to help solve the problem. It would be good if more than one answer can be selected as "Chosen Solutions", because this situation occurs often in forums.
    Thank you to both of you!
    Kind regards.

  • Only the constants are showing up in the target values.

    Hi Guys,
    Please help me about my problem in message mapping..
    Im quite knew in XI version 7.0.
    How come Only the constants are showing up in the target values. my constant values are only doc_type and partn_role.
    The rest are data from sql. How can I solve this..Please help.
    This is the result of my test tab
    Left side - sender
    <?xml version="1.0" encoding="utf-8"?>
    <ns:MT_TRAVEL_SENDER xmlns:ns="HTTP://TRAVEL.COM/TRANSACTIONS">
       <row>
          <DOC_TYPE>ZTRV</DOC_TYPE>
          <SALES_ORG>4000</SALES_ORG>
          <DISTR_CHAN>40</DISTR_CHAN>
          <DIVISION>41</DIVISION>
          <SALES_GRP>411</SALES_GRP>
          <SALES_OFF>4101</SALES_OFF>
          <PURCH_DATE>2008-10-24</PURCH_DATE>
          <PMNTTRMS>Z015</PMNTTRMS>
          <PURCH_NO_C>AVADIUDS  </PURCH_NO_C>
          <PARTN_ROLE>AG</PARTN_ROLE>
          <PARTN_NUMB>0001100074</PARTN_NUMB>
          <INSERTED>1</INSERTED>
       </row>
    </ns:MT_TRAVEL_SENDER>
    right side -test result under receiver
    <?xml version="1.0" encoding="UTF-8"?>
    <ns1:BAPI_SALESORDER_CREATEFROMDAT2 xmlns:ns1="urn:sap-com:document:sap:rfc:functions">
       <ORDER_HEADER_IN>
          <DOC_TYPE>ZTRV</DOC_TYPE>
       </ORDER_HEADER_IN>
       <ORDER_HEADER_INX>
          <UPDATEFLAG>I</UPDATEFLAG>
          <DOC_TYPE>X</DOC_TYPE>
          <SALES_ORG>X</SALES_ORG>
          <DISTR_CHAN>X</DISTR_CHAN>
          <DIVISION>X</DIVISION>
          <SALES_GRP>X</SALES_GRP>
          <SALES_OFF>X</SALES_OFF>
          <PURCH_DATE>X</PURCH_DATE>
          <PMNTTRMS>X</PMNTTRMS>
          <PURCH_NO_C>X</PURCH_NO_C>
       </ORDER_HEADER_INX>
       <ORDER_PARTNERS>
          <item>
             <PARTN_ROLE>AG</PARTN_ROLE>
          </item>
       </ORDER_PARTNERS>
    </ns1:BAPI_SALESORDER_CREATEFROMDAT2>

    Hi leelaratnam morampudi ,
    How can I check if im getting the data in sql? I think it get the data but dont pass the value in bapi
    this is the test result in sender
    <DOC_TYPE>ZTRV</DOC_TYPE>
    <SALES_ORG>4000</SALES_ORG>
    <DISTR_CHAN>40</DISTR_CHAN>
    <DIVISION>41</DIVISION>
    <SALES_GRP>411</SALES_GRP>
    <SALES_OFF>4101</SALES_OFF>
    <PURCH_DATE>2008-10-24</PURCH_DATE>
    <PMNTTRMS>Z015</PMNTTRMS>
    <PURCH_NO_C>AVADIUDS  </PURCH_NO_C>
    <PARTN_ROLE>AG</PARTN_ROLE>
    <PARTN_NUMB>0001100074</PARTN_NUMB>
    <INSERTED>1</INSERTED>

  • How to download the script data into pdf file

    how to download the script data into pdf file
    i have one option to download the script data to pdf file --->rstxpdft4 program.
    i have one doubt how to use this proogram.or any function module to download the script data to pdf file.
    Thanks and regards,
    Sri.

    Hi      Sri Sai,
    I know one method to convert the sapscript to pdf file :
    first generate a Spool Request for the required Sapscript
    then goto transaction SP01 and copy the generated Spool Request number
    now execute the SAP report RSTXPDFT4
    here enter the copied Spool request number and the target directory into the parameters
    execute the report
    required pdf file will be generated into the target directory
    i hope it will help you out
    Please refer this simple program:
    http://www.sapdevelopment.co.uk/reporting/rep_spooltopdf.htm
    Reward points if found helpful....
    Cheers,
    Eshwar.

  • I loaded my ipad photos from camera and all the pictures sorted by date.  Next, I did a sync with my computer and the photos were all reorganized into IMPRT folders an out of date sequence.  Any idea how to put the photos back into date files?

    I loaded my ipad photos from camera and all the pictures sorted by date.  I later sync my ipad with my computer and the photos were all reorganized into IMPRT folders an out of date sequence.  Any idea how to put the photos back into date files other than reloading all of them from camera?

    What version of iPhoto?
    Select one and rotate it. Then rotate it back. Does that make it appear? 
    A much better work flow is the keep the photos after importing.  Check the success the import, wait for at least one successful backup cycle then use you camera's format command to reformat the card
    LN

Maybe you are looking for

  • Letter Of Credit For Purchase

    Can someone provide me the configuration documents for lettter of credit of purchase. Thanks in advance.

  • AR - Bill of Exchange Payment Request

    Hi Guys, I would like to know if there is any way for this situation. When I recieved the  bank return file some documents were rejected but the Bill of Exchange Payment Request continues fill up. Is there any way that we can configurate to delete th

  • Install OBIEE 11.1.1.5 in Solaris Machine

    Hi all, Can we install OBIEE 11.1.1.5 in solaris machine. Is there any link for the steps for installation? Can anybody help on this? Thanks in advance.

  • Auto batch determination problem

    Sir i had customized tcode MIGO such that it is taking batch no. automatically, but in tcode SNUM i have default no. range as 0000000001 to 999999999 and i want it in format SR-I-0001 for raw material and SP-I-0001 for packing material .So how to set

  • Snapshot Schedule

    Hey, I have created several snapshots with 'Start With' set to sysdate and next set to sysdate + 1 and I was just wondering what would happen if for some reason the materialized wasn't updated on a particular day, would the schedule resume with the u