Profile: Matt Schinckel (schinckel)
http://schinckel.net | |
5 comments | |
5 xtras |
Latest comments
# 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.
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/
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
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.
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.
# by schinckel on 09/26/05 at 06:41:44