• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Help with Find and Do with Multiple Applications
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Help with Find and Do with Multiple Applications


  • Subject: Re: Help with Find and Do with Multiple Applications
  • From: AT&T via AppleScript-Users <email@hidden>
  • Date: Thu, 12 Sep 2019 09:01:08 -0500

When I see “handler” in errors these days, I first wonder about those
inconvenient sandbox rules in Mojave. Are you using Mojave (10.14) or a beta
for Catalina? If running in Script editor you might need to add the Script
Editor app to the Accessibility and Full Disk Access areas of the Security &
Privacy prefpane. If you create AppleScript applications, you have to add each.

L. Lee

> On Sep 11, 2019, at 10:56 PM, Kellen Ruyle via AppleScript-Users
> <email@hidden> wrote:
>
> Hi! I am new to AppleScript and have been going through AppleScript 1-2-3 by
> Sal Soghoian and Bill Cheeseman. It’s great and I am learning a lot.
>
> I am working through a script but it seems to give me an error “Finder got an
> error; AppleEvent handler failed.”number-10000
>
> I am trying to generate a list of the names of the image files displayed in
> the frontmost Finder window, sorted by their file size, and then creating a
> new document in TextEdit containing the list of names. I can attach
> screenshot if need be. I have copied and pasted the code below. Any help
> would be great thanks!
>
> tell application "Finder"
>    -- generate a list of file references sorted by size
>    set these_items to sort (get every document file ¬
>          of the front Finder window) by physical size
>    -- generate a list of names
>    set these_names to {}
>    repeat with i from 1 to the count of these_items
>            set the end of these_names to ¬
>                  the name of (item i of these_items)
>    end repeat
> end tell
> -- convert the list of names to a paragraph-delimited text block
> set AppleScript's text item delimiters to return
> set the item_list to these_names as string
> set AppleScript's text item delimiters to {""}
> -- make a new document with the text
> tell application "TextEdit"
>    activate
>    make new document
>    set text of document 1 to the item_list
> end tell
>
> I greatly appreciate it!
>
> Regards,
> Kel
>
> Sent from my iPhone
>
>
>
> _______________________________________________
> Do not post admin requests to the list. They will be ignored.
> AppleScript-Users mailing list      (email@hidden)
> Help/Unsubscribe/Update your Subscription:
> Archives: http://lists.apple.com/archives/applescript-users
>
> This email sent to email@hidden

 _______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users

This email sent to email@hidden

  • Follow-Ups:
    • Re: Help with Find and Do with Multiple Applications
      • From: Kellen Ruyle via AppleScript-Users <email@hidden>
References: 
 >Help with Find and Do with Multiple Applications (From: Kellen Ruyle via AppleScript-Users <email@hidden>)

  • Prev by Date: Re: Help with Find and Do with Multiple Applications
  • Next by Date: Re: Help with Find and Do with Multiple Applications
  • Previous by thread: Re: Help with Find and Do with Multiple Applications
  • Next by thread: Re: Help with Find and Do with Multiple Applications
  • Index(es):
    • Date
    • Thread