Save multiple selections as separate files

Hi. I've got a psd with two layers. The background layer is a photo, and the other one is transparent except for several rectangular areas. What I want is use that layer as a mask, and save each area from the photo in a single file.
I have to do the same process with a lot of files, so an automatic or semiautomatic way would be perfect.
I thought that the first pass was making a multiple selection of the areas. And then, save each one in a file. I don't know if it is possible.
Any ideas are welcome. Thanks.

thanks,
finally with copy&paste and filter channels, i got it.
i needed it for a color-course to show the two color systems.
thanks

Similar Messages

  • How can I save multiple emails as separate files with 1 export?

    I need to save hundreds of emails as separate files.  If I select all of the emails, then export as PDF, it doesn't save with their Subject titles, just numbers.  If I try prints, save as pdf, it consolidates them all into 1 file.  If I try to save as txt files, it only saves the first message.  If I try dragging and dropping the emails into a folder, it won't let me (only one at a time).  Any help would be greatly appreciated.

    I believe there is a third party app that saves email(s) as pdf's:
    http://www.sperrysoftware.com/Outlook/save-as-pdf.asp?src=googleadwords&gclid=CM aBn9vzu7gCFTMRtAodtjIADg&utm_expid=330330-7.0tmU05zdRNG5j8Zt1v22Dw.0&utm_referre r=http%3A%2F%2Fwww.google.com%2Faclk%3Fsa%3Dl%26ai%3DCYx7OWF_pUbOzJ8GehQewmIBoqo uemQKK4YCxIZPC-aA8CAAQAVDZ7NvS_v____8BYPuh64LoCaAB3rW3_wPIAQGqBChP0BuhRoSOlnh9eX 58SwjbgTHsbaVreSndBi1MKrzUffPlI2monV7nuAYBgAeKykg%26sig%3DAOD64_3QUxRWH7oaxXl2vN SwQqLI_cFtyw%26ved%3D0CDMQ0Qw%26adurl%3Dhttp%3A%2F%2Fwww.SperrySoftware.com%2FOu tlook%2Fsave-as-pdf.asp%253Fsrc%253Dgoogleadwords%26rct%3Dj%26q%3Dsave%2520email s%2520to%2520df

  • File Dialog (Details View and Multiple Selections for View File Type)

    I would like to use the generic windows dialog box found in the toolbar under:
    File I/O/Advanced File Functions/File Dialog
    What I would like to do is have multiple selections for the file type, for example one menu selection is *.txt, another is *.rtf, another is *.csv, etc. Listing a single type is straightforward.
    Also does anyone know if there is a way to have the dialog open in the DETAILS view automatically?
    Thanks for any help!
    Carlton

    Hi,
    You can do it in following ways:
    1. Write in pattern input the string "*.txt; *.csv; *.rtf". This will show to the user only files with this extensions in the dialog.
    2. Another way is to create ring or menu where user could specify the extension. Depending on this extension you could wire the appropriate string to the pattern input of "File Dialog.vi"
    I have made an example.
    Good luck.
    Oleg Chutko.
    Attachments:
    fileopen.vi ‏42 KB

  • How do I save multiple songs as one file?

    How do I save multiple songs as one file?

    Mhoopes wrote:
    How do I save multiple songs as one file?
    There are two ways:
    1.  Put the individual song files into a folder, and then Zip the folder.  This creates a single .zip file.  (Note however, that a .zip file is not playable in a normal player: it is just a "holder" for the song files.)
    2.  Use an audio editor such as Audacity to concatenate the individual song files into a single song file.  This creates a single file can be played in a normal player such as iTunes.
    Technique #2 is the one normally used to create a continuous mix.

  • Multiple Selection in XML files

    i have been having issue getting this code to work for multiple files. it does work for one xml file but i want it to work for multiple files can anybody help out
    here is the code:
    import java.sql.*;
    import java.awt.*;
    import javax.swing.*;   
    import java.awt.event.*;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import org.w3c.dom.Document;
    import org.w3c.dom.NodeList;
    import org.w3c.dom.Node;
    import org.w3c.dom.Element;
    import java.io.*;
    import java.util.*;
    import java.text.*;
    public class XMLExtractorPanel extends JPanel implements ActionListener
        JButton button, cButton, exitButton;
        JTextField field;
        JPanel buttonFieldPanel;
        Connection con;
        PreparedStatement stat;
        JPanel imagePanel;
        JPanel exitPanel;
        java.sql.Date sqlDate;
        public XMLExtractorPanel()
            this.setLayout(new BorderLayout());
            imagePanel = new JPanel();
            JLabel consult = new JLabel();
            consult.setIcon(new ImageIcon("images/t.jpg"));
            JLabel unity = new JLabel();
            unity.setIcon(new ImageIcon("images/y.jpg"));
            imagePanel.add(unity);
            imagePanel.add(consult);
            add(imagePanel, BorderLayout.PAGE_START);
            buttonFieldPanel = new JPanel();
            button = new JButton("");
            field = new JTextField(10);
            field.setBounds(30, 50, 200, 25);
            button.setBounds(240, 50, 100, 25);
            buttonFieldPanel.add(field);
            buttonFieldPanel.add(button);
            add(buttonFieldPanel, BorderLayout.CENTER);
            button.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    Chooser panel = new Chooser();
                    field.setText(panel.fileName);
            JPanel cpanel = new JPanel();
            cButton = new JButton("CLICK TO SAVE DATA");
            cButton.addActionListener(this);
            cpanel.add(cButton);
            add(cpanel, BorderLayout.CENTER);
            exitPanel = new JPanel();
            exitButton = new JButton("EXIT");
            exitButton.setBounds(240, 50, 100, 25);
            exitButton.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    System.exit(0);
            exitPanel.add(exitButton);
            add(exitPanel, BorderLayout.PAGE_END);
        public void actionPerformed(ActionEvent e)
            cButton = (JButton)e.getSource();    
                getOperation();
        public void getOperation()
            Chooser panel = new Chooser();
                try
                ArrayList timeStamp = new ArrayList();
                     ArrayList Y = new ArrayList();
                 File fXmlFile = new File(panel.fileName);
                DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
                DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
                Document doc = dBuilder.parse(fXmlFile);
                doc.getDocumentElement().normalize();
                BufferedReader rd = new BufferedReader(new FileReader(fXmlFile));
                        String fileUpload = "";
                do
                    field.setText(fileUpload);
                    System.out.println("Root element :" + doc.getDocumentElement().getNodeName());
                    NodeList nList = doc.getElementsByTagName("Item");
                    System.out.println("----------------------------");
                    for (int temp = 0; temp < nList.getLength(); temp++)
                        Node nNode = nList.item(temp);
                        System.out.println("\nCurrent Element :" + nNode.getNodeName());
                        if (nNode.getNodeType() == Node.ELEMENT_NODE)
                             Calendar cal = Calendar.getInstance();
                            Format formatter = new SimpleDateFormat("dd/MM/yyyy");
                            String creationDate = formatter.format(new java.sql.Date(cal.getTimeInMillis()));
                            Element eElement = (Element) nNode;
                            double transCode =  Double.parseDouble(eElement.getAttribute("TransCode"));
                            double serialNo = Double.parseDouble(eElement.getAttribute("SerialNo"));
                            double amount = Double.parseDouble(eElement.getAttribute("Amount"));
                            Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                                    Connection con = DriverManager.getConnection("jdbc:odbc:DataSource", "", "");
                            stat = con.prepareStatement("INSERT INTO ExcelTable(TransCode, SerialNo, Amount) VALUES(?,?,?);");
                            stat.setDouble(4, transCode);
                            stat.setDouble(5, serialNo);
                            stat.setDouble(6, amount);
                            stat.executeUpdate();
                            con.close();
                    //JOptionPane.showMessageDialog(null, "Data Recorded!", "Data Entry", JOptionPane.INFORMATION_MESSAGE);
                }while((fileUpload = rd.readLine()) != null); JOptionPane.showMessageDialog(null, "Data Recorded!", "Data Entry", JOptionPane.INFORMATION_MESSAGE);
                catch(SQLException ex)
                    System.out.println("SQLException");
                    ex.printStackTrace();
                    JOptionPane.showMessageDialog(null, "Recorded Altered!", "Data Entry", JOptionPane.WARNING_MESSAGE);
                catch(NumberFormatException ex)
                    System.out.println("NumberFormatException");
                    System.out.println(ex);
                    JOptionPane.showMessageDialog(null, "Recorded Altered!", "Data Entry", JOptionPane.WARNING_MESSAGE);
                catch(Exception e)   
                    System.out.println("Error1 "+ e);
                    JOptionPane.showMessageDialog(null, "Cannot Record Data!", "Data Entry", JOptionPane.WARNING_MESSAGE);
                if(con != null)
                    try
                        con.close();
                    catch(SQLException sqle)
                        System.err.println(sqle.getMessage());
                        JOptionPane.showMessageDialog(null, "Cannot Record Data!", "Data Entry", JOptionPane.WARNING_MESSAGE);
    class Chooser extends JPanel
        JFileChooser chooser;
        String fileName;
        public Chooser()
            chooser = new JFileChooser();
            chooser.setMultiSelectionEnabled(true);
            int r = chooser.showOpenDialog(new JFrame());
            if (r == JFileChooser.APPROVE_OPTION)
                fileName = chooser.getSelectedFile().getPath();

    Hi OCMF!
    Thanks for your post, at this time you're only able to select
    one document at a time within the my files section, which will
    confine your deletion to individual steps.
    We plan to improve the usability and functionality during
    this beta phase, so keep your eyes peeled for coming updates!
    Otherwise, thanks for being a part of Acrobat.com!
    Cheers,
    Pete

  • Can't bounce, save or select items from "file menu" HELP!!!!!!!!

    Hi Hope there is someone experienced enough to help!!!!
    I am having a major problem with Logic Pro 7 ( 7.1.1) and I mean major.…
    and to be truthful I have posed this question before on here without resolving the issue although I have tried absolutely every suggestion and idea but am afraid that it is absolutely no different, but thank you to all who have tried greatly appreciated.
    Here is the problem...
    About six months ago a suddenly started to experience a weird problem.
    This is the issue,
    After recording something into Logic with a software instrument, incidentally this happens with both Apple and external plug-ins, everything records and seems to be working just fine, that is until I decide to render / bounce / save the track / tracks or indeed try to do anything from the “FILE” menu when I immediately trigger the time wheel to spins for ever forcing me to click the apple icon and select “force quit” that always reads Logic Pro ( not responding )
    I have ran Disk Utility and did not find any problems with both the internal HD and the external and both passed with no problems. Secondly I have removed Logic compliantly ( many times ) from my computer and reinstalled is once again, but yet again with no successes.
    However I do have a niggling question and a curious message when I try to reinstall Logic that rather perplexes me that read something as follows.
    You are choosing to install an earlier version of Logic the the one installed, which seems to be implying that I have not properly or filly removed the older Logic version before reinstalling the so called replacement. I am suspicious that the message my be compering my hard copy of Logic Pro 7 against the updated version that I download as an Apple download but no to sure, anyway I was under the impression that I was remove everything if a scoop Logic into the trash, or is something going on that I don’t know about?
    Anyway can you suggest where the problem is and hopefully how I can resolve the issue.…
    Thank you for you time in reading my problem and I truly hope you can assist me, THANK YOU.
    Dave
    My Computer specification is
    Power Mac G5
    OS X 10.4.8
    Dual 2.3 processor
    Hard drive 400GB
    Memory 2.5 GB
    External sound card and Midi interface - Focusrite saffire- All driver up to date and incidentally the problem is sill their whether Focusrite is plugged in or not.
    Power Mac G5 - Dual 2.3 - Memory 2.5 GB   Mac OS X (10.4.7)   Midi interface -focusrite saffire

    If Jim's suggestion doesn't fix it, then read this
    http://docs.info.apple.com/article.html?artnum=300659
    and remove all the files shown there.
    You are choosing to install an earlier version of Logic the the one installed, which seems to be implying that I have not properly or filly removed the older Logic version before reinstalling the so called replacement.
    That might be the key.
    It might help if you delete all the Logic files from the receipts folder with a version number ≥ than the version number you're trying to install from disks.
    /Library/Receipts/

  • Need Script to save multiple FrameMaker 9.0 files as .mif

    I am using FrameMaker 9.0 on a PC.
    I have a number of UNIX scripts that work on .mif files.
    With the older versions of FrameMaker, I was able to run FrameMaker on Unix and use the batch capabilities to create a script that opened the book and saved each file as a .mif file.
    FrameMaker 9.0 is not supported on Unix, so I can't do that any more.
    I have found references to scripts that will do the conversion to mif on the PC, but they all talk about older versions of FrameMaker.
    What can I use to automatically convert all the files in a book to mif files?
    Thanks,
    Tim Walker

    There are several plug-ins to save .mif and back to .fm
    TOOLBOX for FrameMaker 9 (www.toolboxforme.com) 'FM <> MIF' allows you to generate a complete book in MIF format out of a FrameMaker book in binary format and vice versa: the book and all book components are saved in the respective format.
    TOOLBOX for FrameMaker 9 'Book Transfer (FM<>MIF)' allows you to move a book with all components and generate all .fm files to .mif and vice versa.
    Note: FrameMaker  9 and TOOLBOX save MIF 9 or MIF 7. There is no way to save MIF 8.
    - Georg

  • Cut and paste multiple selections to separate layers?

    Say you have several items selected with a marquee.
    Something like this:
    Is there anyway, to have, in this example, all the icons cut and pasted to their own layer?

    No, there is no way to do what you want directly. Unfortunately some kind of selection has to be made, so that each item can be lifted off the original layer individually.
    You may find that a simple square marquee does the trick. This can be moved quite quickly from one object to the next. The proces of making the marquee, activating the base layer and Command J can all be automated with an Action.  You caould also modify you existing selction using lets say Quick Mask in a smilar way - a series of automated steps.

  • Can I separate the pages of one PDF file into separate files

    Is there a quick way to separate the pages of a PDF?
    For example, I want to take a 10 page PDF, separate the pages and save them as 10 separate files.
    I know I can go through and extract each page, but I need to do this with multiple documents that can be over 100 pages and to extract each page one-by-one would be extremely time consuming.

    See Thom Parker's latest http://www.acrobatusers.com/tech_corners/javascript_corner/index.php JavaScript Corner http://www.acrobatusers.com/tutorials/2008/04/js_extracting_pages/ Extracting pages from a PDF with Acrobat JavaScript for an example of JavaScript that can extract every 4 pages and place them in an email or new file. This code can easily be modified to extract every page.
    Or you can download http://abracadabrapdf.net/articles.php?lng=en&pg=15 AbracadabraTOOLS 2.5 to add new menu options to your copy of Acrobat that include splitting a PDF by x pages.

  • How to scan multiple photos into separate

    I have a hp envy 5660.  I often have to scan multiple photos and on my old printer it would show them as individual files on the scan page.  I can't figure out how to do that with this printer.  I want to scan multiple photos, have them save as individual phhotos so I can print them out on 4 x 6 photo paper.  Any ideas? Thanks!

    Hi @bird22557,
    Welcome to the HP Forums!
    I noticed that you are wondering how to scan multiple photos into separate files with your HP Envy 5660 printer on Windows 7. I am happy to look into this scanning issue for you!  
    I would recommend to go through this how to scan guide, Scan from Windows 7 With the Full Feature HP Software for HP Multifunction Printers, you can try with HP software or without HP software. As there are multiple ways of scanning.
    For future reference, here is your printer's user guide as well, HP ENVY 5660 e-All-in-One Printer User guides.
    Hope this helps, and thank you for posting!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • Save Multiple Artboards with web options & export to layers as separate files?

    2 questions --
    1. Is there a way to export all artboards as PNGs with the save for web options??
    2. Is there a way to export separate layers as separate files?
    Thanks
    Logan

    http://www.tbyrne.org/export-illustrator-layers-to-svg-files
    Export Illustrator Layers and/or Artboards as PNGs and PDFs | Matthew Ericson - ericson.net
    Layer Export

  • Exporting multiple clips from one sequence as separate files.

    Hello fellow editors!
    I have about 100+ video files that I want to cut into shorter clips, edit a bit and then export in a Final Cut friendly format (currently they are AVCHD mts files) to send it to my friend, who is putting the whole movie together.
    I dont want to use Final Cut for this ( I cannot, I have a windows machine) and I was hoping to work with premier CC and media encoder CC.
    There is a way of putting all clips in one sequence and then nesting each one, then you can send them to Encoder CC and it will render them as separate files - thats is just not very productive, nesting clips one by one and it takes forever for Encoder to import sequences.         
    I was wondering if there is a better workflow? I heard that Final Cut has shortcuts to do this very easily, you just click on all those clips in sequence and "batch export" them, which puts them in some place as separate, already cut files.?
    Anything? I love premier, let my feelings be justified!)

    Kevin Monahan ...
    Lucid George is right ... select one trimmed clip, File->Export->Media, you can choose whether in-out or entire clip.
    Select MORE than one clip, you get a completely different export box ...
    These two selections were "exported" from that bin created by dragging the trimmed clips from the timeline to a new bin ... I don't know what else one is supposed to do. You can't even select multiples clips and batch sub-clipping, which would at least cut the steps down.
    Neil

  • PSE4: save layers to separate files?

    Is it possible to save layers to separate files on Photoshop Elements 4? I want to create an animation, but I want each slide to have a different time. When I Save for Web and select Animation, all layers have the same timing.

    No, the only way to do this with PSE is to duplicate layers so that the same one appears longer. So for instance, let's say you have three real frames and you want the first and last ones to appear for 2 seconds and the middle one for four: make a four framed image by duping the middle frame so it's in view for twice as long.
    For anything more elaborate than that, you need a different program, I'm afraid.

  • How can I export multiple selections in a list box into a .csv file?

    Hi all, I've created a form in Acrobat X with a list box enabled for multiple selections. When I try to export the filled out form into a .csv file, only the first selection shows up. Can anyone help me figure out how to get all selections to export? Thanks!

    Thank you for your quick response!
    Once a recipient fills out the form (which has two questions with list boxes and multiple selection enabled) they send the completed form back to me. When I open the completed form, I am given the option add the completed form to a reponse file which was set up when I distributed the form. When I open the reponse file, it lists all of the responses in rows, and the values that were chosen in the form are arranged in columns. In this file, the list boxe columns have multiple values, separated by commas (which is what I'm looking for). At this point there is an option to export into a .csv file or an .xml file. If I choose the .csv file and open in excel, only the first selection shows in the list box column rather than all selections that were initially made by the responder.

  • 'No Upload Authorization' While Uploading a Text File from Multiple Select

    Hi all,
       The User is trying to upload a text file from Multiple Selection screen of a Query in BEx and it gives the error message of 'No Upload Authorization' (Error DB886).
       In 'Logon data' tab of Tcode SU01, it has 'User' for 'User Group for Authorization check' for this User.
       I could upload a text file from Multiple Selection screen with my User Id.
       An idea about this error, PLEASE ?
    Thanks,
    Venkat.

    Hi Ron,
       This User does not have the access to Tcode ST01.
       The user executed Tcode SU53 immediately following the authorization failure to see the authorization objects. The 'Authorization obj' is blank and under the Description it has 'The last Authorization check was successful' with green tick mark.
      Any further suggestions, PLEASE.
    Thanks.

Maybe you are looking for

  • Can I have two Iphones on same iCloud account?

    I use two separate Iphones on my Itunes account for easy access.  However, I would like to activate Icloud on both phones but I'm guessing each phone would need a separate acount otherwise they would just sync the same info (calanders,contacts,etc.)

  • Making a .exe In LabVIEW 8.2

    I'm trying to make a stand alone executable from a vi created in Lab VIEW 8.2. I did not create the vi in a project, but I have moved It into one. I have been unable to make a exe that works on the none Lab VIEW computer. I have Three questions 1. Do

  • Why do I have a thin blue line running down the screen?

    There is a thin blue line running vertically down my imac screen a little to the right of the centre. It disappeared for a while - i think after I tapped a certain key - but then re-appeared and will not go away. What is it? How do I get rid of it? M

  • In Mavericks it won't paste to USB and other external Storages. USB Locked

    In Mavericks it won't accept copy/paste I have a HDD capacity of 998.7GB with Available 899.64GB It says used 99,052,994,560 bytes.  My USB drive is 16GB freshly formatted and work with all other computers with copy/paste. In Mavericks I can copy/pas

  • Can't create 2nd local currency

    I would like to add 2nd local currency of leading currency. But the system show the error message as below. The currency type for an additional local currency cannot be changed for company code , since documents were already posted in this company co