Hi. This is my second post on mac rumors and I would like to see a reply to this post. Anyway so I was making a script which opens a typing dialog which will send what you typed in the box to your email address... This is how I have done so far...
display dialog "Type your message" with icon 2 with title "Message Sender" default answer "" buttons {"Don't Send", "Send"} default button 2
copy the result as list to {text_returned, button_pressed}
Ok, now I need to get the reply from the original dialog box to be the "content" of the sent message through outlook.
tell application "Microsoft Outlook"
set newMessage to make new outgoing message with properties {subject:"Blah", content:""}
make new recipient at newMessage with properties {email address:{name:"Mac User", address:"example@example.com"}}
send newMessage
end tell
Ok if you could re-write this script so It works, then I would be so so happy!
P.S. My last post got no replies so replies would make me grateful!
display dialog "Type your message" with icon 2 with title "Message Sender" default answer "" buttons {"Don't Send", "Send"} default button 2
copy the result as list to {text_returned, button_pressed}
Ok, now I need to get the reply from the original dialog box to be the "content" of the sent message through outlook.
tell application "Microsoft Outlook"
set newMessage to make new outgoing message with properties {subject:"Blah", content:""}
make new recipient at newMessage with properties {email address:{name:"Mac User", address:"example@example.com"}}
send newMessage
end tell
Ok if you could re-write this script so It works, then I would be so so happy!
P.S. My last post got no replies so replies would make me grateful!