Search found 2 matches
- Wed Aug 31, 2005 8:06 pm
- Forum: Adium
- Topic: Import iChat logs into Adium?
- Replies: 2
- Views: 2055
Replacing the lines: ($chatname, $sender, $date, $time, $message) = /(.*?)\t(.*?)\t(.*?)\t(.*?)\t.*?\t(.*)\r/s; with: ($chatname, $sender, $date, $time, $message) = split(/\t/, $input[$i]); seemed to help out for me. I don't know why the regex is broken, it looks fine to me. Be sure to use the --use...
- Wed Aug 31, 2005 6:48 am
- Forum: Adium
- Topic: Get account name in script
- Replies: 0
- Views: 882
Get account name in script
Is there a way to extract the name of the account you are using from a chat object? The account property of a chat should have a UID property but this doesn't seem to work: set currentAccount to UID of the account of the active chat of the first interface controller Is there a better way to get the ...