I'll preface this with the fact that I'm new to applescript...

I have iChat set up to run this script whenever a new message is received:

using terms from application "iChat"

    on message received theMessage from theBuddy for theChat

        set theHandle to handle of theBuddy

        tell application "MyApp"
            receivedInstantMessage from theHandle message theMessage
        end tell

    end message received

end using terms from

This works as expected an MyApp (which I'm coding) receives two strings (the handle of the buddy and the message content). The only trouble is that this script only seems to work once at least one message has been received in iChat. I.e the script seems to only work from the second message onwards. If the buddy logs out, he'll have to send two messages again before my app receives the AppleEvent.

Am I making a basic mistake here?

link|improve this question

no, it seems like other people had this problem too. Somehow the "on message received theMessage from the buddy for theChat" is only called at the second message – woodleader Feb 1 '11 at 10:06
That is very annoying. Is there a workaround? – Garry Feb 1 '11 at 10:28
feedback

1 Answer

up vote 1 down vote accepted

The first message is actually a "text invitation" so your notification script will need another handler:

on received text invitation theMessage from theBuddy for theChat
  --  your tell app statement goes here
end received text invitation

On a sidenote: if my answer to your previous question helped, would you mind marking it as such? If you found another solution yourself, please post it there for other users to see.

link|improve this answer
Thank you! That solved the problem. I added the new handler and told iChat to run the script on text invitation as well. The previous answer was helpful and I've marked it for you. – Garry Feb 1 '11 at 12:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.