Hi,
I use this applescript to add recipients to a given list
However when I use it in a loop the "SelectList" part does not finish loading before the new recipient is added and the list is saved which ends up truncating my list. Any idea how to designate "wait till list is loaded" before continuing ?
I use this applescript to add recipients to a given list
Code:
tell application "my drive:Applications:MaxBulk Mailer:MaxBulk Mailer.app"
activate
SaveList
SelectList "x"
AddRecipient
SaveList
end tell
However when I use it in a loop the "SelectList" part does not finish loading before the new recipient is added and the list is saved which ends up truncating my list. Any idea how to designate "wait till list is loaded" before continuing ?