How can i create a pop out window, in grasshopper python that takes input.
like a component that will automatically open a pop out window for the user to insert inputs, as points or numbers. not sure if i was clear with the question
How can i create a pop out window, in grasshopper python that takes input.
like a component that will automatically open a pop out window for the user to insert inputs, as points or numbers. not sure if i was clear with the question
Hi, .NET forms can be accessed from within Python.
Try something like this. But honestly most information about .NET Forms are written for C#, I recommend switching to C#…
import System.Windows.Forms as forms
wnd=forms.Form()
wnd.Show()
Thanks, right now im checking this
i guess there is a potential even with python