Thanks Eşref Çağatay Güven for the idea... Found under category:Savas. Note: object must be editable poly.
/* ****************************** * * Savas Cetin 2017 * www.savascetin.com * NOTE:This script comes without any warranty.Make sure to backup your work before usage. * Use at your own risk! ********************************/ MacroScript HideFromUVW category:"Savas" buttonText:"HideUVW" toolTip:"Hide Polygons From UVW" ( if classof $.baseObject==Editable_Poly then ( army= $.modifiers[#Unwrap_UVW].getSelectedFaces() $.EditablePoly.SetSelection #Face army $.modifiers[#Unwrap_UVW].hide () $.EditablePoly.Hide #Face redrawViews() ) ) MacroScript UnHideFromUVW category:"Savas" buttonText:"UnHideUVW" toolTip:"Unhide Polygons From UVW" ( $.modifiers[#Unwrap_UVW].unhide () $.EditablePoly.unhideAll #Face redrawViews() )
This macroscript hides polygon faces from unwrap uvw selection.