Re: get handler name
Re: get handler name
- Subject: Re: get handler name
- From: Jason Bourque <email@hidden>
- Date: Sat, 24 Mar 2001 07:00:12 -0500
>
On 3/22/01 5:03 PM, Jason Bourque <email@hidden> wrote:
>
>
> I just wrote this handler that lists the handlers in a script. Let me know
>
> how it works out.
>
>
on handlerLister()
>
set myScriptText to me as text
>
>
--> Can't make +script; into a string.
>
>
Changing it to
>
>
on handlerLister()
>
set myScriptText to name of me as text
>
get name
>
--> Can't make name of +script; into a string.
>
>
Changing it to
>
on handlerLister()
>
set myScriptText to name of me
>
--> Can't make some data into the expected type.
>
>
--Michelle
Hmmmm, what is wrong with your AppleScript? It works fine on my home(2) and
work machines(3). OS 9.0.4 and AS 1.4.3 limited osax. And it works in the
Generic Script Editor too. Maybe it just doen't like to work on Fridays : -)
Jason Bourque