how do i make the text typed in 3 textfields send to my email with the click of one botton? here is the script i have in the appdelegate.applescript file
property parent : class "NSObject"
property textField1 : missing value
property textField2 : missing value
property textField3 : missing value
on setTextField_(sender)
tell application "Mail"
activate
set theInfo to the text returned in textField1 & textField2 & textField3
set newMessage to make new outgoing message with properties {subject:"", content:theInfo, visible:false}
tell newMessage
make new to recipient at end of every to recipient with properties {address:"mvm83@live.com"}
delay 0
send
end tell
end tell
end setTextField_
so far this isn’t working
Model: Macbook Pro
AppleScript: Version 2.3 (118)
Browser: Firefox 9.0.1
Operating System: Mac OS X (10.6)