Unable to open Hypershade Window, Maya 2017

Unable to open Hypershade Window, Maya 2017

Anonymous
Not applicable
2,643 Views
2 Replies
Message 1 of 3

Unable to open Hypershade Window, Maya 2017

Anonymous
Not applicable

 

 

Screen Shot 2017-06-02 at 3.42.54 AM.png

When I click on the Hypershade icon to open it, a normal Hypershade window is visible for only one second, then an empty black Hypershade window pop up with this message: "Press Tab to create a node" (See screen shot).

Can you help?

 

 

0 Likes
2,644 Views
2 Replies
Replies (2)
Message 2 of 3

mspeer
Consultant
Consultant

Hi!

 

Try a reset of your preferences.
Rename the folder prefs in folder 2017 to something like prefs_backup, or to reset everything, the folder 2017 to 2017_backup. Maya creates new folders. Detailed at:
https://knowledge.autodesk.com/support/maya/troubleshooting/caas/sfdcarticles/sfdcarticles/Reset-May...

0 Likes
Message 3 of 3

Anonymous
Not applicable

This script fixes it: (just paste in your script editor, highlight text....middle drag to a shelf. (mel script))

 

 

$allWindows = `lsUI -windows`;

for ($window in $allWindows)

{

if ($window != "CommandWindow" && $window != "ConsoleWindow" && $window != "MayaWindow" && $window != "ColorEditor")

{

deleteUI $window;

}

};

 

 

It'll close and reset the hypershade on your main screen (if you re-open it), but better than having to mess with prefs or relaunching Maya.

0 Likes