Re: Sound recording
Re: Sound recording
- Subject: Re: Sound recording
- From: "J.B. Stewart" <email@hidden>
- Date: Wed, 19 Dec 2001 07:23:45 -0500
On 12/19/01 at 8:23 AM, Signe Marie Sanne <email@hidden> wrote:
>
Hello, I'm new to this list as well as to AS, but I have used
>
SuperCard/MetaCard for many years. I'm looking for a script on how to
>
open the small sound recording panel on a Mac. This is built in in
>
SuperCard, but not in MetaCard, for which I need it. So far I have
>
found that the name of the panel is "Apple Simple Sound" or similar
>
(SimpleSound??) and I have found that there is a function on Mac
>
called "sndrecord" (the last is not part of MetaCard). Would someone
>
please provide me with an AppleScript for how to open the panel. I
>
have no need to save the sound to disk. Thanks in advance.
>
--
This script will run (open) SimpleSound but the application itself isn't
scriptable.
tell application "Finder" to open application file id "sSnd"
John