I think this app kinda slipped under the radar due to a misleading Versiontracker listing.
Text Wielder is basically a services development environment. You can make your own services. But it also functions as a Services to AppleScript Bridge.
As a services bridge to applescript, you can send text to a non-services aware app! (like Eudora).
Read the rest of the article for a sample AppleScript service for Text Wielder that makes a new message in Eudora.
1. Create a new SFURL service in Text Wielder.
2. Select "execute as applescript" from the service action menu.
3. Enter Find Text:
tell app "Eudora 5.1 (OS X)"Pretty much self explanatory. The StringUtilities code is taken from the appleworks sample text wielder script.
activate
set varBody to ""
set varMsg to make message at end of mailbox 2 with invisible
tell varMsg
set field "" to varBody
open
end
end
Comments (0)
Mac OS X Hints
http://hints.macworld.com/article.php?story=20020106085858721