Skip to Content
Beginning AppleScript®
book

Beginning AppleScript®

by Stephen G. Kochan
December 2004
Beginner
600 pages
13h 42m
English
Wrox
Content preview from Beginning AppleScript®

13.10. GUI Scripting

GUI Scripting gives you the ability to script almost any application on the Mac. It does this by mimicking the actions of clicking the mouse, selecting menu items, and typing keystrokes. The next Try It Out gives you a quick look at how to use this technique for scripting applications.

13.10.1.

13.10.1.1. Try It Out: Introduction to GUI Scripting

This program shows how you can copy the text inside your TextEdit window to your application without knowing the specific AppleScript command to do this. You saw how to use the clipboard commands earlier in this chapter to accomplish this; these steps provide another approach.

  1. Select System Preferences from the Apple Menu.

  2. In the System Preferences window, click the icon labeled Universal Access.

  3. Check Enable Access for Assistive Devices. Enter your administrative password when prompted.

  4. Close the System Preferences window.

  5. Launch the TextEdit application.

  6. Type some lines of text into the TextEdit Window.

  7. Type the following program into Script Editor:

    -- Copy the text from TextEdit's window to the clipboard
    
    tell application "System Events"
       tell application process "TextEdit"
            set frontmost to true
            click menu item "Select All" of menu "Edit" of menu bar item "Edit" ¬
                    of menu bar 1
            click menu item "Copy" of menu "Edit" of menu bar item "Edit" of menu bar 1
        end tell
    end tell
    
    delay 1
    the clipboard
  8. Click the Result tab and run the program. The text from the web page you loaded should be displayed in the Result pane.

13.10.1.2. ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Take Control of Your M-Series Mac

Take Control of Your M-Series Mac

Glenn Fleishman

Publisher Resources

ISBN: 9780764574009Purchase book