make new person with properties {organization: "drama", city: "Miami", state:"Fl"}
doesn't work because city and state aren't properties of the person class. So I tried
make new person with properties {organization: "drama", address:{city: "Miami", state:"Fl"}}
which applescript compiled without complaints, but didn't work (only the organization was entered into the new person record.
I tried taking the long route and trying
make new person with properties {organization: "drama"}
set city of new person to "Miami"
set state of new person to "Fl"
but that didn't input the info either.
Any ideas?