//author : Walter Behrnes //title : Hiarchy selection //version : 1.0 //date last motified : ? been awhile since I wrote this //** open in your script editor and drag to shelf //I made this mel script to use with skeletal set up. To use this script simply select the joint //you would like to grab the children under and hit the Push ME button. This will select all the //children of that joint. **NOTE THIS IS NOT PART OF MAYA** RENDERING THIS SCRIPT REDUNDANT if ( (`window -ex Children`) == true ) deleteUI -window Children; string $window = `window -w 150 -h 150 -title "Children Select" Children`; columnLayout -adj true; separator -height 10; text -label "Children Selector:"; separator -height 10; button -label "Push ME" -align "center" -c "select -hi;"; separator -height 10; button -label "Close" -command ("deleteUI -window Children"); showWindow $window; // end script