Page 1 of 1

sending email with contents of fields.. and checkboxes?

Posted: Thu Dec 15, 2011 1:04 am
by sx-74
Hey all,
I have used this script on a button for my iOS card.

Code: Select all

   revMail "here@there.com",,"Instructor Contact Information", field "your_name" & cr & "Semester Teaching" & cr & field "semester_teaching" & cr & "The best way to reach me:" & field "how_to_reach" & cr & "Class Information:" & cr & field "class_day_time" & "Room Preference"
It is crude, but it works.

Is it possible to include "checked" checkboxes in this email as an option so that 'checked' boxes 1 - 5 would also be included?
How would that be labeled?

Code: Select all

If the checkmark of "check2" is true   ?
Thanks

- Jay

Re: sending email with contents of fields.. and checkboxes?

Posted: Thu Dec 15, 2011 9:03 pm
by sx-74
This looks like a rather kludgy work around.. but what about..

Code: Select all

on mouseUp
   if the hilite of button "check1" then
      put "apple" into field "check1a"
end if
end mouseUp
Which I could then tie into the script that sends the email from above..

Thoughts?