Re: TIDs and other questions
Re: TIDs and other questions
- Subject: Re: TIDs and other questions
- From: John Delacour <email@hidden>
- Date: Fri, 25 Apr 2003 20:23:49 +0100
- Mac-eudora-version: 6.0a16
At 1:07 pm -0400 25/4/03, Deivy Petrescu wrote:
Question:
One problem I have been having (for a while with X) is the following,
when I type :
AppleScript's text item delimiters
or simply
text item delimiters.
AS does not understand the "delimiters" as part of the App keywords.
I have to remove the final "s", recompile and them put the final "s"
again and recompile. Sometimes more than once to get it to properly
understand the whole expression.
Does anybody have or heard of this problem?
As I mentioned the other day, it is NEVER necessary to use
"Applescript's" and I don't understand why anyone continue to do so,
but it is most important to use MY if you are running the script in
an application:
This will work:
tell application "Eudora"
MY text item delimiters
end tell
-- and this will not:
tell application "Eudora"
text item delimiters
end tell
It is a good rule ALWAYS to use MY unless you know you mean something else.
JD
.
_______________________________________________
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.