Thanks to a new addition to Java 6, Tagger will soon be supporting plugins via a JavaScript interface. Want to add your own functionality to the program? An API will soon be available for a forthcoming release of Tagger [Java 6] so that you can write your own scripts. For instance, you may want to dump a file’s tags to a .txt file, or maybe you want to interact with iTunes.
Stay tuned for more information about this in the coming week.
Update: I’ve worked out a large portion of this functionality already, and have made a simple script to show as an example of how easy it is to write your own. I will also be writing some documentation on all the functions available.
The following snippet would cause tabs to close after they have been saved:
var CloseOnSave = {
tabSaved : function(tab) {
tab.close();
}
};
Tagger.addSaveListener(new TSaveListener(CloseOnSave));