Hey guys,
This is my first time trying to even delve into the world of programming, so excuse my lack of knowledge. I've been trying to get my Adium Status and push it to be my Twitter "status" (actually the next tweet). No programs out there do anything of the sort, so I tried to use a template GUI script to automate the process of going to Status->Twitter Account->Set to Current Adium Status. This is the code I was trying to use:
tell application "Adium"
activate
end tell
tell application "System Events"
tell process "Adium"
tell menu bar 1
tell menu bar item "Status"
tell menu "Account Name"
click menu item "Set to Current Adium Status"
end tell
end tell
end tell
end tell
end tell
return true
It keeps telling me it can't find that menu option under Status. Am I missing something obvious? The actual path of clicks should be Adium->Status->Twitter Account->Set to Current Adium Status.
Thanks in advance!
This is my first time trying to even delve into the world of programming, so excuse my lack of knowledge. I've been trying to get my Adium Status and push it to be my Twitter "status" (actually the next tweet). No programs out there do anything of the sort, so I tried to use a template GUI script to automate the process of going to Status->Twitter Account->Set to Current Adium Status. This is the code I was trying to use:
tell application "Adium"
activate
end tell
tell application "System Events"
tell process "Adium"
tell menu bar 1
tell menu bar item "Status"
tell menu "Account Name"
click menu item "Set to Current Adium Status"
end tell
end tell
end tell
end tell
end tell
return true
It keeps telling me it can't find that menu option under Status. Am I missing something obvious? The actual path of clicks should be Adium->Status->Twitter Account->Set to Current Adium Status.
Thanks in advance!