How to pull two values from the VCB
-
The linetool example shows how to extract a single value from the VCB. I need to extract 2, just like the rectangle tool does, in "x,y" format. Is there an easy trick for that? CB.
-
string = "5,3" # Stuff the user entered into the VCB x, y = string.split(',') # Split the string at the commas and assigns the array to two variables
-
Clearly I was overthinking it! Thanks, Thomas.
-
@daiku said:
Clearly I was overthinking it! Thanks, Thomas.
Something none of us have ever been guilty of before
Chris
Advertisement