Installs macros and scripts located in the plugins folder.
()
| 692 | |
| 693 | /** Installs macros and scripts located in the plugins folder. */ |
| 694 | void installMacros() { |
| 695 | if (macroFiles==null) |
| 696 | return; |
| 697 | for (int i=0; i<macroFiles.size(); i++) { |
| 698 | String name = (String)macroFiles.elementAt(i); |
| 699 | installMacro(name); |
| 700 | } |
| 701 | } |
| 702 | |
| 703 | /** Installs a macro or script in the Plugins menu, or submenu, with |
| 704 | with underscores in the file name replaced by spaces. */ |
no test coverage detected