The Artima Developer Community
Sponsored Link

Agile Buzz Forum
Using AppleScript from Cincom Smalltalk

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
James Robertson

Posts: 29924
Nickname: jarober61
Registered: Jun, 2003

David Buck, Smalltalker at large
Using AppleScript from Cincom Smalltalk Posted: Feb 15, 2008 9:20 AM
Reply to this message Reply

This post originated from an RSS feed registered with Agile Buzz by James Robertson.
Original Post: Using AppleScript from Cincom Smalltalk
Feed Title: Cincom Smalltalk Blog - Smalltalk with Rants
Feed URL: http://www.cincomsmalltalk.com/rssBlog/rssBlogView.xml
Feed Description: James Robertson comments on Cincom Smalltalk, the Smalltalk development community, and IT trends and issues in general.
Latest Agile Buzz Posts
Latest Agile Buzz Posts by James Robertson
Latest Posts From Cincom Smalltalk Blog - Smalltalk with Rants

Advertisement

I was prepared for AppleScript access from VW to be hard, but it turns out that it's pretty simple. I created a small script like this:


#!/usr/bin/osascript
tell application "Finder"

        if folder "Applications" of startup disk exists then

                return count files in folder "Applications" of startup disk

        else

                return 0

        end if

end tell

And then executed a chmod 755. Then from Smalltalk, I did this:


ExternalProcess cshOne: '/Users/jarober/Documents/simple.scpt'

Did a printIt, and got back the same answer that I did at the command line. The thing that makes it all possible is that you can run an AppleScript the same way you can run an arbitrary shell script on Unix/Linux. Boy, that opens up some nice possibilities I wasn't aware of :)

Technorati Tags: ,

Read: Using AppleScript from Cincom Smalltalk

Topic: Ice Ball Morning Previous Topic   Next Topic Topic: Mundane Problems

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use