As laziness is the mother of invention, or something like that.
I’ve created an AppleScript for VoodooPad. What it does is allow you to select a specific Web Export Plugin and it will show the package contents of that particular plugin. This is only and especially useful if you develop, tweak or otherwise modify any Web Export Plugin.
property webExportPlug: "VoodooPad:Web Export Plugins:"
set theFolder to (path to application support from user domain as text) & webExportPlug
tell application "Finder"
set thePackage to (choose file default location (theFolder as alias) without invisibles)
set thePackage to (thePackage as text) & "Contents:"
open folder (thePackage as alias)
activate
end tell
Copy this and paste it into a new AppleScript. Enjoy.
Related posts:
- Quick Links AppleScript Last week, in response to a plea from Steve; he...
- VoodooPad goodness Thanks to Gus Mueller for loads of help adapting a...
- VoodooPad Automation I’ve finally gotten it working. I’ve now got a Ruby...
- VoodooPad + GTD + Applescript -> NetNewsWire VoodooPad + GTD + Applescript -> NetNewsWire Leland Johnson wrote...
- VoodooPad Pro Blogging It’s time to package up all my VoodooPad Pro blogging...
Related posts brought to you by Yet Another Related Posts Plugin.