| Description |
|---|
This macro must be used with Macro_Toggle_Visibility2_1-2 This macro makes all objects visible respecting the original visible and hidden objects after use the Macro Toggle Visibility2 1-2 Macro version: 00.02b Last modified: 2017-07-27 FreeCAD version: All Download: ToolBar Icon Author: openfablab |
| Author |
| openfablab |
| Download |
| ToolBar Icon |
| Links |
| Macros recipes How to install macros How to customize toolbars |
| Macro Version |
| 00.02b |
| Date last modified |
| 2017-07-27 |
| FreeCAD Version(s) |
| All |
| Default shortcut |
| None |
| See also |
| Macro Toggle Visibility2 1-2 Macro Toggle Visibility |
This macro must be used with Macro Toggle Visibility2 1-2
This macro makes all objects visible respecting the original visible and hidden objects after use the Macro Toggle Visibility2 1-2
Copy the macros and the icons in your folder macros and run (see How to install macros)
Macro_DisplayAllObjects2_2-2.FCMacro
import FreeCAD
#original name "Macro_VisibleAlls" pratical name "Macro_Toggle_Visibility2_2-2" "Macro_Toggle_Visibility2_1-2" associate with "Macro_Toggle_Visibility2_2-2"
__title__="Macro_DisplayAllObjects2_2-2"
__author__ = "openfablab"
__url__ = "https://freecad.org/index-fr.html"
__version__ = "00.00b"
__date__ = "27/07/2017"
try:
for ShapeNameObj in FreeCAD.actual: # displyed alls objects
#print ShapeNameObj
FreeCADGui.ActiveDocument.getObject(ShapeNameObj).Visibility = True
except Exception:
None