qownnotes-scripts/example-script/example-script.qml

16 lines
424 B
QML
Raw Permalink Normal View History

2017-05-16 13:52:33 +00:00
import QtQml 2.0
/**
* This script is just an example of how to use scripts
* Visit http://docs.qownnotes.org/ for more information about scripting
*/
2018-03-06 16:16:08 +00:00
Script {
2017-05-16 13:52:33 +00:00
/**
* Just show some log entries when the script is initialized
*/
function init() {
script.log("This is just an example script.");
script.log("Visit http://docs.qownnotes.org/ for more information about scripting.");
}
}