Re: The Ones & Oh's of Logic
Re: The Ones & Oh's of Logic
- Subject: Re: The Ones & Oh's of Logic
- From: "Jason W. Bruce" <email@hidden>
- Date: Sun, 17 Mar 2002 13:05:30 +0000
David Groover asked
>
* * *
>
tell application "Palm Desktop"
>
set strFullname to full name of address 0
>
set strEmail to text of address 0
>
end tell
>
>
Thanks
>
>
Dave Groover
>
>
PS - the second part (isn't working right)
>
--------
>
tell application "Claris Emailer"
>
activate
>
create mail subject "" recipients {name_old:strFullname,
>
address_old:strEmail, type_old:0}
>
>
end tell
>
-------
Since strFullname and strEmail are variables called within a tell
application "Emailer" block, AppleScript will search Emailer's dictionary
for those terms and won't see them defined elsewhere in your script. In
order to make these variables visible within the tell block, try prefixing
them with the term my, e.g., recipients {name_old:my strFullname,
address_old:my strEmail, type_old:0}
Jason Bruce
_______________________________________________
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.