Notifications
Clear all
[Closed] unhide Selected objects in the schematic
Nov 26, 2007 2:28 pm
Hi I am trying to create a script to unhide Selected objects in the schematic view
You can select hidden objects in the schematic view and then go to the main view their pivots are shown hidden and unhide them in obect properties – but it’s a long winded way – Ideally I want to add a quad item in the schematic view to hide/unhide
Any Ideas would be great.
2 Replies
Nov 26, 2007 2:28 pm
Selecting the objects in Schematic view actually selects the objects, so all you need is…
unhide selection
and then wrap that in a macro. That should do the trick, unless I am misunderstanding you.
Nov 26, 2007 2:28 pm
Don’t forget you’ll also have to unhide their layers to make sure they are shown when you unhide it.
for o in selection where not(o.layer.on) do o.layer.on = true