pillory69 - 2005-01-16

Logged In: YES
user_id=1198144

Though I've a complete newbie to AppleScript, I've tweaked one of the
existing scripts linked to from the Sci-Fi page like so...

tell application "Safari"
set w to front window
set theTitle to name of w
set theURL to URL of document of w
end tell

tell application "Cocoalicious"
activate
make new post with properties {description:theTitle, url:theURL, tag
string:"test"}
end tell

This means I create a new entry from the scripts menu in Safari. BUT - I
guess I need the script to fire up Cocoalicious' dialog box so I can assign
tags.

Please does anyone know how to do this?