Highend3d is a phenomenal resource for MEL scripts. You might also want to check out cgtalk.com's Maya MEL forum -- they have a lot of good advice. cgtalk MEL forum However, in case you want to just copy one set of UV from one model to another, you can do the following: 1) Select the model you want to transfer the UVs…
I dont know of any, but you should check out fat asians stuff if you haven't, he could have something similar. http://www.jhaywood.com/maxScripts.htm just in case you didnt see it before.
thanks scott. While that worked it was not exactly what i want. I want to copy uv's from one set to another on the same object. Sofar (with a little help from highend3d!) i come up with this: string $objname[]=`ls-sl`; for( $i=0 ; $i<(`size($objname)`); ++$i){ select -r ($objname[$i]); polyCopyUV -uvi "map1" -uvs…