13 lines
345 B
Python
13 lines
345 B
Python
|
|
|
|
print get_option("Choose:" , option_type = SwingUtils.OptionType.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)
|
|
|
|
|
|
#show_message(msg, title = None, blocking = False)
|