Automator actions blocked

Just went into Automator to try something and saw that almost all of the actions associated with iPhoto are blocked: their icons are greyed out and have a sort of "no entry" sign over them. Here's a screenshot showing a number of examples, one of which is highlighted:
iPhoto 11 version 9.5.1 is installed.
Is this normal? If not, any idea how the actions can be reactivated?

The actions are present and apparently correct in HD/System/Library/Automator
I have repaired permissions.
2014-01-16 18:13:37 +0100: Disk Utility started.
2014-01-16 18:13:44 +0100: Repairing permissions for “Macintosh HD”
2014-01-16 18:13:45 +0100: Permissions differ on “Applications/Utilities”; should be drwxrwxr-x ; they are drwxr-xr-x .
2014-01-16 18:13:45 +0100: Repaired “Applications/Utilities”
2014-01-16 18:14:44 +0100: Group differs on “Library/Printers/InstalledPrinters.plist”; should be 80; group is 0.
2014-01-16 18:14:44 +0100: Permissions differ on “Library/Printers/InstalledPrinters.plist”; should be -rw-rw-rw- ; they are -rw-r--r-- .
2014-01-16 18:14:44 +0100: Repaired “Library/Printers/InstalledPrinters.plist”
2014-01-16 18:15:55 +0100: Group differs on “Library/Preferences/com.apple.alf.plist”; should be 80; group is 0.
2014-01-16 18:15:55 +0100: Repaired “Library/Preferences/com.apple.alf.plist”
2014-01-16 18:18:15 +0100: Group differs on “private/var/db/GPURestartReporter”; should be 0; group is 80.
2014-01-16 18:18:15 +0100: Permissions differ on “private/var/db/GPURestartReporter”; should be drwxr-xr-x ; they are drwxrwx--- .
2014-01-16 18:18:15 +0100: Repaired “private/var/db/GPURestartReporter”
2014-01-16 18:18:35 +0100:
2014-01-16 18:18:35 +0100: Permissions repair complete
Same situation upon reopening Automator.
Dragging an Xed out action to the workflow does not result in a message, but the action appears as if it were part of the workflow, except that its icon remains "blocked".
Running such an action appears to work, in that it takes time to, for example, Find iPhoto Photos, and "Action is running" is displayed in the Results window. 436 seconds (just over 7 minutes) to search for photo with specific filename in a set of 6300 photos; the result was incorrect, "No results produced," although the photo with the filename is in the set.

Similar Messages

  • Shutdown a remote iMac using Apple Remote Desktop and Automator action

    Hi,
    I have my iMac and my wife's iMac connected to the same UPS. There is only one USB connector for the UPS that notifies my iMac when its time to shutdown due to a power cut out.
    Is there a way for my iMac to then send a command to my wife's iMac (which may be asleep; the iMac not my wife!) and instruct it to shutdown (forcefully)?
    The Belkin UPS software enables me to launch an automator action before it shuts down my computer.
    Your help would be appreciated,
    Tony

    Unless you already have Apple Remote Desktop, it will almost certainly be cheaper to just buy a second UPS for your wife's iMac than it will be to purchase ARD.
    If you do have ARD 3 already, then it looks like it would be possible to create an Automator workflow that would select your wife's iMac and then send the Unix command "shutdown" (look at the man page for shutdown for the usage). I haven't tried doing this, though, so I can't say for sure, but it looks like it would work.

  • How can I edit an Automator action for Word?

    I'm running Word 2008 on a Macbook Pro, Mac OS 10.5.
    Word comes with a selection of Automator actions, including one to find and replace text in Word. I often want to convert standard numerals to old-style numerals, which are part of the extended glyphs set in fonts I use. Automator will allow me to set up ten find/replace actions (for the numbers 0-9) that successfully replace all the numerals with old-style numerals. But it only does it for the main body of the document, not for the footnotes. I need to be able to do it for all the footnotes.
    I thought I might find a workaround by adding an AppleScript to my workflow, which would shift the focus in Word to the footnotes and rerun the find/replace actions. I mapped the menu item View/Footnotes to the keystroke command-) and inserted this AppleScript into the Automator workflow:
    tell application "Microsoft Word"
    tell application "Microsoft Word" to activate
    tell application "System Events"
    tell process "Microsoft Word"
    keystroke ")" using command down
    end tell
    end tell
    end tell
    But the find/replace actions simply repeat what they'd done before, converting the numerals in the main body but not in the footnotes. I then thought that perhaps I should have an AppleScript to do the find/replace itself, once the footnotes have been selected, so I created the following (command-H accesses the find/replace dialog box in Word 2008):
    tell application "Microsoft Word"
    tell application "Microsoft Word" to activate
    tell application "System Events"
    tell process "Microsoft Word"
    keystroke "H" using command down
    keystroke "1"
    keystroke tab
    keystroke ""
    end tell
    end tell
    end tell
    The character after the fourth keystroke command is the glyph for old-style numeral 1. For some reason Word reinterprets this as the letter a. So using AppleScript I can only replace the numerals 1-9 with the letters a-i.
    I'm pretty hopeless at even this very basic level of programming, but I presume that there's something in the Automator action 'Find and replace in Word' that specifically tells it not to look anywhere but the footnotes. I also presume it's possible to insert a command to tell it to operate on the footnotes (and headers and footers: everywhere!) too.
    Does anyone know a way to edit an Automator action? I'm willing to experiment and fiddle with one until I find a way that works, if nobody knows the exact changes that I'd need to make, but I just don't know how to edit an Automator action in the first place. A bit of googling suggests that I could do it in XCode, and that that is bundled with my Mac, but I don't have it.
    This all used to work when Office used to allow VBA (and I was using a horrible Windoze machine). Maybe someone would prefer just to find a way of creating a solution our of the old code, so here's one part of what I used (to change the number 1):
    For Each aStory In ActiveDocument.StoryRanges
    With aStory.Find
    .ClearFormatting
    With .Replacement
    .ClearFormatting
    End With
    .Execute FindText:="1", ReplaceWith:=ChrW(63281), _
    Format:=True, MatchCase:=True, Replace:=wdReplaceAll
    End With
    Next aStory
    Thanks in advance for any help.

    Thanks to all three contributors for their generous help so far. Mac people are lovely.
    BDAqua's suggestion wouldn't work, I think, because copying footnote text into another application and then back into Word would lose all the associations between footnote references in the body and the footnotes themselves. I wish I could do what Klaus1 says, but Word 2008 won't allow the creation of Macros any more. They've shut off support for their creation. Nice MS. red_menace's suggestion seems very plausible and I'll look into a way of mapping the old style numerals to specific keystrokes. That might do it.
    Reflecting on what you all said, I looked again through Word's help menus and eventually got pointed towards this page of 'help': <http://tinyurl.com/6398l6>. This is completely impenetrable for me, though it does compare a VBA script for Word 2004 to an AppleScript. This encourages me to hope that it should be possible to translate my original VBA script (part of which I included in my first message) into AppleScript, though I don't know how to do it because I don't really understand the language in the first place (the VBA script was put together by someone else).

  • FTP Get File List Action Block, It's double listing files!  ver 11.5

    Hi guys.. I have a good one!   I have an FTP Get File List action block in my BLS transaction.  Occasionally, it double lists the files in its output.   For testing I put a repeater with a logevent output where I log the filename, date, and size.  Heres what I saw for my action block output.
    2009-02-13 00:38:00,963  [UserEvent] : File Name: DMM_Export_0010056.txt, File Date 2009-02-13T00:36:00, File Size 339
    2009-02-13 00:38:00,963  [UserEvent] : File Name: DMM_Export_0010056.txt, File Date 2009-02-13T00:36:00, File Size 339
    This is xMII  version 11.5.6 b73  with java 1.4.2_07
    I have a workaround by putting in a distinct action block, after the filelist, but anybody have an idea why this might happen?   My theory is that something might be occuring if the file is being written to while we try to process it, but not sure. 
    I've been building BLS parsers since 2003, (Remember those fun times with Jeremy?)   I've never seen this happen.

    My example is a sample log file before the distinct action.  The general log shows nothing other than the subsequent transaction errors I get as a result of running the same error twice (Tcode return from BAPI calls etc)
    Here is something else interesting..  my userlog file is acting funny, like its trying to write on top of itself.  could it be the transaction is actually running twice or parts of it? 
    For example look at the following log entries
    This is how my log file entry for a production confirmation should look
    2009-02-13 00:38:06,854 [LHScheduler-Int10_NestingWOProdConf] INFO   UserLog - [UserEvent] :
    However sometimes... its looking like this...
    2009-02-13 2009-02-13 00:38:11,854 [LHScheduler-Int10_NestingWOProdConf] INFO   UserLog - [UserEvent] :
    Like it started writing to the log, then started again.
    The problem we are having is that we have JCO calls to SAP in this transaction that does goods movement, we get locking / block errors back from our  saying that we (our sap account) is already updating the information.   Sometimes the information would be posted twice!  You can see how this has become a HUGE issue posting data to a LIVE system twice.
    This is happening on 2 xMII servers.

  • Error when using Web service Action Block.

    Hi All
    I am calling recursive function in my transaction.Means same transaction i am calling inside a transaction.I have used the Webservice Action block to call the transaction.
    I have passed the parameters whatever is requied.
    But I am getting error when i am executing the transaction:
    "Error invoking Webservice Action: Status(500):Internal Server Error".
    Please suggest me on this.
    Thanks in advance.
    Regards,
    Manisha

    Hi Vishal
    This transaction is trying to achieve the recursive function.
    I want to call the same transaction within a transaction.So i have used WebService action block to call the transaction.
    I have passed the input parameters whatever required.I have given loginName and password as my server login name and password.But when i am executing the transaction, I am getting the following error:
    "Internal Server Error"
    If any idea please suugest me.
    Thanks,
    Manisha

  • Using Automator action/workflow to create a poster in iPhoto

    I'm using Jim Heid's Mac iLife 'lifeposter' idea [which comes from Mike Matas] and I keep getting a message taht says "the workflow was saved with an older version of 'get Selected items' some behavior may have changed. and also another ref. 'import files into iPhoto" -- I didn't find a more recent Automator action 'Create Thumbnail Poster" online nor updated information at Matas's blog or Heid's book...any suggestions for how to fix this? I last used it a few years ago and would like to use it again.

    Unless you got a message about it, the original Create Thumbnail Poster may work with the version of iPhoto that you have. As for the other actions, they sound like standard actions that have just been updated - you can open the older application and recompile it using the newer actions.

  • Changing action name of sample custom action block in MII 12.2

    Hi all,
    I have a problem changing the action name of the custom action block sample. I've changed the content and successfully implemented the action block. But when I changed the action name and uploaded again, the action block cannot display any input parameters and output parameters. In the java console, I can see 3 rows of "Shared Properties Error: No File Defined" error. Can I get a hand on resolving this issue? Thanks.
    The From rows are the sample code. To row is what I changed to.
    In SimpleActions.java
    From:
    @Action(name = "AddTwoNumbers", referenceDocumentGenerator = ReferenceDocumentGenSample.class)
    To:
    @Action(name = "GBarcode", referenceDocumentGenerator = ReferenceDocumentGenSample.class)
    From:
    public static void addTwoNumbers(
    To:
    public static void gBarcode(
    In catalog.xml
    From:
    Component Type="Action"
    Name="AddTwoNumbers"
    To:
    Component Type="Action"
    Name="GBarcode"
    All other code remains the same.
    Best regards,
    Lawrence

    Hi Lawrence
    Did you remember to change the action name in the catalog xml as well? In the catalog xml the Name field denotes the name of the action. This needs to also change in case the Action Name is changed in the class.
    Please check this and change if not already done.
    Regards
    Partha

  • How can I add a picture to the Automator Action "Watermark PDF Documents.action"

    Looks like a bug: under 10.7.2 i cannot add a picture to the Automator Action "Watermark PDF Documents.action".
    Works perfectly under 10.6.8.

    Its a verified bug (Automator - Watermark PDF Documents).
    Please report to http://www.apple.com/feedback/macosx.html
    As a workaround, if you saved the Action in SL, option-click the action, navigate to the file "document.wflow", open in TextEdit, search for the key "fileNames" and replace your old image with the new

  • How to set item values without using fields in branch's ACTION block?

    Okay, I will try to say this in a easy way so it is not weird.
    I have created a button, SAVE, that has a Branch of branch type: Branch To Function Returning A Page. This is my code for the branch:
    if :P2008_NAP_SUPPORTING_MATERIALS = 'Yes' then
    return '2092';
    else
    return '2040';
    end if;
    The code for this type of branch is stored in the ACTION block of the Branch page. The ACTION block for a Branch of branch type: Branch To Function Returning A Page is different than the ACTION block for a Branch of branch type: Branch To Page Or URL.
    I need to set some item values with some specific values, which I can do with a branch type: Branch To Page Or URL. This is not possible with the branch type: Branch To Function Returning A Page. The ACTION block is totally different.
    How can I set some values on say Page 2040 from Page 2008 without using fields in the branch's ACTION block?
    Thank you in advance,
    Maggie

    Andy and Scott,
    I love seeing different perspectives in solving problems, it opens my eyes to new ways of looking at/using the tools (reserved words and 'Function returning a Page', etc.).
    One of my pet peeves has been that on branches I was limited to only 10 variables to be passed (I know, who would want more - but there was an instance where I had to pass more), and an even more frustrating time when using report Column Linking, which limits me to 3 variables.
    At least with the Branch linking I can use your suggestion Andy and add the variable setting statements into the function. I am assuming of course (and I should be able to) that I will be able to set more that 10 variables in a IF condition prior to the RETURN statement. This method will be much more understandable, for me, when looking through the branch at a later time to see what is happening, than an URL link where all the variable are strung out 'in a line' so to speak.
    I will still need to use URL Target branching on Links contained within a Column Attribute when I need to pass more than 3 variables, of which I have several places where I do this.
    Thomas

  • Trouble Cleaning Up At The End of an Automator Action

    So my automator action currently downloads a file (a .dmg), mounts it, copies its contents to Applications, and then... I then want to unmount the dmg and throw the dmg away. However, by this point I no longer have the references to these two items:
    download file -> mount file -> copy items
    I'd like to be able to get back to the downloaded file so I can trash it, but there's no way to "store" its name or reference or anything. Any ideas? Unfortunately I can't just do a search for it since its name is often different.
    Thanks in advance!

    ineedadifferent...
    Try adding the following steps at the end of your current workflow. Steps 1-4 are Finder actions; step 5 is an Auomator action:
    1) *Get Specified Finder Items* -- in the Open dialog navigate to your Macintosh HD > Users > +your name+ > Desktop. Select the Desktop folder and hit Open. Leave the Options unchecked.
    2) *Get Folder Contents* -- Leave both "Repeat for each subfolder found" and the Options unchecked.
    3) *Filter Finder Items* -- Whose: Name Extension - Is equal to - dmg. Leave the Options unchecked.
    4) *Move to Trash*
    5) *Run AppleScript* -- your script might look like this:
    on run {input, parameters}
    tell application "Finder" to eject (every disk whose local volume is true)
    return input
    end run
    Good luck!
    Andrew99

  • Automator action to move a specific file type to a folder..

    've started shooting pictures in raw and jpg format. After I grab the pics from my camera, I'd like to put the raw files in a separate folder.
    I've played around a little but can't figure it out-- so I dunno if it's possible. Is there a way I can make an automator action where I enter or select the folder and run the action. It then makes a folder named RAW and moves all of a certain file type to the RAW folder. Is this possible with automator?
    I'd like it to make a folder named RAW inside the current folder I'm in or have selected.
    I think I figured this out using filter finder items, and move to specific folder, but I think I need to learn how to use variables for this to work how I want it. Do I need variables or is there another way?

    the following script should do it provided your Raw image files have extensions "raw" (do they?). If they have another extension, modify next to the last line accordingly.
    tell application "Finder"
    set theFolderName to "Raw"
    set curFolder to (folder of the front window as alias)
    -- Determine whether the specified folder exists
    if folder theFolderName of curFolder exists then
    set theFolder to folder theFolderName of curFolder
    -- Create a new folder, if it doesn't exist
    else
    set theFolder to make new folder at curFolder with properties {name:theFolderName}
    end if
    move (every file of curFolder whose name extension is "raw") to theFolder
    end tell
    Save the above script as an application using Script editor. To use it, select the folder you want to work on and run the script.

  • Need to send success or failure message to BAPI of SQL query action block

    Hi All,
    I need to send success or failure message(i.e. 1 or 0) to BAPI which has been called below sql query action block in transaction
    Here in SAP, i have created on BAPI with one import parameter and one export parameter.
    In the sql query action block, it insert records in the database table. If it fail or success, that message(numeric value 1 or 0) has to send to SAP program through BAPI.
    I have created a SAP ABAP program which sends message to MII Message listener through RFC then in the process rule message it will call transaction, in transaction, sql query will insert records into database table.  if it success or fail, it will pass to BAPI. And i calling that BAPI in the same SAP ABAP Program to show in the output screen.
    Here the issues, i am not getting the value from BAPI which has send by the transaction in MII.
    SAP Jco, I have mapped in conf. links --> BAPI input with sql query sucess
    Thanks,
    Kind Regards,
    Praveen Reddy M

    Dear All,
    I am facing problem regarding completion notifications in Oraclr r12, when user click the upon completion generated notifications it can only be viewd once, second time user cannot view the notifications.
    I have find that fnd_file_temp table store this information and deleted it.
    Plz help me how to view this URL again.
    thanks
    regards,
    Zubyr

  • PDF Table action block is repeating first row in each page.

    Hi All,
    There is a strange problem in PDF Table action block. I am paasing one xml variable in the pdf table action block. But when it creates the final pdf  - I can see the very first row of the xml is getting repeated as first row of each page along with the header.
    Is there any solution - not to reapeat the first row of the xml in each page ?
    Thanks in advance for your response.
    Soumen

    Hi Michael,
    Installation of PDF Action is done based on this link-
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1109054
    MII Version - 12.0.7 Build(20)
    version 1.4.5. of
    the third-party iText.jar and iTextAsian.jar, from
    http://www.lowagie.com/iText/download.html
    Thanks,
    Soumen

  • Cannot add content to iTunes U using Woolamloo Automator Action

    We cannot use the Woolamloo Automator action to add any content to our iTunes U site recently. Ex: We created a workflow using “Get iTunes U XML” , “Find Sections in iTunes U XML” and “Add divisions into iTunes U” actions, the returned result was the section handle to which the division was expected to be added and the the log said “ Get iTunes U XML completed, Find Sections in iTunes U XML completed, Add Divisions into iTunes U completed, Workflow completed”, however, no division was added to the section actually. It’s the same with other adding content actions. But we had no problem with deleting actions.
    Meanwhile, we cannot access the iTunesU webservices, either. When we try “curl https://deimos.apple.com/WebObjects/Core.woa/API/ShowTree/nd.edu.roothandle?​credentials=(administrator credential)&identity=(identity)&time=(time)&signature=(signature)&x=true”, the result is : “Forbidden. You don’t have permission to access this document on this server”. Any suggestions would be highly appreciated.

    Yes, we still have this problem.
    We believe the shared secret and credentials are correct because we can get the site XML via Woolamaloo Automator action.
    We also attached the debug suffix in the script and the result was "Because the received signature and time were valid, the received identity and credentials were accepted by iTunes U." And we can use the same signature to log in to our iTunes U site. But when performing the HTTP GET request, we got the "request is forbidden" error.
    Thanks for your help, we do appreciate.

  • It once worked but now a simple automator action won't :-(

    I am trying to highlight songs in tunes and then copy the file into a folder. I've just got an empty folder on my desktop titled "Music". The automator action consists of: Get Selected Items (with itunes icon), and Copy Finder Items (to the Music folder). After I hit the Run button it proceeds to copy what appears to be my whole itunes library folder to the Music folder. I used to do this all the time and it worked perfectly taking little time. Now, not so lucky.
    Here is a link a picture of how automator looks while I run it. http://web.me.com/caseyheyer/Site/Blank.html

    Sometimes putting another action in between (even if it doesn't do anything) can get things going. It looks like iTunes Songs are easier to convert than iTunes Items, so give this a try:
    1) Get Selected iTunes Items
    2) Set Options of iTunes Songs (leave everything unselected)
    3) Copy Finder Items {To: Music}

Maybe you are looking for

  • Customer balance confirmation does not equal to customer line item display

    Hi All When I run F.17 transaction (program SAPF130D) the totals don't equal to "customer line item display" program (FBL5N) totals. When I run it for a specific customer and company code, I can see that some items from the customer line item display

  • Can we schedule FSG reports to run automatically?

    Hi Friends, I am wondering whether we can schedule FSG report to run automatically as standard reports. Thanks.

  • Windows don't close after using flash

    When viewing certain flash videos I am unable to close down firefox or any of its windows. When trying to save an image and pressing the save button it doesn't save it or close the browse window that is open. Same when trying to clear the cache the w

  • POP and IMAP aren't starting?

    I used the "Configure Mail Service" option, setup both POP and IMAP access for a couple of my users in the Workgroup Manager, and the Mail Service status is "Running" (also running are Outgoing/Incoming SMTP, Junk Mail Filtering, and Virus Scanning),

  • Workflow Process Name for Single/Bulk enrollment

    Hi, What is the Workflow Process Name for Single/Bulk enrollment through Learning Administrator ?