Scripting
From FreeMind
FreeMind 0.9.0 beta series has a scripting facility using Groovy.
To find out about it, see FreeMind 0.9.0: The New Features.
| Table of contents |
[edit]
Menu
- Tools > Script Editor
[edit]
Keyboard
- Alt + F8: run a script
[edit]
Using
New scripts can be created using the script editor. Alternatively, you can plainly create an attribute whose name starts with "script" such as "script2"; such an attribute is understood by FreeMind to be a script.
[edit]
Implementation
Scripts are stored in an attribute whose name reads "script" followed with a numeral, meaning in the attribute of the attribute function, not in the attribute of XML.
The script attributes are probably distinguished from non-script attributes by their starting with "script".
An example of storage in XML:
<node TEXT="hello"> <attribute NAME="script1" VALUE="=node.getNodeLevel() + " " + node.getText()"/> </node>
[edit]
