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

16 lines
426 B
QML
Raw 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
*/
QtObject {
/**
* 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.");
}
}