Adium

Profile: jrolland

Comment Count 4 comments
0 xtras

Latest comments

# by jrolland on 08/21/09 at 23:59:08

Command-H?

# by jrolland on 08/20/09 at 18:14:21

Skype plugin for Adium 1.3.6 appears to be broken - does not authenticate with Skype

# by jrolland on 07/12/09 at 00:43:22

Found it!

Change line 101 at follows:

[code]
- tmp_status = account.message.get
=====
+ tmp_status = account.status.get
[/code]

(It looks like the line was copy/pasted from line 100 ("account.status_message.set(s)") and the wrong part of the middle was deleted - but that's just a wild-a** guess.

Hope this helps.

# by jrolland on 07/11/09 at 21:07:16

I made the change in line 114, but now I get a new error message when I try to update via Adium

Not the same
Twitter is newer
ERROR: Unknown property, element or command: 'message'
At line: /Library/Ruby/Gems/1.8/gems/rb-appscript-0.5.2/lib/appscript.rb:677:in `method_missing'./twitterit.rb:101:in `status='./twitterit.rb:98:in `each'./twitterit.rb:98:in `status='./twitterit.rb:145

Here are lines 96-107 in twitterit.rb

def status=(s)
tmp_status = nil
@instance.account.get.each { |account|
if account.enabled.get == true and tmp_status == nil
account.status_message.set(s)
tmp_status = account.message.get
elsif tmp_status != nil
puts "Setting status to: #{tmp_status.message.get}"
account.status.set(tmp_status)
end
}
end

Can anyone (RichardBronosky?) help?