I want to use sms mac in an app.
see http://www.smsmac.com/en/index.html
it works great
 I want to change the message line in the apple script from a fld when
the user inputs there message any ideas


 tell application "SMS Mac Scripting"
                           set account to "[EMAIL PROTECTED]"
                           set pin to "1234"
set m to make new outgoing sms with properties {flash:false}
                           tell m
set message to "Don't forget to go to the dry cleaner!" --------------Message set recipients to {"+12345678900", "+1345678901"}
                                 set sender to "+14567890123"
                                 set delivery report to true
                                 try
                                       send
                                 on error errMsg number errNum
display dialog "Error: " & errNum & ". " & errMsg
                                 end try
                           end tell
                     end tell
Liam Lambert
IRELAND
[EMAIL PROTECTED]



_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to