Automator "watch me do" function freezes finder

As I was creating a new service using the "watch me do" function in automator, my finder froze each time I tried to test the service I just created. As I was watching the recorded steps, the cursor would start to move extremely slowly and finally froze completely. I was able to reproduce this problem several times. This is in SL 10.6.

I am experiencing the same thing in SL 10.6.1. I was testing a very short and simple automator "watch me do" workflow to perform a simple cut and paste between iWork 09 Numbers and Filemaker 10. Cursor did not freeze but began to move extremely slow. The first and second iteration seemed to work okay. But, it took 87 and 108 seconds to complete third and fourth tests. Successive efforts had similar results. This workflow had only one step (watch me do) in it and nothing else. It was also not part of a loop. I was also NOT able to force quit out of this.
I never experienced this with Leopard. Is this a bug or is there something new with Automator in SL that I am not picking up on?

Similar Messages

  • Search function freezes Finder - any help?

    i recently reformatted my computer. i wanted to upgrade to 10.4 but my disk for it just didn't want to work in my computer, so i simply put Panther back on. i am currently running 10.3.9 and most everything seems to work well. it takes a lot longer to boot up than it used to but otherwise no complaints EXCEPT:
    my Search function doesn't work well at all. when i run a search (any type) my Finder grinds to a terribly slow speed or just totally freezes. i can continue to run any other programs, but Force Quit won't even pop up. i have to turn the computer off by hand.
    this was a pain but avoidable until i went to install some software yesterday and found that when the installation program began to "search" my computer, the process froze up (despite repeated attempts).
    is there a way to get Search back to normal?
    imac g4   Mac OS X (10.3.9)  

    Hi nikfurious!
    "i recently reformatted my computer. i wanted to upgrade to 10.4 but my disk for it just didn't want to work in my computer, so i simply put Panther back on."
    Please explainn the procedure you used for this operation.
    Were you using a Full Retail Version of the Tiger Install DVD?
    How did re reinstall Panther?
    Have you run Repair Disk & Repair Permissions?
    What size is your Hard Drive, and how much space is available?
    How much RAM is installed, and is it original or added?
    ali b

  • Function to find quantity of a material in Open sales Order in 4.5

    hi ,
    is there any function to find the total quantity of a material in open sales order for an input date in 4.5
    Regards

    I think you may find function <b>RV_BILLING_PRINT_VIEW</b> helpful. This is the function used by the standard SAP report <b>RVADIN01</b> to assemble all the information needed to print a Sales Order. The structure and table output by this function contain all the information in the header and line items of the Sales Order.
    To watch this function in action, set a break point on this function (line 1075 of RVADIN01 in my system) and print a Sales Order (SO).
    I use VF31 to print an arbitrary SO during testing.
    Your company may have altered the standard print configuration for sales orders in SAP. If so, you will need to note the output type of your test Sales Order in VF31 and use Transaction <b>V/83</b> to determine which program is being used to print that type of SO.

  • Automator Watch Me Do gets stuck on "Enable Access for Assistive Devices

    I built a simple Automator Watch Me Do Work Flow that simply pastes text I have already copied into Text Edit and then sets the Font, Size, Color and Make All Caps function.  Every time I run the script it stops and gives me the following error "Enable Access for Assistive Devices".  I have gone into System Preferences/ Universal Access a number of times and confirmed the check box is selected, I even unselected the check and ran the Auotmator script and went back and reselected the check box, I even rebooted my machine, I tired this on another Mac same problem. I must be missing something, can anyone help me out?

    Boot into recovery mode and reinstall the OS. You don't need to get it from the App Store.
    27" i7 iMac (Mid 2011) refurb, OS X Mavericks (10.9.4), ML & SL, G4 450 MP w/Leopard, 9.2.2

  • Write two functions to find the the number of elements in a linked list?

    I am trying to Write two functions to find the the number of elements in a linked list. One method using recursion and One method using a loop...
    //The linked List class is Represented here.
    public class lp {
    public int first;
    public lp rest;
    public lp(int first1, lp rest1)
    first = first1;
    rest = rest1;
    The program i wrote so far is
    import java.util.*;
    import linklist.lp;
    public class listCount{
    //loop function
    public static void show_list(lp list)
    int counter = 0;
    while(list != null)
    list = list.rest;
    counter++;
    System.out.println ("length computed with a loop:" + counter);
    //recursive function
    public static int recursive_count(lp list)
    if (list.first == null)
    return 0;
    else
    return recursive_count(list.rest) + 1;
    //main method
    public static void main (String args[])
    lp list1 = new lp(1, new lp(2, new lp(3, null)));
    show_list(list1);
    System.out.println("length computed with a recursion:" +
    recursive_count(list1));
    at the if (list.first == null) line i get the error " incomparable types:
    int and <nulltype>" I know this is a beginners error but please
    help...What should I do?

    byte, char, short, int, long, float, double, and boolean are primitives, not objects. They have no members, you cannot call methods on them, and they cannot be set to or compared with null.

  • Every time I sign into my Macbook, I get an error message from Automator; "The data couldn't be read because it has been corrupted.". I have never created an Automator workflow. How do I find out what Automator is trying to run and stop it?

    Every time I sign into my Macbook, I get an error message from Automator; "The data couldn't be read because it has been corrupted.". I have never created an Automator workflow. How do I find out what Automator is trying to run and stop it?

    Maybe it's set as a login item:
    - System Preferences: Users and Groups:
    - Highlight your user account in the left pane/list
    - Click "Login" tab at the top.
    See if you have an Automater action on the list
    - Note, you can select it, then right-click, and can then select "Reveal in Finder". That way you might have an idea what installed it.

  • I updated to 7.0.1 and my search function cannot find anything now

    I updated to 7.0.1 and my search function cannot find anything now

    Searching the email. When i type in the keywords, it looks like it's searching, but the results are always the same - nothing found. I've used this function many times daily, I have an enormous amount of emails saved. Thanks...

  • Function to find cost center for pernr

    hello,
    I looke for a function to find pernr's cost centeres from infotype 0027 (not from infotype 0001).
    Thanks in advance,
    Fariba

    Hi,
    why do you need FM for that
    you can select the data directly from PA0027.
    select * from PA0027 into X_0027 where pernr = pernr
                                      and begda ge date
                                      and endda le date.
    regards
    Vijay
    Message was edited by: Vijay Babu Dudla

  • Standard function to find alphabet in string?

    Is there a standard function to find alphabet in string?
    For example, a variable define as char (10),
    I need a function to find out if this variable contains alphabet.
    Any standard function there?

    hiii
    use following code
    data: wa_str(100) type c.
    data: wa_str1 type string.
    data: wa_str2 type string.
    data: wa_str3 type string.
    data: len type i.
    data: ofset type i.
    wa_str = 'ABCD435hjK'.
    len = strlen( wa_str ).
    TRANSLATE wa_str TO UPPER CASE.
    do.
      if ofset = len.
        exit.
      endif.
    if wa_str+ofset(1) co sy-abcde  .
          concatenate wa_str2 wa_str+ofset(1) into wa_str2.
    else.
        concatenate wa_str3 wa_str+ofset(1) into wa_str3.
      endif.
      ofset = ofset + 1.
    enddo.
    write:/ wa_str.
    write:/ 'alphabatic char', 20 wa_str2.
    here TRANSLATE wa_str TO UPPER CASE.
    statement have added .i hope this will solve your problem.
    regards
    twinkal

  • HT201303 It appeared that the seller didn't disconnect function to find my iPhone and now I can make nothing with phone.

    I bought iphone 5c phone on Ebay, the seller in the description specified that phone is completely cleared and ready to work. It appeared that the seller didn't disconnect function to find my iPhone and now I can make nothing with phone. I have an invoice about purchase, I can provide the page of the transaction and screenshots from phone.
    I appealed to the seller to remove this device from the iCloud at distance, but he at all doesn't wish me to understand and speaks only about phone return, and it categorically doesn't suit me now.

    hexonxonx wrote:
    I stand by statement that the iPhone is likely stolen
    Whoopsie!
    Another reason: You said he doesn't understand that find my iPhone is activated. If the phone was originally his, he would have known what it was since he had to turn on find my iPhone to begin with.
    Doens't mean they know what FindMyiPhone is or that they even activated it.
    Many (most?)  users simply click thru without reading anything and don't have a clue what they are clicking on.

  • Function to find the greatest of two numbers

    Hi All
    In the rtf template, is there any function to find the greatest between two numbers?
    Please help
    Thanks in Advance

    Just like SQL, use the GREATEST function. List of comparable SQL functions is shown on or about page 9-30 of user guide (depends on which version you have). Search on GREATEST and you'll find it.

  • When I use the function of "finding keyword", the word would be shown in green. Can I set the colour by myself?

    When I use the function of "finding keyword"(ctrl+f), the keyword would be shown in green. I want to change the highlighted colour to be blue. Is there any function to change the colour?

    See '''''cor-el's''''' answer in this thread: https://support.mozilla.com/en-US/questions/900541
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *'''''Shockwave Flash''''' (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Oracle sql function to find VARCHAR2 data is numeric

    Hi Everyone,
    Is there oracle sql function to find whether the VARCHAR2 data is numeric?
    Thanks

    hi,
    see the below example .
    with t as
    (select '12'  as col from dual union all
    select '1 2'  as col from dual union all
    select '2 1 3'  as col from dual union all
    select 'abcde'  as col from dual union all
    select '12345'  as col from dual union all
    select '1a4A5'  as col from dual union all
    select '12a45'  as col from dual union all
    select '12aBC'  as col from dual union all
    select '12abc'  as col from dual union all
    select '12ab5'  as col from dual union all
    select '12aa5'  as col from dual union all
    select '12AB5'  as col from dual union all
    select 'ABCDE'  as col from dual union all
    select '123-5'  as col from dual union all
    select '12.45'  as col from dual union all
    select '1a4b5'  as col from dual union all
    select '1 3 5'  as col from dual union all
    select '1  45'  as col from dual union all
    select '1   5'  as col from dual union all
    select 'a  b  c  d'  as col from dual union all
    select 'a b  c   d    e'  as col from dual union all
    select 'a              e'  as col from dual union all
    select 'Steven'  as col from dual union all
    select 'Stephen'  as col from dual union all
    select '111.222.3333'  as col from dual union all
    select '222.333.4444'  as col from dual union all
    select '333.444.5555'  as col from dual union all
    select 'abcdefabcdefabcxyz'  as col from dual union all
    select 'aaa'  as col from dual union all
    select 'ddd'  as col from dual union all
    select 'ccc'  as col from dual union all
    select 'aaaaa'  as col from dual union all
    select 'aaaaaaaa'  as col from dual
    select * from t where regexp_like(col,'[1-9]')
    Result
    COL
    12
    1 2
    2 1 3
    12345
    1a4A5
    12a45
    12aBC
    12abc
    12ab5
    12aa5
    12AB5
    123-5
    12.45
    1a4b5
    1 3 5
    1  45
    1   5
    111.222.3333
    222.333.4444
    333.444.5555Thanks,
    P Prakash

  • Execution of workflow automation failed due to "Could not find a part of the path 'D:\Program

    Hi,
    Execution of workflow automation failed due to "Could not find a part of the path 'D:\Program Files\NetApp\WFA\jboss\standalone\tmp\wfa\workflow_data\35517.xml"
    Netapp case has been raised  and confirmed there is no issue with the WFA application, no clue to diagnose the issue.
    Execution fails continously 3 or 4 runs then get success, intermittent failure occurs.
    WFA version :2.2
    OS: Windows 2008
    Can someone please help me to fix the issue?
    Thanks
    Deepak

    Parag also pointed out that the BURT number is 833488 which has been fixed in 3.0.Please read the public report for more details. RegardsAbhi

  • My GoFlexPro for Mac external drive will not work and freeze Finder after I switched to Mountain Lion. Anyone same trouble?

    My GoFlexPro for Mac external drive will not work and freezes Finder after I switched to Mountain Lion. Anyone same trouble?

    Search this site for many reports of problems with GoFlex drives.

Maybe you are looking for

  • Unable to install iTunes 12.1.2

    Hi, I am prompted to install the latest version of iTunes via Apple Software Update.  It downloads quite quickly, but then fails to install.  It gets about two-thirds through the installation process.  I get a very generic error afterwards (see image

  • Adobe Illustrator CS5 Setup Mistake (Clicked on "provide a serial number")

    Hi everyone, The instructions for installing Adobe Illustrator CS5 told me to to chose the option "Install this product as a trial" instead of "Provide a serial number" when I get to the "Enter a Serial Number" step.  I don't know why I was so stupid

  • How to enable my ipad air..

    how to enable ipad air...??can somebody help me..

  • Help, Cant install Mountain lion. Hardrive format issues

    I'm on a late 2009 macbook pro laptop and i decided to upgrade to the new mountain lion update. I've paid and downloaded the files, but upon install i get this what do i need to do?, I dont have an hardrive to back up and i don't wanto loose the file

  • How to view whos looked at facebook

    want to know who has looked at my facebook profile. this is why i got this app.