Additional options (save under) economy

Often, I need to save files in different formats. But they are not enough much or manageable for an Action.

For example, I have a few open PS files and want to save as jpg, TIF, and PSD files.

I always change PSD to jpg in the menu drop-down due to the point that I need to save a copy to cause layers.

My idea would be customizable checkboxes that can be set for formats that I use most often. There is enough space for these boxes and it would mean a click instead of a simple click to open the drop-down menu, then scroll to one of many formats and by then setting options such as for example with or without layers or image quality.

to save the files to jpg/tiff/psd, you can use file-> Scripts-> Image Processor

Tags: Photoshop

Similar Questions

  • For downloads in windows 7, how can I add the option "save under" instead of simply "open" or "Save".

    Hi, can really use your help! Recently updated to Firefox. I used to click on downloads and be able to "save under". Now, I can only 'open' or 'save' When I click on 'save', all files go to the default download folder. I then have to open the Explorer, search for the folder and the file, and then cut and paste into the appropriate folder. A heavy treatment!

    Does anyone have a solution? Thank you!

    Options > general > downloads >or save files to 'Browse' [I always use Desktop], or always ask me where to save files.

  • How can I convert .wps to .doc? The option "save under" records in .doc but then opens as a .wps document!

    I need to convert all of my documents (stored in different folders on my table) to the .doc file format.

    l if I record my letters et al. as .doc, they open as .wps

    How can I get the documentation to open as .doc files?

    Hi Nick Bryant.

    You have made no changes to the computer before the broadcast took place?

    I suggest you to configure Microsoft's Word as default.

    Change default programs using Set Program Access and computer defaults
    http://Windows.Microsoft.com/en-us/Windows7/change-default-programs-using-set-program-access-and-computer-defaults

    Set Program Access and Computer Defaults: frequently asked questions
    http://Windows.Microsoft.com/en-us/Windows7/set-program-access-and-computer-defaults-frequently-asked-questions

  • Why are there no bitmap option on my menu "save under" down?

    I am using (or trying to use) Photoshop CC (14.2.1 x 64) to produce small bitmaps for a .net Micro Framework device. The memory is at a premium, so I need to produce assets from display to 16-bit RGB 565 format. I have my document set up in RGB (I tried 32 RGB and RGB 16) but when I come to "save under ' bitmap / bmp isn't one of the options available. Where is he?

    Screenshot 2014-07-25 00.54.58.pngScreenshot 2014-07-25 00.54.33.png

    You try to save an image in a still smaller than RGB 8-bit/channel format.

    Switch your document RGB 8-bit/channel and BMP format will be at your disposal.  In the PMB to save dialog box, you can choose the format reduced thanks to the [Advanced Modes] button.

    -Christmas

  • I can't "save under" all of a sudden and I need this option works in my work.

    I can't save my PDF files "save under" all of a sudden - please advise.

    Since this is a secure document, the button "save under" is probably gray because of the security settings. To see what is limited, look at the "Document Summary of Restrictions" box on the Security tab.  A password to limit the actions of a user can do with the PDF (between opening the file to make changes to the file and therefore, no "save under"). These parameters should be actively requested by a person, more generally the author, but anyone who has unlimited access to a file can apply security settings.

  • A JPEG of script "save under".

    I do work for my business and I need to do what is essentially the stop-motion animation... I have my Basic .psd file, I move a layer inside slightly, save it as a .jpeg and repeat. Repeat, repeat and repeat.

    However, it takes much too long to get through dialogue "save under", change the file name and change the type of file in jpeg every time.

    I don't know anything about scripting (writing OR using them), but I've read it's the solution to my problem here... a script that will save a jpeg copy of my file .psd with a new name.

    In addition, it would be GREAT if that can be assigned to a key or combination of keys... as I hit him command + ~ and it runs the script.

    Can you guys help me?

    NB: This is for Photoshop CS3 or better!

    Copy and paste the script in ExtendScript Toolkit, it is installed with Photoshop

    This utility is located in the proper folder: -.
    PC: C:\Program Files\Adobe\Adobe utility
    MAC: /Applications/Utilities/Adobe utilities

    The script must be registered in: -.
    PC: C:\Program Files\Adobe\Adobe Photoshop CS #\Presets\Scripts
    NB: Vista and Windows 7, you will need to save it somewhere else and copy it to this folder because of permissions.
    MAC: Applications/Adobe Photoshop CS #/ presets/Scripts settings

    If Photoshop is open, close and restart Photoshop so that it can pickup the new script.

    You can create an action to call the script
    Start recording a new action and in the dialog box action palette select "Insert Menu Item" then file - Scripts and select the script.
    stop recording.
    This action can be given a function key to run it.

    Another way is to create your own keyboard shortcuts:
    Edit - keyboard shortcuts - file, go down until you see the script and assign your own shortcuts.

    On first use, it will let you choose the suffix bib.
    The files will be saved as OriginalFileName #0001.jpg OriginalFileName #0002.jpg etc...
    The files will be saved in the same folder as the original document.

    This first script is necessary to reset the counter to zero, when you want to work on the following document.

    app.eraseCustomOptions( 'a7ba92a0-d6f8-11df-937b-0800200c9a66');
    

    It is the main script...

    main();
    function main(){
    if(!documents.length) return;
    //Reset Custom Options.
    //app.eraseCustomOptions( 'a7ba92a0-d6f8-11df-937b-0800200c9a66' ); return;
    Count =0;
    try{
    var desc1 = app.getCustomOptions('a7ba92a0-d6f8-11df-937b-0800200c9a66');
    Count = desc1.getInteger(0);
    }catch(e){
    var win = new Window("dialog","File increment");
    win.pnl1 = win.add('panel');
    win.grp1 = win.pnl1.add('group');
    win.grp1.st1 = win.grp1.add('statictext',undefined,"File Suffix Number start...");
    win.grp1.et1 = win.grp1.add('edittext',undefined,"1");
    win.grp1.et1.preferredSize=[50,20];
    win.grp1.et1.onChanging = function() {
      if (this.text.match(/[^\-\.\d]/)) {
        this.text = this.text.replace(/[^\-\.\d]/g, '');
      }
    }
    win.grp10 = win.pnl1.add('group');
    win.grp10.process = win.grp10.add('button',undefined,'Okay');
    win.grp10.process.onClick = function(){
        Count = Number(win.grp1.et1.text);
        win.close(1);
    }
    win.center();
    win.show();
        }
    try{
    var Name = decodeURI(activeDocument.name).replace(/\.[^\.]+$/, '');
    var Path = decodeURI(activeDocument.path);
    var saveFile = File(Path + "/" + Name + "#" + zeroPad(Count,4) + ".jpg")
    SaveJPEG(saveFile, 8);
    Count++;
    var desc2 = new ActionDescriptor();
    desc2.putInteger(0, Count);
    app.putCustomOptions('a7ba92a0-d6f8-11df-937b-0800200c9a66', desc2, true );
    }catch(e){alert(e + "\r@ Line " + e.line);}
    }
    function SaveJPEG(saveFile, jpegQuality){
    var doc = activeDocument;
    if (doc.bitsPerChannel != BitsPerChannelType.EIGHT) doc.bitsPerChannel = BitsPerChannelType.EIGHT;
    jpgSaveOptions = new JPEGSaveOptions();
    jpgSaveOptions.embedColorProfile = true;
    jpgSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
    jpgSaveOptions.matte = MatteType.NONE;
    jpgSaveOptions.quality = jpegQuality;
    activeDocument.saveAs(saveFile, jpgSaveOptions, true,Extension.LOWERCASE);
    }
    function zeroPad(n, s) {
    n = n.toString();
    while (n.length < s) n = '0' + n;
    return n;
    };
    
  • I want to change the file name format "save under" so the date and time are first.

    When I select a few emails and then select "Save as" to keep a copy on my computer, the name of the file that is created has the date and time at the end of the file name of the email.
    Sample "save under" file name: "Habitat Follow Up - Bryan ([email protected]) - 2011-11-15 0744.eml.
    Is it possible to change the structure or format of the file name if the date and time of the email are initially the file name?

    Try ImportExportTools and customize the format of the file name in the options.

    http://chrisramsden.vfast.co.UK/3_How_to_install_Add-ons_in_Thunderbird.html

  • I saved my Keynote presentation in the cloud, on my Mac and on a memory stick.  When I click on 'Save' I don't know where it is saved!  There is not a function "save under" in Keynote 6.6.2?

    Keynote "save under"?

    Press the option key on the keyboard and then: file > save under

    You can then navigate to the location where to save the file.

  • Change the shortcut in the menu "save under" context

    As you know the shortcut "save under" in the context menu's 'v', no?
    Since I use it quite often, I would change to "l" for easier when accessibility also having to press "enter" then. I used to be able to do this by editing the file en - US.jar, but in the new versions of Firefox, this file is not found.

    Unfortunately Google is not currently much of a help either.
    In addition, I don't want an add-on or plugin, I just want to be able to change the keyboard shortcut.

    Does anyone know of a way that this can be achieved in the new versions of Firefox?

    Any help would be greatly appreciated.

    You don't want an add-on...

    I think that the .jar file, you are probably looking for is compressed with others in the omni.ja file. We had a thread last year where a user has successfully changed this file to change some keyboard shortcuts, but I have not tried it myself. See: do the Home/end keys works on Mac as they do on Windows/Linux

  • I want to download a file and do a "save under" directly in my working folder. Instead, it seems to save it somewhere as a generic term should I then copy, paste, and rename manually. Is there a way to rationalize this?

    I want to download a file and do a "save under" directly in the folder of my work. Instead, Firefox downloads somewhere with a generic name I have to copy, paste, and then rename the file. Is there a way to streamline this process simple?

    Options > general downloads section

    • If "Save files" is selected, all files will save the location shown without the intervention of the user.
    • If 'Always ask me where to save files' is selected, the user can choose the location and change the name of the saved file.
    • See-> window Options - general Board

    If this answer solved your problem, please click 'Solved It' next to this response when connected to the forum.

    Not related to your question, but...

    You may need to update some plug-ins. Check your plug-ins and update if necessary:

  • Restore the option Save as / open with window...

    When you save a file of the interwebs, I used to give the open with option / Save as with a box to check to "do it every time. I clicked accidentally box when recording as it does so now present every time. I'm sure it's pretty simple and feel really stupid asking this sort of thing is usually pretty easy but I now can't return option, I am now default to "save under" every time. Is there something simple I'm dominant?

    Perhaps, you can resolve this problem by modifying the directive/action to the default for the file required special tab in the option menu (sorry, I don't have any English version of Firefox and it cannot name exactly, but it must be something like 'Applications', a tab close 'Private life', the 4th tab in the window 'Options' (MB 'Préférences').

  • How do I "save under" pages 5.5.3?

    How do I "save under" pages 5.5.3?

    The first time you save your document Pages, use the file menu: Save... Afterwards, press the option key by going to the file menu and double will be changed to save under...

  • "Save under" operation on an Excel (Urgent)?

    Hi all

    I have an excel file in my project directory. I want to save or make a copy of this file in the directory with a different name, as that is, I want to do "save under" operation above each time the user clicks on a button in excel. Thanks in advance

    Best regards.

    Umer.

    If you only want to save the file under a new name, in the callback button you can:

    1. (Optional) Use FileSelectPopup to let the user choose the file to operate on. Function returns the full path of the file in a string variable

    2. Use SplitPath to extract the name of the file and edit it accordingly with standard string functions

    3. Use MakePathname to rebuild the complete folder path in a new string variable

    4. Use CopyFile to operate the copy

    All this does not open the file to examine its contents.

  • When I try to "save under" I get a message "Initalising the root folders to display" and then the screen freezes

    When I try to "save under" I get a message "Initalising the root folders to display" and then the screen freezes. Sometimes when I click several times on the target folder it opens other times it does not. Any thoughts?

    Hello

    You try to save files using Microsoft office?

    If so, this article should help you

    The program stops responding when you try to open or to save a file in an Office 2002 program, in an Office 2003 program, in a 2007 Office program or in a program Office 2010

    http://support.Microsoft.com/kb/313937

    If its with a different program and then check if the problem exists in Safe Mode, if the computer works as expected in mode without failure, then we can solve the problem in the clean boot state.

    Step a. refer to the article below for the procedure safe mode in Windows XP

    A description of the options to start in Windows XP Mode

    http://support.Microsoft.com/kb/315222

    Step b. You need to perform a clean boot to find the program that is causing and then disable or remove.

    How to configure Windows XP to start in a "clean boot" State

    http://support.Microsoft.com/kb/310353/en-us

    Note: When you are finished troubleshooting, follow the steps as explained in the article to reset the computer to start as usual.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • "Save under" in PowerPoint automatically decompresses the pictures?

    "Save under" in PowerPoint automatically decompresses the pictures? If so, is there a way to disable this option? I resized a photo (at 38%) then "save under", after which the resized image was of 100% to the new size. I prefer to keep the pictures uncompressed until I want to compress.

    Hello Ykt28403,

    Thank you for your message.  The answer to your question is Yes, compresses PowerPoint files.  I've included the link to Microsoft Office for your comment, this article explain with the compression and the characteristics of layout of images in a presentation and allow you to make the appropriate changes.
    Please let us know if it did or did not help to solve your problem.
    See you soon

    Engineer Jason Microsoft Support answers visit our Microsoft answers feedback Forum and let us know what you think.

Maybe you are looking for