Hi, I just tried to make a listbox in python3 but that isn’t working, so I tried with Rhino UI, but that doesn’t work either:
import rhinoscriptsyntax as rs
import Rhino
items = []
items.append("test 0")
items.append("test 1")
items.append("test 2")
### This doesn't work so I made another, but that doesn't work either
#print rs.ListBox(list)
title="test"
message="test"
default = 0
result = Rhino.UI.Dialogs.ShowListBox(title, message, items, default)
print(result)