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.

Similar Messages

  • 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 my Scanner to Work with Mavericks?

    I got a message when I tried to scan a photo saying to check with the developer about HPScan....that it may not work with Mavericks and that I might have to reinstall it.  
    I have downloaded all the upgrades that have come and I think one was for the printer....HP.  Will it help to reinstall it?  And, exactly how do I do that?  I notice that in APPS there is an uninstaller.  Do I just use that to uninstall and then reinstall.....and, if so how do I do that? 

    There's an alternative ...
    Try using the Image Capture app in your Applications folder.
    Connect the scanner to your Mac whether Wi-Fi or USB.
    Launch Image Capture.
    Click the very small black box bottom left side of the Image Capture window.
    You'll see this pop up menu:   Connecting this (device) opens:
    You can select a default app to scan (Image Capture) and select a folder from the Imort To pop up menu on the right to save scanned files to.

  • How do I get outgoing mail to work with maverick update?!?!

    Argh!!  I am a longtime Apple customer, but I am getting sick of this!
    I get no outoging mail with the Mavericks update.  What to do????
    THANKS

    Hi there kmorton2,
    You may find the troubleshooting steps in the article below helpful.
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    -Griff W. 

  • How do I get purchased actions to work on CS6?

    I am new to Photoshop. I purchased actions. I followed the directions to install it. The actions show up in my list, however, I can not get them to work. It doesnt allow me to click play on any of the new purcahased ones. I have Windows 8 operating system

    I always tell my customers:
    "Make the image you want to work on the current document, click once on the action name to highlight it, then click on the play button."
    As implied by the posters above, be careful not to click on anything else.
    Also, some actions call other actions in the same set.  Make sure you haven't changed the set name from what it was when you loaded the actions.
    -Noel

  • How can I get my CS6 to work in Mavericks?

    Hello all,
    I'm coming into my second week of desperate attempts to make my After Effects CS6 (Volume License) work in the cursed Mac OS 10.9  :  (
    I'm back to using CS5.5 which works, but my clients are getting irritated by having to down-save all documents to CS5.5 for me.
    I've been in contact with several Adobe advisors without luck, so I'm trying to reach out again, hoping someone has been able to solve this problem, it seems I'm not the only one suffering from this.
    – I've installed CS6 OK.
    – I'm trying to patch it to 11.0.4, message keeps saying "Adobe Application Manager is damaged or missing, please reinstall"
    – I've tried loads of ways to remedy this; CC cleaner, surgical removal and reinstallation of all Adobe files in various order, silent installs, all kinds of permissions repairs and adjustments, reinstalling AAM, installing AAM for volume licensing, studying the PDApp.log, install and crash logs,
    I've considered wiping my entire system and trying to downgrade to Mac OS 10.8 in order to get my CS6 back up and running but I worry this will lead to new problems.
    Grateful for any tips or help.
    many thanks,
    Fredrik

    Hi Rick,
    do you mean I could get a direct download link to After Effects 11.0.4? So I don't have to run this patch that never seems to work?
    Hard to believe all the Adobe tech support guys I've spoken to wouldn't have mentioned that, I've spent hours and hours on the phone already....
    I will try!
    thank you

  • How can I get Samsung Kies to work with Mavericks?

    I've wasted an evening fiddling with Kies. I have deleted it just in case there were any serious conflicts but I would like to put my iTunes uploads (not purchases) on my Samsung Galaxy. Any ideas?

    There's an alternative ...
    Try using the Image Capture app in your Applications folder.
    Connect the scanner to your Mac whether Wi-Fi or USB.
    Launch Image Capture.
    Click the very small black box bottom left side of the Image Capture window.
    You'll see this pop up menu:   Connecting this (device) opens:
    You can select a default app to scan (Image Capture) and select a folder from the Imort To pop up menu on the right to save scanned files to.

  • How do you get core audio to work with maverick. I'm using logic pro X

    i'm having problem with core audio and maverick

    It sounds as if you have altered the Tempo after recording the Audio ( but before selecting +Follow Tempo+ ).
    This would make your Regions adapt from the old tempo to the new one, therefore changing their timing.
    Here's a bit more info:
    Audio files recorded in Logic Pro can follow the project tempo—inclusive of tempo changes—set in the global tracks.
    +Note: These audio files can also follow the first key signature set in the global tracks.+
    As an example: If you record a bass solo at 100 bpm, you can change the project tempo to 120 bpm and the bass solo will automatically be played back at the new tempo.
    The function works with all audio files that were recorded in, or bounced/exported from, Logic Pro.
    The function only works in the parent project (the project the audio files were created in). If you drag a file recorded in a given project to another project with the Finder, the file can not follow the project tempo.
    Bounced or exported files can only follow the project tempo if the “Add resulting files to Audio Bin” option was enabled in the Export or Bounce window—prior to the bounce or export.
    Files copied between two projects retain the ability to follow the project tempo.
    The project’s tempo information is used to tag the beats in the recording. The function works best if your audio files match the project tempo as precisely as possible. The longer your audio files are, the more RAM is required for this functionality to work properly.

  • How do i get my actions from CS6 to work on CC?

    How do i get my actions from CS6 to work on CC? The function keys do not work, I have to reload them everyday. I have saved my action set to my desk top and right now I have to reload them everyday, sometimes this helps sometimes it doesn't. Here is my set of actions...
    /version 3
    /name [ 27
    547261636965277320416374696f6e20323031332d20436c6f7564
    /isOpen 1
    /actionCount 9
    /action-1 {
    /name [ 8
      4d6574616c204252
    /keyIndex 0
    /colorIndex 0
    /isOpen 0
    /eventCount 1
    /event-1 {
      /useRulersIn1stQuadrant 0
      /internalName (adobe_openDocument)
      /localizedName [ 4
       4f70656e
      /isOpen 0
      /isOn 1
      /hasDialog 1
      /showDialog 0
      /parameterCount 4
      /parameter-1 {
       /key 1668444016
       /showInPalette -1
       /type (enumerated)
       /name [ 7
        43726f7020546f
       /value 4
      /parameter-2 {
       /key 1885823860
       /showInPalette -1
       /type (integer)
       /value 1
      /parameter-3 {
       /key 1851878757
       /showInPalette -1
       /type (ustring)
       /value [ 31
        543a5c4d6574616c5c5f303161706f2d4c61736572204672616d65732e6169
      /parameter-4 {
       /key 1668246642
       /showInPalette -1
       /type (integer)
       /value 2
    /action-2 {
    /name [ 9
      636f6c6f72206d3230
    /keyIndex 6
    /colorIndex 0
    /isOpen 1
    /eventCount 4
    /event-1 {
      /useRulersIn1stQuadrant 0
      /internalName (adobe_openDocument)
      /localizedName [ 4
       4f70656e
      /isOpen 0
      /isOn 1
      /hasDialog 1
      /showDialog 0
      /parameterCount 4
      /parameter-1 {
       /key 1668444016
       /showInPalette -1
       /type (enumerated)
       /name [ 7
        43726f7020546f
       /value 4
      /parameter-2 {
       /key 1885823860
       /showInPalette -1
       /type (integer)
       /value 1
      /parameter-3 {
       /key 1851878757
       /showInPalette -1
       /type (ustring)
       /value [ 40
        543a5c436f6c6f7220476c6173735c4672616d65735c4d32302d522d33336d6d
        2d33306d6d2e6169
      /parameter-4 {
       /key 1668246642
       /showInPalette -1
       /type (integer)
       /value 2
    /event-2 {
      /useRulersIn1stQuadrant 0
      /internalName (adobe_selectAll)
      /localizedName [ 10
       53656c65637420416c6c
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 0
    /event-3 {
      /useRulersIn1stQuadrant 0
      /internalName (adobe_copy)
      /localizedName [ 4
       436f7079
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 0
    /event-4 {
      /useRulersIn1stQuadrant 0
      /internalName (adobe_closeDocument)
      /localizedName [ 5
       436c6f7365
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 0
    /action-3 {
    /name [ 13
      4f70656e20436f6c6f72204252
    /keyIndex 5
    /colorIndex 5
    /isOpen 1
    /eventCount 4
    /event-1 {
      /useRulersIn1stQuadrant 0
      /internalName (adobe_openDocument)
      /localizedName [ 4
       4f70656e
      /isOpen 0
      /isOn 1
      /hasDialog 1
      /showDialog 0
      /parameterCount 4
      /parameter-1 {
       /key 1668444016
       /showInPalette -1
       /type (enumerated)
       /name [ 7
        43726f7020546f
       /value 4
      /parameter-2 {
       /key 1885823860
       /showInPalette -1
       /type (integer)
       /value 1
      /parameter-3 {
       /key 1851878757
       /showInPalette -1
       /type (ustring)
       /value [ 37
        543a5c436f6c6f7220476c6173735c4672616d65735c42522d36366d6d2d3630
        6d6d2e6169
      /parameter-4 {
       /key 1668246642
       /showInPalette -1
       /type (integer)
       /value 2
    /event-2 {
      /useRulersIn1stQuadrant 0
      /internalName (adobe_selectAll)
      /localizedName [ 10
       53656c65637420416c6c
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 0
    /event-3 {
      /useRulersIn1stQuadrant 0
      /internalName (adobe_copy)
      /localizedName [ 4
       436f7079
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 0
    /event-4 {
      /useRulersIn1stQuadrant 0
      /internalName (adobe_closeDocument)
      /localizedName [ 5
       436c6f7365
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 0
    /action-4 {
    /name [ 14
      4f75746c696e65205374726f6b65
    /keyIndex 0
    /colorIndex 3
    /isOpen 1
    /eventCount 1
    /event-1 {
      /useRulersIn1stQuadrant 1
      /internalName (ai_plugin_outline)
      /localizedName [ 14
       4f75746c696e65205374726f6b65
      /isOpen 0
      /isOn 1
      /hasDialog 1
      /showDialog 0
      /parameterCount 0
    /action-5 {
    /name [ 15
      3130302520416c6c20434f4c4f5253
    /keyIndex 10
    /colorIndex 0
    /isOpen 1
    /eventCount 3
    /event-1 {
      /useRulersIn1stQuadrant 0
      /internalName (ai_plugin_setColor)
      /localizedName [ 9
       53657420636f6c6f72
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 5
      /parameter-1 {
       /key 1768186740
       /showInPalette -1
       /type (ustring)
       /value [ 10
        46696c6c20636f6c6f72
      /parameter-2 {
       /key 1718185068
       /showInPalette -1
       /type (boolean)
       /value 1
      /parameter-3 {
       /key 1954115685
       /showInPalette -1
       /type (enumerated)
       /name [ 10
        434d594b20636f6c6f72
       /value 4
      /parameter-4 {
       /key 2036690039
       /showInPalette -1
       /type (unit real)
       /value 100.0
       /unit 592474723
      /parameter-5 {
       /key 1651270507
       /showInPalette -1
       /type (unit real)
       /value 100.0
       /unit 592474723
    /event-2 {
      /useRulersIn1stQuadrant 0
      /internalName (ai_plugin_setColor)
      /localizedName [ 9
       53657420636f6c6f72
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 6
      /parameter-1 {
       /key 1768186740
       /showInPalette -1
       /type (ustring)
       /value [ 10
        46696c6c20636f6c6f72
      /parameter-2 {
       /key 1718185068
       /showInPalette -1
       /type (boolean)
       /value 1
      /parameter-3 {
       /key 1954115685
       /showInPalette -1
       /type (enumerated)
       /name [ 10
        434d594b20636f6c6f72
       /value 4
      /parameter-4 {
       /key 1835496545
       /showInPalette -1
       /type (unit real)
       /value 100.0
       /unit 592474723
      /parameter-5 {
       /key 2036690039
       /showInPalette -1
       /type (unit real)
       /value 100.0
       /unit 592474723
      /parameter-6 {
       /key 1651270507
       /showInPalette -1
       /type (unit real)
       /value 100.0
       /unit 592474723
    /event-3 {
      /useRulersIn1stQuadrant 0
      /internalName (ai_plugin_setColor)
      /localizedName [ 9
       53657420636f6c6f72
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 7
      /parameter-1 {
       /key 1768186740
       /showInPalette -1
       /type (ustring)
       /value [ 10
        46696c6c20636f6c6f72
      /parameter-2 {
       /key 1718185068
       /showInPalette -1
       /type (boolean)
       /value 1
      /parameter-3 {
       /key 1954115685
       /showInPalette -1
       /type (enumerated)
       /name [ 10
        434d594b20636f6c6f72
       /value 4
      /parameter-4 {
       /key 1668899182
       /showInPalette -1
       /type (unit real)
       /value 100.0
       /unit 592474723
      /parameter-5 {
       /key 1835496545
       /showInPalette -1
       /type (unit real)
       /value 100.0
       /unit 592474723
      /parameter-6 {
       /key 2036690039
       /showInPalette -1
       /type (unit real)
       /value 100.0
       /unit 592474723
      /parameter-7 {
       /key 1651270507
       /showInPalette -1
       /type (unit real)
       /value 100.0
       /unit 592474723
    /action-6 {
    /name [ 15
      4368616e676520746f207768697465
    /keyIndex 0
    /colorIndex 0
    /isOpen 0
    /eventCount 1
    /event-1 {
      /useRulersIn1stQuadrant 0
      /internalName (ai_plugin_setColor)
      /localizedName [ 9
       53657420636f6c6f72
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 2
      /parameter-1 {
       /key 1718185068
       /showInPalette -1
       /type (boolean)
       /value 1
      /parameter-2 {
       /key 1954115685
       /showInPalette -1
       /type (enumerated)
       /name [ 10
        434d594b20636f6c6f72
       /value 4
    /action-7 {
    /name [ 13
      617070726f76616c2070616765
    /keyIndex 44
    /colorIndex 0
    /isOpen 1
    /eventCount 4
    /event-1 {
      /useRulersIn1stQuadrant 0
      /internalName (adobe_openDocument)
      /localizedName [ 4
       4f70656e
      /isOpen 0
      /isOn 1
      /hasDialog 1
      /showDialog 0
      /parameterCount 5
      /parameter-1 {
       /key 1885431653
       /showInPalette -1
       /type (integer)
       /value 1
      /parameter-2 {
       /key 1668444016
       /showInPalette -1
       /type (enumerated)
       /name [ 7
        43726f7020546f
       /value 4
      /parameter-3 {
       /key 1885823860
       /showInPalette -1
       /type (integer)
       /value 1
      /parameter-4 {
       /key 1851878757
       /showInPalette -1
       /type (ustring)
       /value [ 23
        543a5c417070726f76616c2074656d706c6174652e6169
      /parameter-5 {
       /key 1668246642
       /showInPalette -1
       /type (integer)
       /value 2
    /event-2 {
      /useRulersIn1stQuadrant 0
      /internalName (adobe_selectAll)
      /localizedName [ 10
       53656c65637420416c6c
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 0
    /event-3 {
      /useRulersIn1stQuadrant 0
      /internalName (adobe_copy)
      /localizedName [ 4
       436f7079
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 0
    /event-4 {
      /useRulersIn1stQuadrant 0
      /internalName (adobe_closeDocument)
      /localizedName [ 5
       436c6f7365
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 0
    /action-8 {
    /name [ 6
      4d6972726f72
    /keyIndex 12
    /colorIndex 0
    /isOpen 1
    /eventCount 1
    /event-1 {
      /useRulersIn1stQuadrant 0
      /internalName (adobe_reflect)
      /localizedName [ 7
       5265666c656374
      /isOpen 0
      /isOn 1
      /hasDialog 1
      /showDialog 0
      /parameterCount 2
      /parameter-1 {
       /key 1634625388
       /showInPalette -1
       /type (unit real)
       /value 90.0
       /unit 591490663
      /parameter-2 {
       /key 1668247673
       /showInPalette -1
       /type (boolean)
       /value 0
    /action-9 {
    /name [ 4
      30783079
    /keyIndex 0
    /colorIndex 2
    /isOpen 1
    /eventCount 3
    /event-1 {
      /useRulersIn1stQuadrant 0
      /internalName (ai_plugin_setColor)
      /localizedName [ 9
       53657420636f6c6f72
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 2
      /parameter-1 {
       /key 1718185068
       /showInPalette -1
       /type (boolean)
       /value 1
      /parameter-2 {
       /key 1954115685
       /showInPalette -1
       /type (enumerated)
       /name [ 10
        434d594b20636f6c6f72
       /value 4
    /event-2 {
      /useRulersIn1stQuadrant 0
      /internalName (ai_plugin_transformPalette)
      /localizedName [ 15
       5472616e73666f726d2050616e656c
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 1
      /parameter-1 {
       /key 1954115685
       /showInPalette -1
       /type (enumerated)
       /name [ 23
        4d6f7665207265666572656e636520696e205820746f3a
       /value 0
    /event-3 {
      /useRulersIn1stQuadrant 0
      /internalName (ai_plugin_transformPalette)
      /localizedName [ 15
       5472616e73666f726d2050616e656c
      /isOpen 0
      /isOn 1
      /hasDialog 0
      /parameterCount 1
      /parameter-1 {
       /key 1954115685
       /showInPalette -1
       /type (enumerated)
       /name [ 23
        4d6f7665207265666572656e636520696e205920746f3a
       /value 1
    this is my set of saved actions...i was told to paste it in here...is this what you ment?

    Who told you to post in the scripting forum…? To be honest you a talking to a pretty small selection of AI users here… Actions would be better discussed in the General Fourm where more users use them… That and I don't know a user who posts in this little community who uses CC yet…
    #target illustrator
    var aiActions = File( Folder.desktop + '/YourActionsNameHere.aia' );
    if ( aiActions.exists ) {
              app.loadAction( aiActions );
    } else {
              alert( 'Could NOT locate your Actions' );
    I've no idea if the above works Im using CS5 so can't test… You could try adding to a Startup Scripts folder in your app folder…

  • My "Hanging with Friends" app keeps crashing whenever I try to open it. I have deleted and re-downloaded the app, restarted my iPhone, and even restored my iPhone all together, and nothing is working. How can I get this app to work again?

    My "Hanging with Friends" app keeps crashing whenever I try to open it. I have deleted and re-downloaded the app, restarted my iPhone, and even restored my iPhone all together, and nothing is working. How can I get this app to work again?

    Can you start Firefox in [[Safe mode]] ?
    You can also do a clean reinstall and download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    You can initially skip the step to create a new profile, that may not necessary for this issue.
    See http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Hardware missing -AGP Graphics card. How can I get my FCE 4 working on the new computer? Cheers

    Hi I have just upgraded my computer to Mac OSX 10.6.7 now I cant open my FCE 4. Message reads, Hardware missing -AGP Graphics card. How can I get my FCE 4 working on the new computer? Cheers

    Thanks, just so I know we are talking about the same items please let me know - When you say "run Prokit" do you mean downloaded? Which I did. I dont have Prokit 4.0.1 if you are referring to that, do I need this first? Please explain what application name I am looking for if other than Prokit which is sitting in my "download folder" do I need to manually put it into the apps folder? Sorry if the questions are layman but this area is not a very strong point for me. Thanks for your help so far.

  • How do I get my iPad to work. It won't slide to unlock

    How do I get my iPad to work. It won't slide to unlock

    Push harder! 
    Seriously...
    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.

  • I updated to Mavericks and a bunch of my info deleted.  I tried opening a previous iDVD I made, but when I click on it, it says to look for themes.  How do I get my movie to work?  Thanks.

    I updated to Mavericks and a bunch of my info deleted.  I tried opening a previous iDVD I made, but when I click on it, it says to look for themes.  How do I get my movie to work?  Thanks.

    Did you do an erase and install of Mavericks?  If not look in the HD/Library/Application Support folder for an iDVD folder.  There should be a Themes folder in it. If it's not there look in your Home/Library/Applications Suport folder for the iDVD folder.
    NOTE: In Mavericks, 10.9,  the Home Library is invisible so go to your Home folder and use the View ➙ Show View Options menu to bring up this window:
    Select Show Library Folder.  Now you can check to see if the iDVD folder in there.
    If you find the iDVD folder launch iDVD, go to its Advanced preference pane and point iDVD to the Themes folder:
    If you can't find the Themes folder you'll need to reinstall iDVD from the source you installed it from originally, i.e. the disks that came with your Mac or an iLife 09 or 11 disk.
    OT

  • How do I get the m3g package working under wtk2.2?

    How do I get the m3g package working under wtk2.2? When I try to build applications which use the package, the toolkit can't find it, although the .jar file is in WTK2.2/lib (jsr184.jar). But none of the scripts in WTK2.2/bin reference the file. I have tried adding classpath references to the jar file in all of the bin sripts, but I still get 'package does not exist' messages when I try to build, e.g., Redikod's M3GMIDlet. i have of course tried putting the jar file in the 'res' directory for the application.
    Thanks,
    tom arnall
    north spit, ca
    usa

    Do you see the WebContactSheetII and ContactSheetII plugins in photoshop cs5.1 plugins folder?
    Applications ▸ Adobe Photoshop CS5.1 ▸ Plug-ins
    To run photoshop cs5.1 in 32 bit mode, right click on the Adobe Photoshop CS5.1.app, click on Get Info
    and then check Open in 32-bit mode

  • I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the Component and Audio ports on my TV?

    I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the MacBook Pro and connected to the TVs Component and Audio in ports.

    Will not work.  To my knowledge, dual converting like that isn't supported.  The Mac must detect the connected video output device and that sort of info cannot be done across an analog component uni-directional connection.

Maybe you are looking for

  • How to connect cuts in final cut pro

    I would like to re-connect cuts that I have made in my project, how do I go about doing that? TIA D

  • Convertir une image "Grayscale I16" en "RGB U64"

    Bonjour, je cherche depuis un petit moment sur tous les forums que je connais, et je ne trouve pas de réponse à mon besoin, à savoir convertir une image en niveaux de gris de 16 bits en RGB 64 bits. J'ai réussi à le faire en 32 bits, mais la dégradat

  • Commadmin create user inputfile wrong character set

    hi! im adding several users with non-ascii characters through inputfile (-i) with commadmin: l recepciosavinyeta F Recepci� L Sa Vinyeta W passtest d example.com S mail,cal E [email protected] [...]when i go to DA i can see Recepci� is not displayed

  • Close the application from a window or a view

    Hi, I need to check some prerequisities in the WDDOINIT of a window. If they are not available I send a pop up window to confirm to the user with the missing information. When the Ok button is selected I would like the application to be exit, I mean

  • Question & Help

    I'm thinking about upgrading my Hard drive in my macbook, to a higher capcity. I was wondering is there a way to copy the whole current MAC HD then coping it to the New Hard drive?