Notifications
Clear all

[Closed] Edit poly GrowSelection????

Does anyone know how to invoke the Grow selection command from MaxScript in the Edit Poly modifier??

I found the GrowSelection() function but it works only on editable Poly mesh object, the EditPoly modifier doesn’t have it.
The function also doesn’t display in the Macro recorder
Any ideas?

2 Replies

Hi Filip,
create some geometry, add an Edit Poly Modifier and activate it, go into sub object selection and select some elements, then run following script to grow the selection.

Take a look at ButtonOp under “Edit_Poly : Modifier” to invoke standard interface commands.

(
    local theEditPolyMod = modPanel.getCurrentObject()
    theEditPolyMod.buttonOp #growSelection
)
  • Enrico

Tanks, a lot.
Don’t know how I’ve missed it specialy that I used it a line above with #MeshSmooth :))