Set Variable Equal to a User-defined Checklist

Hello Community!

Im trying to shorten the time spent emailing customers every Monday. For sake of example, I have 10 customers that i email individually with a standard email on Monday morning. Sometimes, one of the customers may email me before i get to them, therefore i don’t want to send this scripted email.

Knowing this, I’d like make a script that pops up a check list of the same 10 customers, but i can uncheck the ones i don’t want to email.

Any ideas on how to set up the that kind of input?

Thanks!

Would be a good idea to look at :
http://macscripter.net/viewtopic.php?id=44661

Yvan KOENIG running El Capitan 10.11.4 in French (VALLAURIS, France) lundi 25 avril 2016 22:43:41

–something simple:


set theList to {"a", "b", "c", "d", "e", "f", "g", "h", "i"}

set theChoices to choose from list theList default items theList with prompt "Command-click items to ignore:" with multiple selections allowed

return theChoices --> list containing only desired list items