Re: Palm Desktop 4.1 (creating a memo)
Re: Palm Desktop 4.1 (creating a memo)
- Subject: Re: Palm Desktop 4.1 (creating a memo)
- From: Paul Berkowitz <email@hidden>
- Date: Wed, 30 Apr 2003 23:47:28 -0700
On 4/30/03 11:04 PM, "Chris Page" <email@hidden> wrote:
>
On Wednesday, Apr 30, 2003, at 20:38 US/Pacific, Paul Berkowitz wrote:
>
>
> if he simply does what everyone else does:
>
>
>
> set newMemo to make new memo
>
> tell newMemo
>
> --etc.
>
>
>
> there won't be any confusion, and no need for 'contents of contents'.
>
>
I tried this, but I find I still have to use 'contents of contents'.
>
>
tell application "Palm Desktop"
>
set newMemo to make new memo
>
tell newMemo
>
set title to "test"
>
set contents to "this is cool" -- still get an error here
>
end tell
>
end tell
Ah, I forgot it was in a subsidiary tell block. What happens if you add
'its':
tell application "Palm Desktop"
set newMemo to make new memo
tell newMemo
set its title to "test"
set its contents to "this is cool" -- ??
end tell
end tell
--
Paul Berkowitz
_______________________________________________
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.