Adium

Profile: Matt Schinckel (schinckel)

Mail
AIM
Website http://schinckel.net
Comment Count 5 comments
5 xtras

Latest comments

# by schinckel on 09/26/05 at 06:41:44

Glad to know my current conversation thing is starting to do the rounds ;)

# by schinckel on 08/28/05 at 02:11:54

The other version created an archive of the track, and left this on the desktop after sending.

Mine doesn't.

# by schinckel on 08/26/05 at 06:09:36

I've created a modified version of this that uses the display name, and (IMHO) formats the response nicer.

http://schinckel.blogsome.com/2005/08...hatting-to/

# by schinckel on 08/14/05 at 06:49:21

I'll try again!


on substitute()
tell application "Camino"
«class curl» of window 1
set myURL to the result
set myTitle to name of window 1
end tell
return "<HTML><A HREF="" & myURL & "">" & myTitle & "</A></HTML>"
end substitute

# by schinckel on 08/14/05 at 06:47:42

With recent versions of Camino, you can replace all of the ugly code with:

on substitute()
tell application "Camino"
«class curl» of window 1
set myURL to the result
set myTitle to name of window 1
end tell
return "" & myTitle & ""
end substitute

(I hope this doesn't mangle my html, it's my first post).

It's faster, and no window popping.