//LightEditor v.1 for Maya 6.0.1 //Created by Ian Jones //Copyright 2005 //Last Changed Jan 6, 2005 //Creates a spreadsheet editor for all lights in the scene. Allows for easy manipulation of //multiple lights at a time. // // Light Editor v.1 // // Created by Ian Jones MelScripts@shrtcww.com // Created : 04 Janurary 2005 // // Usage: // simply run the command: // ijLightEditor; //opens light editor // // Ian Jones ©2004... global proc ijLightEditor() { string $window = `window -title "LightEditor v0.1 by Ian Jones" -menuBar true -menuBarVisible true -widthHeight 600 300`; menu -label "Tools" -tearOff false; menuItem -label "ReSelect Lights" -command ("select -r `listTransforms -lights`"); paneLayout; select -cl; select -r `listTransforms -lights`; string $activeList = `selectionConnection -activeList`; spreadSheetEditor -mainListConnection $activeList -ln true -showShapes true ; showWindow $window; }