1
0
mirror of https://github.com/marty-oehme/scripts.git synced 2024-06-16 21:34:56 +00:00
qownnotes-scripts/example-script/example-script.qml
2017-05-16 16:33:15 +02:00

16 lines
426 B
QML

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.");
}
}