//This script will turn the primary visibility attribute for selected objects to On. //written by Dru abrams //revised 3.17.04 global proc daVisOn() { string $select[] = `ls -sl`; for ( $node in $select ) //print $node; { float $sel = `getAttr ($node + ".primaryVisibility")`; setAttr ($node + ".primaryVisibility") 1; } };