Can I create action to Save As...  and change only one character of the original file name?

I'm working on a group of  files(25-28) at a time. I have to save each one as a photoshop .raw file and change the first character of the file name. the rest of the file name must remain the same. I then close the original file with no changes. I tried to create an action for this. The only problem is that the next file overwrote the file I used to create the action.  Is it possible to creat an action to save as... and keep the file name of the new file but chage the first character to the same one used in the recording?

Good day!
I think what you are describing is not possible with Actions.
Scripting would be an option, but more convenient might be simply saving the files with unchanged names and then edit the names of  the whole bunch in Bridge in one go (Tools > Batch Rename).
Regards,
Pfaffenbichler

Similar Messages

  • When someone other than myself downloads an image from my web album, a dynamically generated file name replaces the original file name.  How I can prevent the original file name being replaced during the downloading process?

    When someone other than myself downloads an image from my web album, a dynamically generated file name replaces the original file name.  How I can prevent the file name being changed during this downloading process?

    Hi Glenyse,
    Here are my steps.
    1.  I upload multiple image (jpg) files onto my photo album.
    2.  I select the "sharing" by email option for this album.
    3.  I enter the recipient's email address.
    4.  The recipient receives my message and clicks on the link.
    5.  The recipient accesses my photo album and clicks on one of the images.
    6.  The image opens up to its own screen.
    7.  The recipient selects the "download" and then save file option.
    Here is the part I do not understand.  For some reason, during this "download" process, the original name which I have given to the file is replaced by different name.  So I was hoping that someone knows how to prevent the file name from being changed during the "download and save" process.
    Much appreciated if you can help me find a solution to this problem.
    Mary  

  • How do I find music that has been uploaded to iTunes from a purchased CD and iTunes is "unable to find the original file?" I no longer have the CD. I have tried all the usual methods of looking in my iTunes library and through Find. No Luck.

    How do I find music that has been uploaded to iTunes from a purchased CD and iTunes is “unable to find the original file?” I no longer have the CD. I have tried all the usual methods of looking in my iTunes library and through Find. No Luck.

    Backup drive?
    Subscribe to iTunes Match?
    If neither of the above and you don't have the CD and can't find your tracks on the computer then they you're stuck.  A file recovery utility will cost $100, plus another $100 for an external drive to which to resue the files, and may not even work.  You can buy a lot of CDs for $200.

  • How can I Re-Download Purchased Movies from Itunes store. Somehow I lost The original File?

    The movie “The Hunted” could not be used because the original file could not be found. Would you like to locate it?
    The above message appears whenever I try and play a movie from Itunes
    Is it possible to Re-Download purchased movies from Itunes as I have lost the original files somehow?

    You can re-download music, books, tv shows, and 3rd apps, but not movies.
    http://support.apple.com/kb/ht2519

  • Pick a particular file and keep on target side with the same file name

    Hi Guys,
    I have got couple of files in a folder. I need to pick only two files, I have setup BPM procedure 2 payloads merge. To keep these merged file with  the same source filename.
    Source side file Directory
    abc_12345_20100408101029.xml (abc_seq number_timestamp.xml)
    xxx12345.xml
    test.xml
    abc_12345_20100408101149.xml
    Target Side, How do I keep with the same file name?
    abc_12345_20100408111239.xml ---  same file name with diffrent timestamp.
    One more question: How to setup a file adapter to trigger between 2:00am to 5:00 am? in a particular time
    Does anybody has got quick idea, any links etc.,
    Your quick and positive response will be much appreciates.
    Kind Regards
    San

    Hi,
    One more question: How to setup a file adapter to trigger between 2:00am to 5:00 am? in a particular time
    For this you can Availability time planning (i.e you can schedule the file adapter to poll for the files with in the time interval i.e 2 -5)...
    for generating the file name at target side you need to look for the Dynamic Configuration as you need to change the timestamp for the file..and i am not sure how this works in BPM..
    in normal scenarios dynamic configuration will help....
    HTH
    Rajesh

  • Action to "Save as JPG" always offers "foo copy copy.jpg" as file name

    When I use Photoshop CS4 "Save As", and then select jpg, it offers
    me to save my file, foo.psd as foo.jpg. No problem.
    I have prepared an action to "Save as JPG" but it always offers me
    to save as "foo copy copy.jpg". This is rather annoying as I'll have
    to get rid of "copy copy" portion every time.
    Any hints? Is it my action script? Is a "professional" version of
    such an action script available elsewhere?
    Thanks

    use save for web. you have more control and don't get annoyed by the stupid "copy copy" issue.

  • When I try to save an email attached file, the file name is automatically convertied to "attachment.ashx" although the correct file type is recognized. How do I retain the original file name?

    This problem occurred after the most recent update to firefox 8.0.
    After right clicking on the attached file, I click on save link as.
    The correct file type is recognized. However the file name is converted to "attachment.ashx".
    When I rename the file, it downloads properly and is opened by the appropriate program.
    However, I should not have to rename each downloaded file.
    In particular, this is happening with Word files and with Scientific Notebook (.tex) files.

    Cor-el, thank you for your advice. I was able to navigate to my Profile Folder and I deleted the mimeTypes.rdf file. I then closed Firefox and restarted it. The problem was still there, and I found that the mimeTypes.rdf file had been re-created.
    I tried your second suggestion, but the files you mentioned were not present so there was nothing to reset.
    Any other suggestions?

  • How can I get the Voice memo's source computer file to keep the original file name?

         I ran out of space in my iPhone some weeks ago and I've been cleaning up. I am pretty much done deleting the photos and apps. The only thing I need to finish is erasing my voice memos. I already synced my music/voice memos with my computer, the only problem is that when I get the files from the iTunes media it changes the name and makes it extremely hard to organize. I want to upload this files to another website so I can access them freely.
    I would REALLY appreciated if anyone could tell me how to fix this or if you have another method please tell me.

    This is pretty straightforward.
    If the file isn't too big you can just read the entire file contents:
    set fileContents to read file "HD:path:to:the:file.txt"
    Once you've read it in, you can iterate through it with a repeat loop like:
    repeat with eachParagraph in (paragraphs of fileContents)
      -- code here to process each line
    end repeat
    Within the loop, eachParagraph represents each successive line in the file, so all you need to do is pull out the data you want. Now your subject says that your file is tab-delimited, but your example uses commas, so you may need to adjust this script depending on what's actually the case:
    set my text item delimiters to tab -- or "," as appropriate
    set firstName to text item 1 of eachParagraph
    set lastName to text item 2 of eachParagraph
    set emailAddr to last text item of eachParagraph
    -- rest of code here to send an email
    The last thing to do is to reset the 'text item delimiters' to their previous value so you don't end up getting confused.
    So, putting that all together you end up with something like:
    set fileContents to read file "HD:path:to:the:file.txt"
    set oldTIDs to my text item delimiters -- additional code to remember the current TIDs
    set my text item delimiters to tab -- or ","
    repeat with eachParagraph in (paragraphs of fileContents)
      set firstName to text item 1 of eachParagraph
      set lastName to text item 2 of eachParagraph
      set emailAddr to last text item of eachParagraph
      -- rest of code here to send an email
    end repeat
    set my text item delimiters to oldTIDs -- restore the TIDs for cleanliness
    Note that this should work for reasonably-sized files (up to a few thousand records). If it's much more than that you may need something a little more sophisticated to read the file progressively rather than all at once.

  • I had upgraded to firefox 3.0 years ago and lost my firefox 2.0 bookmarks. How do I retrieve them? I keep getting only one bookmark from the html file.

    Years back I had installed Firefox 3.0 (at launch, so not beta) into a separate program folder. After installation, I expected to have my bookmarks saved. Recently I found out my bookmarks were in application data and I found out I had one profile. That meant that my firefox 2.0 bookmarks were replaced.
    I read up on the FAQs and it stated that bookmark backups only save the previous 5 days or so, so I don't think they are usable though I have them saved. The bookmarks.html file in my profile shows only one bookmark after importing it into firefox 3.5 and firefox 2.0 (downgraded back to check it out), google chrome, and internet explorer. I still have the bookmarks.bak and bookmarks.html.bak files as well.
    A little backstory before I got up to this point because it's a bit convoluted because I thought I could retrieve them like IE favorites which were easy:
    1) Switched to Firefox 2.0 from Internet Explorer and got several hundred bookmarks.
    2) Got HyperBookmarks add-on which bugged up and replaced my previous bookmarks folder though it stated in FAQs that my original Firefox 2.0 bookmarks were in a separate folder so I didn't worry about it.
    3) Upgraded to Firefox 3.0 and it replaced all my bookmarks with nothing in bookmarks list. I thought it was saved because I installed Firefox 3.0 in a separate folder.
    4) Retrieved 3.0 Bookmarks and Archived them, but wasn't able to find Firefox 2.0 Bookmarks (original) nor the HyperBK version, except in HyperBk Backups folder.

    In the "Edit this Bookmark" window, use the 2nd drop-down button, that is to the right of the "Folder", to open a larger window that will allow more folder to appear. See the sloppy red arrow on the screenshot below.

  • How can i create a new email address and change it to my Apple ID?

    I set-up a me.com address but mispelled my name.  How can I crate another email address and update my icloud

    Welcome to the Apple Community.
    Just log out of the current account and create a new account and merge your data when prompted. You might be better exporting your data from calendars and contacts to your desktop before you start so you have a back up.

  • Is it possible to create 2 sites in iweb and publish only one when wanted?

    I use iWeb to create my website, I love it because it makes it easy for me to make and maintain my website. I'd like for my wife to be able to create her own website using iWeb also.
    I don't host with .mac and neither will my wife. I publish to a folder on my desktop and ftp my files to my host.
    My question is...can my wife and I both use iweb to design our websites seperatley and publish the sites seperatley? If so, how? When I publish to a folder it seems that everything in iWeb is published to the folder.

    Yes.
    There is software available on VersionTracker.com or MacUpdate.com called iWebSites (go to either site and do a search for it). It lets you create more than 1 resource file and lets you choose between them. As a result, you can have as many individual websites as you like and upload them individually.
    Hope this helps.

  • Is it possible to reformat and erase ONLY ONE partition of the same drive?

    Hello,
    Title really says it all....can this be done on the same drive, while leaving the other partition intact?
    I was thinking of partitioning 50/50 - one for Time Machine and the other for important files.
    Thank you in advance.

    Of course you can.
    Open Disk Utility and format the drive as a Mac OS X Extended (Journaled). After that you can partition the drive. Each partition can then be formatted, erased and repaired individually.
    HOWEVER - please note that it is not advisable to run Time Machine and other important files from the same physical drive! If the drive fails, you lose all the data on it. Hard disks are cheap and I suggest you always have a backup of inportant data on another drive. Hard drives WILL fail, it is just a question of time!

  • Save For Web - saves original file name not new name

    Hello, when I use Save for Web with slice(s) the original file name (appended with the slice number) gets saved even though I have changed the file name in the save dialog. This only happens about 50% of the time. Sometimes it saves as expected - with the new file name. I am using the default settings in the save dialog all the time.
    Stranger is that if I am saving (for Web) say 10 slices some will be named with the original file name and some will be saved with the name I gave it in the save dialog.
    This was happening on my Windows XP sp2 system when I was saving to an Ubuntu server (local network). So when I switched to a new computer running windows 7 and saving to a new server (windows 7 pro) I thought it might fix the problem - but it has not. So there must be a setting I am missing - though that does not account for the intermittency of the problem. I have changed settings under "custom" in the save dialog and things do change except the original file name is persistent not the new name I have given it.
    The PSD files come from a designer using a Mac.
    My system:
    PS 10.01
    Windows 7
    AMD x2 duo 250
    4 gig Ram
    Thank you for any help you may provide
    jim

    I made an action to save large batches to a designated "pics" folder. Then when I'm done with a big batch, I just move them to the original folder and let the OS overwrite them. May seem like a lot of work, but I can do a batch of 500 gallery thumbnails in about four minutes and it takes about 30 seconds to move them and replace the originals.

  • I renamed songs in playlist but the original files aren't renamed. How can I sort out the originals?

    I could really use some help. I'm trying to record an audio book of my second novel. I had about 300 audio tracks from recording the book in iTunes. I put them all in a playlist. Then I went through and delected the tracks that were no good from the Playlist and renamed the others so they were properly sorted by page number.
    Unfortunately, I did not realize that 1) renaming tracks in a Playlist does not rename the actual original tracks, and 2) when I click "Show in Windows Explorer" not only is it the original file names, but they are mixed in with all the other tracks that I had deleted from the playlist.
    Is there any way for me to isolate the tracks that are in the Playlist? I need to pull all those tracks out so I can import them into a music editing software program. I'm worried that all my time was wasted renaming the songs and now I can't figure out any way to group those tracks to import into another program.
    Any advice would be much appreciated!
    Thank you.
    - David David Katzman

    When you look at your iPhone, are you looking in the Music app or in the iTunes app?  Be sure you are looking in the Music app, and look in the Songs category.  If your songs are not here, you may want to try syncing your information again through iTunes.  To do this, uncheck "Sync Music" and then click apply or sync in the bottom right corner of iTunes, and then recheck "Sync Music" and then click apply or sync again. 
    I hope this helps!

  • How can I check original file name

    Hi all
    How can I check the original file name of a slide while in Keynote.
    Mike Hooley

    Hi Sara,
    Thankyou for your reply. What I meant was , how do you tell the original format , for example microsoft word, excel , powerpoint , jpeg, tiff , that the file was before it was converted to a PDF.
    So for example, i get a pdf file from someone and i want to know was it an exel file or a word file of  a Jpeg or scanned doc before they converted it to a pdf.
    It appears to me this information is not availabel in the file properties unless i am missing something.
    Regards
    Steven

Maybe you are looking for

  • Setting dynamic values to entity object

    Is there any way to set bean values (dynamic values) to Entity Object while commit the record, and how can i set these values using Groovy language Thanks in advance

  • Rounding off net weight value.

    Hi experts, I want to round off the quantity value to the next integer value. I am using the FM 'J_1I6_ROUND_TO_NEAREST_AMT' as follows... call function 'J_1I6_ROUND_TO_NEAREST_AMT' exporting    i_amount = gross_weight    i_amount1 = net_weight impor

  • Dynamic context in web dynpro abap: recursion node is possible?

    Hi, i'm working with web dynpro ABAP and I need to create a dynamic recursion node. Is possible? thank you. Regards. Al

  • Sales Order Costing-Information/Message

    Dear All, At the time of sales order costing, if the Component Cost(material Cost) is 70% of Total cost , SAP system should display information or warning message. Please give your valuable suggestion

  • Initializing Adobe Setup Setup

    i installed dreamweaver it created the dreamweaver cs3 file, when i check run dreamweaver when it finish it starts something up saying Initializing Adobe Setup Setup when it finishes nothing happen dreamweaver doesn't seem to be on my computer(xp)