I guess this is a bug report, but I don't know how else to contact the ASTranslate developers. I'd like to hear how to translate this AppleScript to appscript properly.

Here's the AppleScript (first snippet):

http://dinhviethoa.tumblr.com/post/5967294192/applescript-with-sparrow

tell application "Sparrow"
    activate
    set theMessage to make new outgoing message with properties {subject:"meeting at 4:00", content:"We'll be 4 to discuss about the future of our life."}
    tell theMessage
         make new to recipient at end of to recipients with properties {name:"John Doe", address:"john@gmail.com"}
         make new to recipient at end of cc recipients with properties {name:"Sonia Jones", address:"sonia@gmail.com"}
         sendmessage
    end tell
end tell

ASTranslate reveals:

app(u'Sparrow').activate()

app(u'Sparrow').make(new=k.outgoing_message, with_properties={k.content: u"We'll be 4 to discuss about the future of our life.", k.subject: u'meeting at 4:00'})

Runtime Error:
The variable theMessage is not defined. (-2753)

What I was trying (that crashed Sparrow hard):

sparrow = app('Sparrow')
sparrow.activate()
sparrow.help()
msg = sparrow.make(new=k.outgoing_message,
                   with_properties={k.subject:"Foo",
                                    k.content:"Bar"})
msg.make(new=k.to_recipient,
         at=msg.to_recipients.end,
         with_properties={k.name:"foo@bar.com"})
msg.sendmessage()

Any help appreciated, thanks.

link|improve this question

80% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.