Hello All,
I'm introducing a tool I created that made my life easier, and may be useful to some of you. Essentially, I had a huge number of tiddlers I need to tag, and I wanted to drag the tiddler onto the tag to add it. With the following I can do that. It can also do anything that you can implement using the ActionWidgets. For the purposes of the widget, at the time of dropping it, <<currentTiddler>> is set to the target of the dropped link.
<$dropaction>
<$fieldmangler>
<$action-sendmessage $message ="tm-add-tag" $param="Testing" />
</$fieldmangler>
<<tag Testing>>
</$dropaction>
This plugin is available at my plugin library as the "DropAction Widget". It overrides "$:/core/modules/widgets/fieldmangler.js". To access my plugin library, go to
http://mklauber.github.io/tw5-plugins/
To just try out this plugin, look at the attached empty.html
Thanks,
Matt