Q My keybard short cuts ie. Q,W,E,G ect dont workopen up your script editor in maya.
go to Edit > Clear All. then paste the following to the bottom section of the script editor (Its called Input work area)
// Toggle Xray
//
string $visPanel[]=`getPanel -vis`;
int $mode;
if (size($visPanel)>0)
{
for ($panel in $visPanel)
{
if (`match "^modelPanel" $panel`=="modelPanel")
{
$mode=`modelEditor -q -xray $panel`;
if ($mode>0)
modelEditor -e -xray 0 $panel;
else
modelEditor -e -xray 1 $panel;
}
}
print ("\nxray="+$mode+".");
} else
print ("\nNo model panels to modify.");
after pasting it. highlight the whole code (ctrl + A) then go to File > Save Selected to Shelf, give a name to it. then it'll add the mel script onto the shelf that is active.
- orig posted by tonymd191) Find the Maya.env file (...\Documents and Settings\User\My Documents\maya\7.0)
2) Open it with any text editor such as notepad
3) Add the following line to the end of the file:
MAYA_NON_POWER_TWO_OFF = 1
This will tell your graphics card to display the images differently.
4) Save and reset Maya.
Thank you everybody
actually CTRL + M only brings back the program's main menu (with file, edit, create, etc.)Originally posted by 13th_resident
Q: how come part of the ui has gone missing?
A. press ctrl + M to bring back the whole ui. or go to display > ui elements, then check the ones you want or dont want.