Folder action not working outside automator

I have a folder action to convert and move all mkv files from within the downloads folder. The folder action included (among other) the following script:
on run {input, parameters}
          set filename to POSIX path of input
          do shell script "/usr/local/bin/mkvdts2ac3.sh -n " & quoted form of filename user name "white" password "*****)" with administrator privileges
  #do shell script "mount -t smbfs //panos:z2kdft50@nas/internal internal" user name "white" password "******)" with administrator privileges
          do shell script "mv " & quoted form of filename & " /Users/white/internal/library/" user name "white" password "****)" with administrator privileges
          do shell script "rm -rf /Users/white/Downloads/*.dts" user name "white" password "*****)" with administrator privileges
          set message to "File " & filename
          return message
end run
The total workflow runs perfectly from within automator.
The problem is that when the folder action is triggered from the system (regular usage, ouside automator) the workflow executes up to the point that the applescript is implemented (I ghave installed growl notifications at various points to know how far the script has run)
Does anybody have any idea why could this be happening?
I  have looked around but found no answers.
Thanks.
<Edited by Host>

Thanks.
I replaced the applescript with the following shell script:
/usr/local/bin/mkvdts2ac3.sh -n $@
mv $@ /Users/white/internal/library/
rm -rf /Users/white/Downloads/$@
It works.
I had tried a shell script in the very begining, but I could not get it to work so I resorted to Applescript instead. I felt myself too that applescript was an unnecessary complicated procedure just to run shell commands.
Anyway, now, each time a dts download finishes, it gets transcoded to dolby digital so that it can be played on my samsung tv (it's media player does not support dts).

Similar Messages

  • Folder Actions not working

    I'm trying out folder actions for the first time, and I cannot get an action to trigger.
    I regularly use Automator, and I've saved a script as a Folder Action plug-in attached to a folder. I've tried this with several different scripts.
    For example, I've got a script that just displays a message. It works fine if I save it as an app, so I save it as a Plug In>Folder Action. If I select, say, my documents folder, I right click>more>attach a folder action. I then select my script. If I open the Folder Actions Setup, my script is listed as attached to my documents folder. However, if I drop a file into the Documents folder, nothing happens.
    Am I correct in thinking that the script should run when a file is dropped into the folder (and if I'm wrong, how would you do this?), or have I missed something?
    I'm using 2x 2,8GHz Quad-Core Intel Xeon Mac, OsX 10.5.6.
    Cheers
    Steve

    In the Finder (Mac) Help, every user may read:
    *+Running an automation when a folder is changed+*
    +Folder actions let you run automations when a folder is modified. For example, you could run an AppleScript or an Automator workflow whenever something is added to a dropbox folder.+
    +To use folder actions, you attach a folder action script or workflow to a folder. When the folder is opened, closed, or modified, the automation will be activated automatically.+
    +Your script must include a handler for each folder action command used.+
    +To make a folder action scripts available to all users of your computer, put them in the Folder Action Scripts folder located at:+
    +Library/Scripts/Folder Action Scripts/+
    +To make the scripts available only to the current user, put them in the home folder at:+
    +~/Library/Scripts/Folder Action Scripts/+
    *+To enable folder actions:+*
    +1. Open Folder Actions Setup in the Applications/AppleScript folder.+
    +2. Select Enable Folder Actions.+
    +3. Click the ╋ button below the Folders with Actions list and choose the folder containing the folder actions.+
    +4. Click the ╋ button below the Script list and select the desired scripts, then click Attach.+
    My guess is that you missed one of the four steps.
    Yvan KOENIG (from FRANCE vendredi 5 juin 2009 17:09:05)

  • What does this simple folder action not work?

    OK I have been playing with this all weekend. I just wanted a simple folder action to move a file from folder a to folder b. There is really not much to it. The workflow works just fine. "Somtimes" running the script runs the workflow.app. However when I drop a file into folder a - nothing happens. I have enabled folder actions. Can anyone help?
    here is a pic of the relative screens that should help you.
    http://flickr.com/photos/hawsnet/2605303472/sizes/l/
    Thanks for any help you can provide.
    PS I even stopped by my local Genius Bar -- they could not help.

    Vantive,
    Try either:
    *on adding folder items to this_folder after receiving added_items*
    *tell application "Finder"*
    *repeat with this_item in added_items*
    *move this_item to folder "Folder B" of folder "Desktop" of folder¬*
    *"MyShortName" of folder "Users" of the startup disk*
    *end repeat*
    *end tell*
    *end adding folder items to*
    Or:
    *on adding folder items to this_folder after receiving added_items*
    *tell application "Finder"*
    *repeat with this_item in added_items*
    *move this_item to "Macintosh HD:Users:MyShortName:Desktop:Folder B"*
    *end repeat*
    *end tell*
    *end adding folder items to*
    In either case replace MyShortName with your actual short name. +Make sure the script is saved to your Home/Library/Scripts/Folder Action Scripts folder.+ Then right-click or control-click on "Folder A" and, if necessary, select "Enable Folder Actions." If enabled, right-click or control-click on "Folder A" and select "Attach a Folder Action…" When the Choose-a-File window appears highlight the script and press Choose.
    Both of the above scripts worked for me in testing. For what it's worth, both my /Library/LaunchAgents, and /System/Library/LaunchAgents folders are empty.
    Good Luck...
    Regards, Andrew99

  • Folder action not working

    I can't figure out why the following folder action script does not work.  I get the alert message but when I choose 'yes' the file is not copied...am I missing something?
    Thanks.
    Pedro
    property dialog_timeout : 30 -- set the amount of time before dialogs auto-answer.
    on adding folder items to this_folder after receiving added_items
        try
            tell application "Finder"
                --get the name of the folder
                set the folder_name to the name of this_folder
            end tell
            -- find out how many new items have been placed in the folder
            set the item_count to the number of items in the added_items
            --create the alert string
            set alert_message to ("Folder Actions Alert:" & return & return) as Unicode text
            if the item_count is greater than 1 then
                set alert_message to alert_message & (the item_count as text) & " new items have "
            else
                set alert_message to alert_message & "One new item has "
            end if
            set alert_message to alert_message & "been placed in folder " & «data utxt201C» & the folder_name & «data utxt201D» & "."
            set the alert_message to (the alert_message & return & return & "Would you like to view the added items?")
            display dialog the alert_message buttons {"Yes", "No"} default button 2 with icon 1 giving up after dialog_timeout
            set the user_choice to the button returned of the result
            if user_choice is "Yes" then
                tell application "Finder"
                    activate
                    set copyFolder to "Photo [Data]:10 Multimedia:CompAlerts:"
                    set copyitem to file "MacOS:Users:Peter:Documents:CompAlert.rtf"
                    duplicate file copyitem to copyFolder with replacing--THIS DOES NOT EXECUTE
                    --go to the desktop
                    --open the folder
                    --open this_folder
                    --select the items
                    --reveal the added_items
                end tell
            end if
        end try
    end adding folder items to

    The only standout is the line:
                    duplicate file copyitem to copyFolder with replacing--THIS DOES NOT EXECUTE
    where:
                    set copyFolder to "Photo [Data]:10 Multimedia:CompAlerts:"
    In other words, copyFolder is a string. You're trying to duplicate a file to a string? Doesn't seem viable to me.
    Maybe you mean:
                    duplicate copyitem to folder copyFolder with replacing
    In other words, identify the destination as a folder rather than a string.
    If that doesn't work, remove the try/end try statements. This will let the script report any errors, rather than failing gracefully. try/end try is useful for production but supresses error messages, which makes troubleshooting harder.

  • Automatically Add to iTunes folder is not working in iTunes 10.1

    Hello,
    I have a problem since the iTunes Update 10.0->10.1.
    The "Automatically Add to iTunes" folder is not working in iTunes 10.1.
    Whenever I put mp3-files in that folder, iTunes only adds these files when I start iTunes. I put some new files in this folder and nothing happens. Only when I restart iTunes the mp3s are added to my library.
    Greetings
    Thomas

    It always worked that way. iTunes only acts on that folder if iTunes is running. It does not have to be playing, but it does need to be open.
    If you add files to the Automatically Add folder while iTunes is closed, they will sit there until iTunes is restarted.

  • I have mp4 videos on my computer that I want to add to itunes...the add a file or folder is not working. Why?

    I have mp4 videos on my computer that I want to add to itunes...the add a file or folder is not working. Why?

    wait until, Apple fixes it

  • Reading message from MQ- works in WSAD (IDE) but does not work outside WSAD

    Read from MQ:
    Same code works within WASD but does not work outside WSAD.

    PDL - thanks for the suggestions - here are the results:
    A button on the form that executes "this.print();" works fine.
    Changing "this" to "event.target" results in the same error.
    document.getElementById("PDFObj").Print(); works fine.
    However, the reason that I'm using ".postMessage([message])" instead of ".Print()" is because I actually have a toolbar that has save, print, zoom in, zoom out, page up, page down, etc.... I simplified the switch statement in the post above to only include print, but in reality has a case for each of the functions above. The postMessage call is triggering the error, since the catch statement is printing out the error message above. Any idea why this would work with Professional but not Reader.

  • Automator Folder Action Not Running

    I have created a simple automator folder action that helps me to keep my downloads folder organized.    I want to move various files with certain file exensions to specific folder.
    I am finding the process to be intermittantly successful.   Sometimes it works, sometimes it does not run.      I've looked in activity monitor but do not see the automator launcher process running.   I think that is why I am having issues.   At other times, when it does run,  the workflow hangs and I have to kill Automator Runner.
    Any ideas on helping me with automator folder actions?
    Thank you,
    Jerold

    What does Finder -> select folder -> Control-Click -> Services -> Folder Actions Setup say about your existing folder action?
    Are folder actions enabled in the setup window?
    Is your folder action attached to your folder?
    For diagnostics, create a very simple Automator folder action (such as "Ask for Confirmation"; it does not need to make sense, it just needs to be something that you can use to verify the folder action occurred), and attach that to any folder. If that works, build up to making your PDF action work.

  • Automator Export Action NOT WORKING.

    I realize that double-posting is not typically a good thing, but this forum seems to get more activity than the Automator one, and it sort-of applies to both, so I'm posting here as well...
    Basically, I cannot get the Export Images action to work. I get an error every time:
    "Aperture got an error: NSInternalScriptError (8)"
    Here is my original post: http://discussions.apple.com/thread.jspa?threadID=546528&tstart=0
    Anyone with any help/info would be much appreciated. Thanks!!

    Wow. I can't believe it, but that worked. I had JUST installed it (and had actually never tried the Automator thing) so I just did not assume that that could have been the problem.
    Thanks a bunch for the help, Kevin. That was about as simple as it gets. It seems to be working just fine now.
    (except it exports ALL of the images in a given album, i.e., the ones inside stacks as well. But hey, I can live with that. At least it works at all.)
    thanks again.

  • Cross browser testing : Modifier Keys playback actions not working in chrome and Firefox

    Hi,
    In my work flow I have to select multiple items in list.So I have recorded 'Ctrl+Click' action to select list items.In Chrome and Firefox it is not selecting multiple Items.
    Even Ctrl+A,Ctrl+C,Ctrl+V also not working in chrome and Firefox.Complete modifier keys support is not observed in chrome and Firefox.Let me Know how to automate modifier keys actions in cross browser?
    Regards,
    Nagasree.

    Hi Nagasree,
    Welcome to MSDN forums.
    First,please make sure the Chrome and Firefox is supported by cross browser testing.
    Latest version of Chrome and Firefox supported by cross browser testing are Chrome version 38.0.2125.111 and
    Firefox 33.
    I doubt whether Chrome and Firefox in cross browser testing don’t support automating modifier keys or there is anything wrong on it if you are using supported browser. Since this issue is related to the Extensions tool
    Selenium components for Coded UI Cross Browser Testing, if possible, I suggest you post this
    issue here, click “Q AND A”, and then you could post this issue there, you would get dedicated
    support there.
    Thanks for your understanding.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Plug-in/Folder Actions no work, Drop App works

    I've been trying to get the automator actions from here (http://www.apple.com/pro/techniques/automator/) to work. I save the plug-in and activate it as a folder action script. When a new item is added the the folder the contains the action script, the script runs but does nothing.
    I save the action script as a drop application, and it works as expected.
    I would really rather have the folder action working. Is there something I need to do to get it to work?
    Karl

    IT WORKED! I had to create the entire file and folder structure and then put ACR 3.7 in there, but it worked.
    Thanks again, Jim!

  • Can't Get Folder Action To Work...

    Hi guys.  I'm working on an Applescript -- a Folder Action, to be precise -- which will, when files are dropped onto or added to my Downloads folder, automagically sort them into pre-existing folders, depending upon what kind of file they are.  But for the LIFE of me, I simply cannot get it to work.  I attach the script to the Folder using Configure Folder Actions (or as it appears in the context menu, "Folder Actions Setup"), and then drop files onto the folder and . . . nothing.  But I know that Folder Actions themselves are working, because I have a few others that I wrote myself that are working just fine.  I tried repairing permissions, but that didn't do any good.  Any ideas?  Here's the code below.   You'll notice that there is a section that's been commented out; mainly because I couldn't figure out how to do it without using recursion, and thus breaking up the script into subroutines, which I've heard you're not supposed to do with Folder Actions.  If someone could please explain what the heck I'm doing wrong and possibly provide a solution, I'd be really, really appreciative.  Anyway, the code:
    on adding folder items to this_folder after receiving these_items
    set imageTypesList to {"JPEG image", "Portable Network Graphics image", "Windows bitmap image", "Graphics Interchange           Format image", "Adobe Photoshop File", "TIFF Image"}
    set audioTypesList to {"MP3 audio", "AIFF-C audio", "Waveform audio"}
    set videoTypesList to {"Video-MPEG4", "MPEG-4 File", "Video-MPEG2", "Video-MPEG", "AVI", "Matroska Video File"}
    set fontTypesList to {"TrueType font", "PostScript® Type 1 outline font", "Font Suitcase"}
    set docsTypesList to {"Portable Document Format (PDF)", "Scrivener Project", "Microsoft Word 97 - 2004 document", "Rich Text           Document", "Plain Text Document", "CSV Document", "Pages Publication"}
    set epubTypesList to {"epub", "Kindle Document", "iBooks Author Template", "iBooks Author Book"}
    set archTypesList to {"ZIP archive", "tar archive", "rar archive", "Tar Gzip Archive"}
    set diskTypesList to {"Installer package", "Disk Image"}
    set execTypesList to {"Application (32-bit)", "Application", "Unix Executable File"}
    set webTypesList to {"HTML document", "XML document", "XHTML document", "Cascading Style Sheet"}
    set iconTypesList to {"Apple Icon Image", "Icon Container", "Windows Icon Image"}
    set otherTypesList to {"XTorrent File"}
    set uberList to imageTypesList & audioTypesList & videoTypesList & fontTypesList ¬                      & docsTypesList & epubTypesList & archTypesList & diskTypesList & execTypesList ¬
               & webTypesList & iconTypesList & otherTypesList\
    set imagesFolder to "Technomage:Users:andyhainline:Downloads:Images" as alias
    set appsFolder to "Technomage:Users:andyhainline:Downloads:Apps" as alias
    set archivesFolder to "Technomage:Users:andyhainline:Downloads:Archives" as alias
    set epubFolder to "Technomage:Users:andyhainline:Downloads:eBooks" as alias
    set fontsFolder to "Technomage:Users:andyhainline:Downloads:Fonts" as alias
    set docsFolder to "Technomage:Users:andyhainline:Downloads:PDFs and Docs" as alias
    set diskFolder to "Technomage:Users:andyhainline:Downloads:Installers and Disk Images" as alias
    set iconFolder to "Technomage:Users:andyhainline:Downloads:Icons" as alias
    set audioFolder to "Technomage:Users:andyhainline:Downloads:Audio" as alias
    set videoFolder to "Technomage:Users:andyhainline:Downloads:Video" as alias
    set otherFolder to "Technomage:Users:andyhainline:Downloads:Torrent Files" as alias
    set miscFolder to "Technomage:Users:andyhainline:Downloads:Miscellanious" as alias
    repeat with anItem in these_items
      set itemInfo to info of anItem
      if (kind of itemInfo) is in imageTypesList then
      move file itemInfo to imagesFolder
      else if (kind of itemInfo as text) is in audioTypesList then
      move file anItem to audioFolder with replacing
      else if (kind of itemInfo as text) is in videoTypesList then
      move file anItem to videoFolder with replacing
      else if (kind of itemInfo as text) is in fontTypesList then
      move file anItem to fontsFolder with replacing
      else if (kind of itemInfo as text) is in docsTypesList then
      move file anItem to docsFolder with replacing
      else if (kind of itemInfo as text) is in epubTypesList then
      move file anItem to epubFolder with replacing
      else if (kind of itemInfo as text) is in archTypesList then
      move file anItem to archivesFolder with replacing
      else if (kind of itemInfo as text) is in diskTypesList then
      move file anItem to diskFolder with replacing
      else if (kind of itemInfo as text) is in execTypesList then
      move file anItem to appsFolder with replacing
      else if (kind of itemInfo as text) is in webTypesList the
              move file anItem to docsFolder with replacing
      else if (kind of itemInfo as text) is in iconTypesList then
               move file anItem to iconFolder with replacing
      else if (kind of itemInfo as text) is in otherTypesList then
               move file anItem to otherFolder with replacing
      else if (kind of itemInfo as text) is not in uberList then
               move file anItem to msicFolder with replacing
      (*                              else if (kind of anItem as text) is "Folder" then
                                            set folderFiles to get every file of anItem
                                            processItems(folderFiles)
      end if
         end repeat
    end adding folder items to

    Well, I followed your instructions to letter, but the folder action still isn't triggering, or if it is, it isn't executing properly.  I can't figure out what's going on.  I tried executing the script directly from Script Debugger, but it just sits there, doing nothing (since it has no input, I would guess).  Any ideas on what's wrong?
    on adding folder items to this_folder after receiving these_items
         set imageTypesList to {"JPEG image", "Portable Network Graphics image", "Windows bitmap           image", "Graphics Interchange Format image", "Adobe Photoshop File", "TIFF Image"}
         set audioTypesList to {"MP3 audio", "AIFF-C audio", "Waveform audio"}
         set videoTypesList to {"Video-MPEG4", "MPEG-4 File", "Video-MPEG2", "Video-MPEG", "AVI", "Matroska           Video File"}
         set fontTypesList to {"TrueType font", "PostScript® Type 1 outline font", "Font Suitcase"}
         set docsTypesList to {"Portable Document Format (PDF)", "Scrivener Project", "Microsoft Word 97 - 2004           document", "Rich Text Document", "Plain Text Document", "CSV Document", "Pages Publication"}
         set epubTypesList to {"epub", "Kindle Document", "iBooks Author Template", "iBooks Author Book"}
         set archTypesList to {"ZIP archive", "tar archive", "rar archive", "Tar Gzip Archive"}
         set diskTypesList to {"Installer package", "Disk Image"}
         set execTypesList to {"Application (32-bit)", "Application", "Unix Executable File"}
         set webTypesList to {"HTML document", "XML document"}
         set iconTypesList to {"Apple Icon Image", "Icon Container", "Windows Icon Image"}
         set otherTypesList to {"XTorrent File"}
         set uberList to imageTypesList & audioTypesList & videoTypesList & fontTypesList ¬
                                  & docsTypesList & epubTypesList & archTypesList & diskTypesList & execTypesList ¬
                & webTypesList & iconTypesList & otherTypesList
    set imagesFolder to "Technomage:Users:andyhainline:Downloads:Images" as alias
    set appsFolder to "Technomage:Users:andyhainline:Downloads:Apps" as alias
    set archivesFolder to "Technomage:Users:andyhainline:Downloads:Archives" as alias
    set epubFolder to "Technomage:Users:andyhainline:Downloads:eBooks" as alias
    set fontsFolder to "Technomage:Users:andyhainline:Downloads:Fonts" as alias
    set docsFolder to "Technomage:Users:andyhainline:Downloads:PDFs and Docs" as alias
    set diskFolder to "Technomage:Users:andyhainline:Downloads:Installers and Disk Images" as alias
    set iconFolder to "Technomage:Users:andyhainline:Downloads:Icons" as alias
    set audioFolder to "Technomage:Users:andyhainline:Downloads:Audio" as alias
    set videoFolder to "Technomage:Users:andyhainline:Downloads:Video" as alias
    set otherFolder to "Technomage:Users:andyhainline:Downloads:Torrent Files" as alias
    set miscFolder to "Technomage:Users:andyhainline:Downloads:Miscellanious" as alias
    processItems(these_items)
    end adding folder items to
    on processItems(these_items)
         tell application "System Events"
              repeat with anItem in these_items
                   if (kind of anItem) is in imageTypesList then
                       move file anItem to imagesFolder
                  else if (kind of anItem) is in audioTypesList then
                       move file anItem to audioFolder with replacing
                 else if (kind of anItem) is in videoTypesList then
                       move file anItem to videoFolder with replacing
                 else if (kind of anItem) is in fontTypesList then
                      move file anItem to fontsFolder with replacing
                 else if (kind of anItem) is in docsTypesList then
                      move file anItem to docsFolder with replacing
                else if (kind of anItem) is in epubTypesList then
                      move file anItem to epubFolder with replacing
                else if (kind of anItem) is in archTypesList then
                      move file anItem to archivesFolder with replacing
                else if (kind of anItem) is in diskTypesList then
                     move file anItem to diskFolder with replacing
                else if (kind of anItem) is in execTypesList then
                     move file anItem to appsFolder with replacing
               else if (kind of anItem) is in webTypesList then
                    move file anItem to docsFolder with replacing
               else if (kind of anItem) is in iconTypesList then
                   move file anItem to iconFolder with replacing
               else if (kind of anItem) is in otherTypesList then
                   move file anItem to otherFolder with replacing
               else if (kind of anItem) is not in uberList then
                   move file anItem to msicFolder with replacing
               else if (kind of anItem as text) is "Folder" then
           set folderFiles to get every file of anItem
           processItems(folderFiles)
      end if
      end repeat
    end tell
    end processItems

  • How do I get folder actions to work in Mavericks?

    Please forgive the cross-posting, but I really wasn't certain which forum would likely have the answer. I have enabled folder actions, attached my workflow, etc. but I CANNOT get the script to run when I drop a file in the folder. I know the script works if I run it by itself. Please help!

    Hi All,
    I have a related question, but no solution. For quite a while now I have had two scripts which worked together very well:
    Script 1: Attached to Folder 1 -- it was written so that any folder created inside Folder 1 would have a second script (Script 2) attached to it.
    Script 2: Did several things, including copying items to a different location.
    All this was working perfectly on my iMac. Now that it has been transferred to my MacBook Air, I can't get Script 2 to stick to the newly created folder. It sticks and works fine if I manually attach it to the new folder, but not when it's attached via Script #1.
    Again, this only seems to be a problem on the MacBook Air. Never before.
    Any help would be great. Thanks so much.

  • Actions not working- CS3

    I have my own purchased copy of Photoshop CS3 on a PowerMac G5 and it's been working fine.
    Now I can't get the actions to work, and I have 1,000 files to resize.
    I've reinstalled the program, but nothing has changed.
    Here's what I do:
    Through Bridge, open image (tiff), open actions
    create new set, create new action, Record
    resize image, save image as jpg to new folder, close, Stop Action
    In  Photoshop, Batch, select action, select source and destination folders, hit ok
    Action starts, opens up file, resizes, closes
    Usually nothing appears in the new folder.
    Today:
    It is now saving a tiff and a jpg to the new folder, but the jpgs are totally the wrong size, and the tiff is not supposed to be there.
    It's good it's actually saving an image now, but not still doing what I specify
    Any suggestions?

    A Save As-step with Folder-seelction in an Action can be problematic.
    I recommend you just use File > Scripts > Image Processor and drop the Save As-step from the Action.

  • Backing up actions - Not working after re-install.

    I recently had hard drive issues that led to PC issues so I decided to do a full re-install of Windows 8.1 and all my programs.
    After installing Ps CS6 64-bit, when I loaded my backed up actions into Ps, some of my actions would not work.  Giving me 'missing' notifications when I ran them.  Things like 'Vignette Portrait 15%' which involved the steps - new layer, selection, feather, inverse selection, fill, set current layer (15% layer opacity is what caused this label) - this one would not work.  I understand some of the more complex ones like logo placement which involved a 'paste' step would not work, because it doesn't know where to paste from.  But then wouldn't that be the same instance after a reboot?  Because it still worked after a reboot.  Simple things like a 50% reduction action worked fine with steps - Image size (width 50% with scale styles with constrain proportions).
    Is there any way to avoid this?  Is there another folder I need to back up rather than clicking 'save actions' in the action panel?

    Updating was the first thing I did before anything else, reason being I always have problems with Photoshop and Bridge crashing unless I update it.  Something to do with my video card I think.
    Used the Adobe clean tool.
    Installed CS6.
    Ran update.
    Then rebooted.
    Installed usual third party software.
    Reboot.
    Loaded actions and presets.

Maybe you are looking for

  • Creation of new Sales order

    Hi,        While creating a new Sales Order(tcode VA01) depending on the material, Item category will be generated and depending on the Item category purchase requisition screen(ME51n) will be automatically opened and PR will be created. Now to autom

  • Return Delivery Error in MIGO while doing Movement type 122

    Hi All, I am doing MIGO Return Delivery to Vendor. I am getting the following Error. Pls help its urgent issue. I have checked the stock level. The stock is sufficient for doing return delivery. "Deficit of BA Unrestricted-use 1,575 MT : 20461615 210

  • Line item deletions in opportunity  which has folow up doc quotation

    the problem is that even after deleting the line item in quote which is followup doc and then trying to delete the line item in the opp it is giving the same error message - 010 cannot delete the Line item ## which is same as before deleting the line

  • Relentless nagging and misinformation about updating Firefox

    Hello. This is a general letter to Mozilla. I've been a faithful supporter of Mozilla products for a very long time now, but as of late, with Firefox and Thunderbird trying to force me to buy a new Mac Intel computer I neither want, need nor can affo

  • Project NEgative balance (GI still can be posted even budget 0) - Urgent

    Dear SAP guru, We got a problem with our AVAC (availability check) and Budget Profile (BDG5)for Project system and Investment Management. It happens when we will post GI (reservation). Seems that the AVAC is not blocking the GI , when the available