Re: Handler trouble
Re: Handler trouble
- Subject: Re: Handler trouble
- From: Michelle Steiner <email@hidden>
- Date: Tue, 20 May 2003 08:04:36 -0700
On Tuesday, May 20, 2003, at 01:37 AM, Matyas Ferenc Farkas wrote:
I have a problem with handlers, when put a tell app "" in there.
--
tell application "Finder"
set x to 2
set y to 3
theHandler(x, y)
end tell
to theHandler(x, y)
display dialog (x as string) & y as string
end theHandler
--
What modification has to be done to work correctly?
tell application "Finder"
set x to 2
set y to 3
my theHandler(x, y)
end tell
--
Give Peace A Chance.
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.