Automator saves output in new folder

Hi everyone.
I created an automator workflow to convert word docs to PDFs.
The workflow consists of two actions;
1) Get Selected Items
2) Convert Word documents to PDF format.
It does the job but the output PDF file is placed in a new folder created in the folder of the source Word file. Instead, I'd like to simply have a PDF beside the Word. No new folders.
I did a lot of search to have an action to specify something like "Put the output in the same folder" among the actions in the Automator. No luck.
Can anyone give me a hand to do this without complicating it with Apple scripts?

Never mind people.
I found the excellent solution. (Link below)
http://www.macsparky.com/blog/2008/3/19/keyboard-shortcut-for-save-as-pdf-in-os- x.html

Similar Messages

  • Save Link As/New Folder/Save/ Causes Firefox to crash

    This was posted 11 months ago and was solved by creating a new user profile.
    http://support.mozilla.org/nl/questions/890781
    Right-click a link and choose 'save link as...' Browse to desired location and click 'new folder' Name the folder and open it click 'save' Firefox crashes -- restart and use the new folder or any existing folder and everything is fine after that.
    Creating a new profile is really not an option for me. (too much work, too many settings)
    A workaround for this problem is starting firefox with the "Run this program as an Administrator" option. So the problem has something to do with NTFS permissions.
    Anyone?

    Hi Nyaz,
    Thanks for writing back with the results, and I am sorry to hear that this issue still persists.
    You mentioned that the problem does not occur when you run Firefox "as an administrator", so it does sound like something related to permissions. It is very strange that it only crashes on a newly created, unused folder. I did some digging around but was not able to find any relevant information.
    I have a couple of questions - they might be just shooting in the dark, but I believe they might be relevant:
    1. Are you logged in as Administrator? I am not sure this would make a difference, since it only crashes on new folders, but it might be helpful information for someone else reading about this.
    2. Is the folder created on a network drive? I have had some issues happen when manipulating files over a network drive.
    I hope that someone with more knowledge of the NTFS might be able to chime in and guide you in the right direction. I'm sorry that I was not able to help you, but I will keep an eye out and get back to you if I come across any possible solution.

  • [Automator] Saving PDF in a new folder

    How do I save a PDF I generate from a folder with pictures into a new folder on the desktop, where as the name of the PDF is the name of the folder with pictures, and the name of the new folder on the desktop where my PDF gets saved to is the name of the folder in which the folder with the pictures is located?
    So basically, what I have is:
    [folder A [folder B with pics] ]
    And what I want to do is:
    make pdf of folder B → name pdf "folder B" → save pdf in new folder on desktop named "folder A".
    I've tried several Automator workflows, but I keep failing at this... It sounds like I want to do something really basic, but it seems it's something really hard... o_O
    Cheers!

    bump ^^

  • Email -Save as- New Folder- buggy -no copy/paste

    Email -Save as- New Folder- buggy. I can't paste text into a new folder field whether from a file/save as path or save attachments as- new folder.  That new folder dialog box does not allow copy or paste, only direct typing.   I've tried on three machines.

    FYI: 
    Control Click will bring up a popup menu that allows you to paste into the New Folder Name dialog..
    It's just the keyboard command that went funky...
    So that's a simple work around for now....

  • Make a New Folder from the search field

    Tried searching all over, can't find the answer to this simple question.
    How can I use Automator to make a new folder with the same name as what I am searching for in Find Finder items?
    Basically I am working with large image sequences that are all being rendered in one folder, but then need to be sorted based on their Prefixes before an underscore. I'd love to not have to copy what I'm searching for into the New Folder field, too.

    I would particularly like to organize downloads by renaming them, and then they automatically get filed away in the correct folder.
    You might achieve something similar by using AppleScript. The example script below, while not meant to be a definitive solution, might provide a guide for you to work with.
    The script specifies paths to various existing folders, in this case Music Downloads and Movie Downloads. Once files passed to the script meet the required criteria ("if characters 1 through 5 of theName...") then the files get moved to their appropriate destination folders.
    To run this script as written you would first need to create a Music Downloads and a Movie Downloads folder, making sure to specify the exact paths to these folders, and replacing "username" in their paths with your actual short name. You would also want to rename your files so that they meet the required criteria: music files might be renamed music_1, music_2, and so on, while movie files could be named movie_1, movie_2, etc.
    The script below can be copied and then pasted into your AppleScript Script Editor to be saved as an application droplet. Once saved, you can drag and drop single or multiple renamed music or movie files, separately or in combination, onto the the saved droplet's icon. If all goes as expected, the music files will be moved to the Music Downloads folder while movie files get moved to the Movie Downloads folder.
    The script was written so that a warning dialog is issued if files passed to it don't meet the renaming criteria. Also, if any duplicate files exist in any of the destination folders, a dialog will appear offering the option to a) replace the item, b) don't replace but continue moving non-duplcates, or c) quit altogether.
    My preference would be for the AppleScript-only droplet approach. But if you'd like to use Automator and have the script available through a right-click contextual menu, you can create this single-action Automator workflow: *Run AppleScript* (from the Automator library). Simply remove the script from its "on open" command handler and insert the remaining code between the Run AppleScript action's default "on run" command handler. Then, from Automator's File menu choose "Save As Plug-in" > Plug-in for: Finder, with a name such as "Put Away" and you should be set.
    +The script:+
    *on open*
    *tell application "Finder"*
    *set theseItems to selection*
    *repeat with i from 1 to the count of theseItems*
    try
    *set thisItem to item i of theseItems as alias*
    *set theName to name of thisItem*
    *if characters 1 through 5 of theName is {"m", "u", "s", "i", "c"} then*
    *move thisItem to "Macintosh HD:Users:username:desktop:music downloads" -- Specify exact path; replace 'username' with your short name.*
    *else if characters 1 through 5 of theName is {"m", "o", "v", "i", "e"} then*
    *move thisItem to "Macintosh HD:Users:username:desktop:movie downloads" -- Specify exact path; replace 'username' with your short name.*
    else
    *display dialog "Only items which meet the criteria can be moved." & return & return & "The item " & (ASCII character 34) & theName & (ASCII character 34) & " cannot be moved" with icon caution buttons {"OK"} default button "OK"*
    *end if*
    *on error*
    *tell me to activate*
    *display dialog "An item named " & (ASCII character 34) & theName & (ASCII character 34) & " already exists in its destination folder. Would you like to replace it with the one you are moving?" & return & return & "Replacing the existing item will overwrite its current contents." with icon caution buttons {"Quit", "Don't Replace And Continue", "Replace Item"} cancel button "Quit" default button "Don't Replace And Continue"*
    *if button returned of result is "Replace Item" then*
    *tell application "Finder"*
    *if characters 1 through 5 of theName is {"m", "u", "s", "i", "c"} then*
    *move thisItem to "Macintosh HD:Users:username:desktop:music downloads" replacing yes -- Specify path and replace 'username' as above.*
    *else if characters 1 through 5 of theName is {"m", "o", "v", "i", "e"} then*
    *move thisItem to "Macintosh HD:Users:username:desktop:movie downloads" replacing yes -- Specify path and replace 'username' as above.*
    *end if*
    *end tell*
    *end if*
    *end try*
    *end repeat*
    *end tell*
    *end open*
    The above script worked for me in testing. Good luck.

  • How to copy contents of folder into new folder with Automator?

    What is the simplest, fastest Automator workflow to copy the contents of a folder into a new folder? And without using 3rd party actions.
    I have a template folder structure called .ProjectFolder (to keep it invisible) so I need to copy the contents of this folder into a new folder, preferably with the ability to name the new folder on the fly. I don't want to use 3rd party actions because this is something I then need to maintain. Thanks.

    957911 wrote:
    Oracle guru,
    I am looking for a before or after trigger statement that will copy existing values inserted in the previous row into columns A & B. Then insert those values in a new row into column A & B if null? Same table. Hopefully my question is clear enough.
    -Oracle 10g express
    -I have an existing " before insert trigger" that insert id and timestamps when a new row is created.
    -Table is composed of column like id,timestamps,A,B and more.
    Thanks in advance
    PierreI will call it a very Wrong design.
    It is a wrong Table Design. You are duplicating the data in table and not complying with the Database Normalization rules.
    How about Verifying if Column A & B are NULL before inserting and inserting another row and avoiding it in Triggers?
    If you are bent to achieve this, below code might be helpful. However, I would never go with this approach. If you would care about explaining the reason for going ahead with such a data model, people could suggest better alternative that might conform with Normalization rules.
    create or replace trigger trg_test_table
    after insert on test_table
    for each row
    declare
      pragma autonomous_transaction;
    begin
      if :new.col_a is null and :new.col_b is null then
        insert into test_table
        select 2, systimestamp, col_a, col_b
          from test_table
         where pk_col = (select max(pk_col) from test_table b where b.pk_col < :new.pk_col);
      end if;
      commit;
    end trg_test_table;Read SQL and PL/SQL FAQ and post the mentioned details.
    Do not forget to mention output from
    select * from v$version;

  • I can't save a file to the desktop nor create a new folder

    I extracted 2 pages from a PDF file. They are there according to the "open" dialogue but the second one is not there as an icon. I can attach it to an email but the email won't send - it says the attachments are still downloading. I can't create a new folder on the desktop to save the second PDF into. ***????

    You can write a file with the same extension as long as you lock your file while writing it. As long as your file is locked, your BizTalk receive location will not pick it up.
    So the question here really is, how is your application generating the CSV file? 
    Check the FileShare enumeration: http://msdn.microsoft.com/en-us/library/system.io.fileshare.aspx
    In your case it will be something like this:
    FileStream someFileStream= new FileStream(path, FileMode.Create,
    FileAccess.Write, FileShare.None);
    Glenn Colpaert - Microsoft Integration MVP - Blog : http://blog.codit.eu

  • CRASH when making a new folder in save for web

    When going into Save For Web, and saving a picture, and clicking the little "new folder" button, Photoshop crashes and closes instantly. This is 100% reproducible.
    Can we expect this to be fixed?
    Details:
    Windows 7 x64, fully updated
    Photoshop CS5 x64, fully updated
    Memory is plentiful
    Disk space is plentiful

    Always nice to get an upgrade, but it's a rather costly operation, one might say
    I still think this is an issue Adobe should be fixing. This problem (for me at least) did only occur in the save dialog while in Save For Web, and not in any other save dialogs, such as the regular file->save as. This made it very hard for me to believe the problem is in my system. Although something might be triggering it, that something could hardly be the cause, since, like I said, the problem only occurs in SFW and only ever in Photoshop, and only in CS5. EVERY other program works fine in this regard.
    So please, Adobe, fix this bug before forcing folks to initiate an expensive upgrade...

  • Screen saver lag in loading photos from new folder

    I use my screen saver to display the family photos in a side show. I have several thousand photos in several folders. I have noticed that whenever I want to change the folder used as the side show source, it takes the Screen Saver Preference pane a very long time to respond. It is as if it is scanning all the photos in the currently assigned folder in order to display them in the preview window provided, and it gets so dogged down doing that it can't respond to my clicks on the Choose Folder option. This is puzzling because when I move my mouse cursor to the upper left corner of my screen to activate the screen saver, it only takes a few seconds to begin displaying photos, even with iTunes and other apps running. But when I open the Screen Saver Preference Pane just to change the source folder or to make any other simple change in options (pan and zoom, time to activate screen saver, etc.) it bogs down completely for 2-3 minutes. This makes no sense to me -- if the OS can get the screen saver side show going on a folder with several thousand photos in just seconds when the hot corner is used to activate it, why does it take the Preference Pane version so long to load the very same photos in a preview window? The problem is so bad, that I rarely bother to change source folders now. Which is a shame, because the side show program does a stellar job displaying photos -- at least once it gets around to it! A possible solution would be to give the user the option to suppress previewing of images. I have suggested this to Apple in several emails, and with each update to the OS I hope to find the problem corrected. So far, no cigar.
    As long as I'm at it, I'd like to make my annual request that Apple to make the Screen Saver side show a stand-alone application. My reasons, partly taken from an earlier post, are as follows. The built-in side show provided by Apple via the Screen Saver Preference Pane does a fantastic job of displaying even low-resolution photos in full-screen mode (especially with pan and zoom activated) without the photo appearing excessively blurry or pixelized. I don't know how the Apple programmers do it, but the photos displayed by the screen saver seem crisper and sharper than the same photos displayed by Preview or Photoshop. This may partly be due to an illusion created by the pan and zoom -- the expansion and shifting of the image on the screen causes the mind to focus on the signal, which is consistent from frame to frame, as opposed to the noise (pixelization) which varies somewhat randomly. I think there is some kind of perceptual averaging process that allows the mind to perceive the underlying true image, despite the low resolution.
    Be that as it may, I love the iMac screen saver. But I can't get control of it because it is not a stand-alone app. If the side show were available as stand-alone application it would probably have other features such as the ability to pause, go backward or forward, set the duration of each photo, select background music, etc. These would be in addition to the pan and zoom options already offered by the Screen Saver Preference Pane. And unlike the Preference Pane, selecting a new folder for the side show would (hopefully) not dog the machine completely down.
    I am aware that side show capability is available within iPhoto and also at the FINDER level when using Spotlight to search for images. But again, none of these are stand alone apps, they all work a little differently, and no one of them does everything you need. How about just having an app called Slideshow (or iSlideshow)?
    Does anyone else see a need for this?

    I have several thousand photos in several folders. I have noticed that whenever I want to change the folder used as the side show source, it takes the Screen Saver Preference pane a very long time to respond. It is as if it is scanning all the photos in the currently assigned folder in order to display them in the preview window provided, and it gets so dogged down doing that it can't respond to my clicks on the Choose Folder option.
    Assuming you don't want to redistribute your photos into a greater number of folders or subfolders so there would be fewer in each folder to process, you could try a workaround. Try moving your currently-assigned folder to your desktop temporarily, before opening the Screen Saver preference pane. If the preference pane can't find the old folder, it may immediately ask you to choose a new one. You could hopefully then do so, close the preference pane, and then put back the old folder.
    It's my understanding that there will be no future updates to Tiger, only security fixes.

  • How can we open a new folder in the email account (ex: need to save certain emails into a new fodder called "work". can anyone help

    How can we open a new folder in the email account (ex: need to save certain emails into a new fodder called "work".
    Anyone can help?

    Right click on any folder in mail and select Create new mailbox.

  • Why can't a new folder be created within my user home directory when using 'Save As' in Mountain Lion?

    Hi,
    So I want to create a new folder within my main user home directory (not the root directory) just for my developer-related files? I can do this from Finder, although it does prompt me for my password to do so. However, when using 'Save As' from any app, the 'New Folder' button is greyed out when I select my user home directory. So I have to create the folder in Finder then Save As.
    Is this normal behavior? Is OSX discouraging me from adding things to my user home directory by making it less convenient? Is there a good reason it would be discouraging me from creating new folders there? If not, is there a setting that I can change to allow the creation of new folders from the Save As prompt?
    Thanks for your help,
    B

    You may need to rebuild permissions on your user account. To do this,boot to your Recovery partition (holding down the Command and R keys while booting) and open Terminal from the Utilities menu. In Terminal, type:  ‘resetpassword’ (without the ’s), hit return, and select the admin user. You are not going to reset your password. Click on the icon for your Macs hard drive at the top. From the drop down below it select the user account which is having issues. At the bottom of the window, you'll see an area labeled Restore Home Directory Permissions and ACLs. Click the reset button there. The process takes a few minutes. When complete, restart.   
    Repair User Permissions

  • Cannot save a bookmark to NEW folder - FF wants me to rename EXISTING parent folder

    I cannot save a bookmark to a new folder. This is the path I am taking from the main menu:
    Bookmarks | Bookmark This Page
    Click the drop-down arrow to the right of Folder
    Select Choose
    Scroll to the parent folder in which I would like a new subfolder
    Click New Folder
    Then, instead of creating a new folder as it always did in the past, it highlights the parent folder for editing. If I type in a new folder name, the parent folder is changed to that new name. A new subfolder is created with the name New Folder.
    Things I have already tried that did *not* resolve the problem:
    - Deleting and then restoring bookmarks from a saved bookmark backup file.
    - Running the Add-On "Places Maintenance"
    - Rebuild "Places" database
    I have not yet reset Firefox or created a new profile but can try that if you gurus think that would help.
    I am using FF 32.0.2 on Win XP SP3.
    I have hundreds and hundreds of bookmarks, but from what I have read, there is no max size limit.
    Thank you in advance!
    Carol

    Cor-el, thank you very for your reply.
    I started Firefox in Safe Mode. The problem still occurs in Safe Mode. My understand is if the problem persists in Safe Mode, it is *not* being caused by an extension, theme or hardware acceleration. Other possible causes could be plugins or changes made to Firefox preference settings, which are not disabled in Safe Mode.
    As you suggested, I did check Add-ons > Appearance. (I don't think I have ever had any Appearance other than the default theme.) It was and still is set at Default 32.0.2 By Mozilla. Since the bookmarks problem persists in Safe Mode, I think we can rule out this as the cause anyway.
    All of my Plug-Ins are up-to-date except iTunes Application Detector 1.0.1.1. Status is "unknown". I have all Plug-Ins set to "Ask to Activate" or "Never Activate". None of them are set to "Always Activate".
    My cache, cookies and history have been cleared. I have rebooted my computer.
    Per your instructions, I did *not* reset Firefox. Should I reset Firefox or reinstall Firefox?
    The bookmarks problem still occurs.
    Thank you so much!
    Carol

  • Why does Pages keep creating a new folder everytime I save?

    There must be some easy explanation for this but there's a weird quirk in Pages '09 that I don't know how to turn off.
    Every time I save a document, not only does it save, but it creates a new folder with some new files labeled buildVersionHistory.plist and index.xml and then a subfolder called Quicklook within which there's a thumbnail.jpg.
    No idea why it's doing this but it's really clogging up my folders and it seems totally unnecessary. Can anybody help me turn it off?

    Hi Michael
    Welcome to the forum.
    Do you have Stuffit installed and are saving to the desktop?
    Because in that case it is Stuffit decompressing the Pages document's package.
    Just save to your document folder.
    Peter

  • Lightroom 5 file edited in photoshop cc 2014 does not appear back next to original after save. Is anyone else having this issue? If so what is the fix.  The edited image appears back in lightroom in a new folder.

    Lightroom 5 file edited in photoshop cc 2014 does not appear back next to original after save. Is anyone else having this issue? If so what is the fix.  The edited image appears back in lightroom in a new folder.

    I'm performing a normal "Save", not "Save As". Work flow I'm using is as follows:  Select photo in Lightroom 5.7 >" Edit In" Photoshop CC 2014 > (after working on photo is PS) > Save > close PS. Photo returns to Lightroom 5.7 in a new folder rather than next to the original. Prior to purchasing the monthly plan and upgrading to PS CC 2014, I performed this same work flow using Lightroom 5.6 and Photoshop CS6 without any issues.
    Just for fun... I attempted to move the edited file back into the original folder. I received a prompt that said the file already existed in the original folder, however I can't see it except the new folder that LR created. I tried several different sort orders, etc without any success.
    *** Follow up: Was unable to resolve the issue using Photoshop CC 2014. Uninstalled PS CC 2014 and went back to using Photoshop CS6. Return trips from LR 5.7 to Photoshop is now performing as it should: returning edited photo back to the original folder in LR 5 and placing next to the original image.
    Should anyone have a suggestion on getting Photoshop CC 2014 to do the same, I would love to be educated.
    Thanks for the help, dj_paige.

  • Every time I save a file it creates a new folder

    Hi,
    weird problem, never occurred on other Macs. I have a preso and every time I save it I see an Expander application running which creates a new folder file. Let's say I have a preso called Effects.key, when I save it or in auto-save it creates Effects.key folder,   Effects.key folder 1,  Effects.key folder 2,  Effects.key folder 3......an on and on and on....
    What's happening ?
    Thanks in advance

    try this:
    right click on one of the original Keynote files, select;   get info
    in the Open With dropdown option; (if Keynote is not the listed), select other,
         then navigate to Keynote in the Applications folder
    select; always open with
    click add

Maybe you are looking for