On 1/23/01 8:44 AM, "john terranova" <[EMAIL PROTECTED]> wrote:

> set msg to message 1 of folder 1
> --  incoming message id 1
> get connection action of msg
> --  leave on server
> connection action of msg = leave on server -- this line generates an error

I don't know for sure what you mean by "generates an error". In AppleScript.
that line is a statement that is either true or false. You should not be
getting an error message - you should be getting "false" if the connection
action does not currently happen to be "leave on server".

On the other hand, if you're trying to make this happen and getting "false"
where you'd like a something to happen, you are using syntax from other
programming languages which sets properties this way, but incorrect AS
syntax here. Do you in fact mean to say:

    set connection action of msg to leave on server

?

-- 
Paul Berkowitz


-- 
To unsubscribe:               <mailto:[EMAIL PROTECTED]>
To search the archives: 
          <http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>

Reply via email to