You could always store the current selection in an array, do your function then select the stuff in the original array again. May not work if you are …
Isnt that just what max’s shrink wrap does?
cant you use the “self” command? or am I thinking of a different use?
I asked about this problem in the vray forums, and can confirm that it is not working for 1.50 SP2, both using append gizmo and trying to directly ass…
ahhh, thankyou ZeBoxx2. I did check the max help but sometimes its hard to know what to search for! Cheers again
I ended up using a Box3 to copy the MAtID to the integer channel, then used a script operator to assign the Integer channel to a global array. Seemed …
I meant I couldnt access it externally. Ill give the script operator a go.
I tried the integer channel, but you cant get access to that either
Thats it! Thanks Bobo! I had the right idea but not the 1337 scripting skillz to do it! Thanks mate!
This is what I have at the moment… doesnt quite work x=#(“1”, “2”, “3”) y=#(“a”, “b”, “c”, “d”) z=#(“y”, “z”) arr = #(x, y, z) count = 1 manAr…
Yep something like that… but it wont dynamically work for w=#(“9”, “8”) x=#(“1”, “2”, “3”) y=#(“a”, “b”, “c”, “d”) z=#(“y”, “z”) or just y=#(“a”, “b…