Simon, or anybody for that matter... :0
I still believe there is a problem passing data into the "To" position of the mobileComposeMail command....If you do this...
on mouseUp
put "
SomeEmail@yahoo.com" into tMail
mobileComposeMail tSub,tMail,,,tBod
end mouseUp
The result is you get the "To" portion of the email populated with the local var tMail, but if you do this....
on mouseUp
put fld "someField" of group "someGroup" into tMail
mobileComposeEmail tSub,tMail,,,tBod
end mouseUp
you get nothing.....I have even answered the tMail prior to firing off the mobileComposeMail command just to see if the variable is holding data....(and it is)
Could you or someone please verify that I am not crazy? Create a field, make a button and script it just like I have and tell me the results....cause it ain't working for me!
** and yes, I am declaring the variables outside the handler everywhere I use tMail...just fyi
Thanks!!