From 7262da381bee07d6a61e0177393e30ffbc3b2f19 Mon Sep 17 00:00:00 2001 From: panepucci Date: Tue, 28 Jun 2016 17:51:18 +0200 Subject: [PATCH] Startup --- script/test/test.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 script/test/test.py diff --git a/script/test/test.py b/script/test/test.py new file mode 100644 index 0000000..a70aa88 --- /dev/null +++ b/script/test/test.py @@ -0,0 +1,12 @@ + +show_message("My message", title = "Title", blocking = True) + +print get_option("Choose:" , type = "YesNoCancel") + +print get_string("Enter string:", default = "default") + +print get_string("Choose string:", default = "default", alternatives = ["default", "alt1", "alt2"]) + +print get_string("Enter password:", password = True) + + \ No newline at end of file