Files
x06da/script/test/test.py
2019-03-06 11:35:18 +01:00

12 lines
331 B
Python

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)