"Post to Blog" bookmarklet
One of the things I love about MovableType is that it has a web browser bookmarklet that makes it really easy to post a message to your blog based on the web site you're currently browsing.
Has anyone implemented something like this for Tiki? I've been running a mixed site of Tiki and MT and if I had a bookmarklet for blog posting, I'd completely convert over (something I'd REALLY like to do).
I am NOT a javascript guy, but here's my bookmarklet from MT. How can we do this for Tiki?
javascript:d=document;t=d.selection?d.selection.createRange().text:d.getSelection();
void(window.open('http://opportunityhaven.com/cgi-bin/mt.cgi?is_bm=1&bm_show=category&__mode=view&_type=entry&link_title='+escape(d.title)+'&link_href='+
escape(d.location.href)+'&text='+escape(t),'_blank','scrollbars=yes,width=400,height=490,status=yes,resizable=yes,scrollbars=yes'))
-swf