Hi! I need to select multiple object vertices. They all share the same number of vertex, but the names are different. I guess it should be pretty straight forward short MEL script - select vtx nr 5 for all selected objects, but my MEL skills are non existing. Or maybe there's another way to do it? Thanks!
Something happened with my previous post and it seems to be missing. corrected the sprunghunt's code a bit select -r $obj .vtx[5] ; i could not get multiple vertex selection with it so i did some searching. anyways, here's the script i did after a little bit of scrolling through the internet. mix and match string $sel[] =…
Alrighty. I did some corrections to the previous sprunghunt's line and i got something that works with one vertex select -r $obj.vtx[5] ; I could not get the multiple vertex selection with this one line, so i scrolled some forums and came up with this: string $sel[] = `ls -sl`; string $obj; for ($obj in $sel) { select -r…