This works for polys. Might work for everything.
///////////////////////////////////////////////////////////
// Mel script to toggle state of wire frame display on selected
// Randy Stebbing rstebbing@acclaim.com
// 5/1/00
global proc wireOnOff()
{
if (displayPref -q -wsa
== "none")
{
print ("Wire display on selected is ONn");
displayPref -wsa "full";
}
else
{
print ("Wire display on selected is OFFn");
displayPref -wsa "none";
}
}
///////////////////////////////////////////////////////////
Save this text as wireOnOff.mel and save it to a hotkey.
--JeffD