Re: applescript-users digest, Vol 3 #1785 - 10 msgs
Re: applescript-users digest, Vol 3 #1785 - 10 msgs
- Subject: Re: applescript-users digest, Vol 3 #1785 - 10 msgs
- From: Bernard Azancot <email@hidden>
- Date: Fri, 27 Jun 2003 08:58:05 +0200
Le vendredi, 27 jun 2003, ` 07:00 Europe/Paris,
email@hidden a icrit :
Sounds like Bernard may have inserted the code into a tell "Tex-Edit
Plus"
block:
================================
tell application "Tex-Edit Plus"
set nbr to words of "xx xx xx xx"
set text item delimiters to ""
set nbr to nbr as string
end tell
--> "Tex-Edit Plus got an error: Can't set text item delimiters to
\"\"."
================================
This is an example of where the use of "AppleScript's" (or, for JD's
benefit, "my") is required:
================================
tell application "Tex-Edit Plus"
set nbr to words of "xx xx xx xx"
set AppleScript's text item delimiters to ""
set nbr to nbr as string
end tell
--> "xxxxxxxx"--
Kai
YES SIR !
GOOD GUESS SIR !
As newbie I would be delightetd to learn when this "AppleScript's"
magic keyword is necessary.
Are there other TID outside AS ?
Thanks again.
Regards
Bernard
_______________________________________________
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.