// renderActualView.mel // Version 1.0 // hacked by Volker Heisterberg (volk@renderwahnsinn.de) // Usage: This is just a small script for those people (like Martin Rahmlow :-) ) who // are really offended by maya asking them which view they want to render when they got // only one view open, but it is not active ... run renderActualView from the command line // or create a shelf with this command to get rid of this annoiance! global proc renderActualView() { setFocus `paneLayout -query -pane1 viewPanes`; renderIntoNewWindow render; }