Notifications
Clear all

[Closed] edittext as selection

Hallo,
I am new in maxscript.
I have a problem. I want to make a selection with a part of edittext.

Example:

edittest = Wall
Geometry:
Wall001
Wall002

… so I want :
$Wall*

I dont know how I can do that…
Can somebody help me?

–sorry for my bad English–

3 Replies

nodes = Execute (“$”+edittest+”*”);

nodes[i] – wall i

select nodes

You can also use “getNodeByName” which should be faster. Search for it in the maxscript help.

Thank you—

very nice