I am currently trying to make a new contact group using Applescript. Does anyone have a working example code for that or can help me debug mine?
My non-working code:
Code: Select all
tell application "Adium" to tell account id 13 to make new contact group "test" with contacts {contact "contactName"}I also tried this:
Code: Select all
tell application "Adium" to make new contact group "test" with contacts {contact "contactName"}---------------
More info, if needed / helpful:
I've found a working example code to create a new chat:
Code: Select all
tell application "Adium" to tell account id 13 to make new chat with contacts {contact "contactName"} with new chat windowAlso, I found the account ID by using
Code: Select all
tell application "Adium" to get accounts