You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/pyRevitTools.extension/pyRevit.tab/Analysis.panel/Tools.stack2/Inspect.pulldown/Find Linked Elements.pushbutton/script.py
Copy file name to clipboardExpand all lines: extensions/pyRevitTools.extension/pyRevit.tab/Drawing Set.panel/Print.pulldown/Print Ordered Sheet Index.pushbutton/script.py
Copy file name to clipboardExpand all lines: extensions/pyRevitTools.extension/pyRevit.tab/Drawing Set.panel/Revision.pulldown/Create Revised Sheet Set.pushbutton/script.py
-1
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,6 @@
3
3
frompyrevitimportforms
4
4
5
5
6
-
__author__='{{author}}'
7
6
__doc__='Select a revision from the list of revisions and this script '\
8
7
'will create a print sheet set for the revised sheets under the '\
9
8
'selected revision, and will assign the new sheet set as '\
Copy file name to clipboardExpand all lines: extensions/pyRevitTools.extension/pyRevit.tab/Drawing Set.panel/Sheets.pulldown/Batch Sheet Maker.pushbutton/script.py
Copy file name to clipboardExpand all lines: extensions/pyRevitTools.extension/pyRevit.tab/Drawing Set.panel/Sheets.pulldown/Copy Sheets to Open Documents.pushbutton/script.py
Copy file name to clipboardExpand all lines: extensions/pyRevitTools.extension/pyRevit.tab/Drawing Set.panel/views.stack3/Legends.pulldown/Copy Selected Legends As Detail Views To Open Documents.pushbutton/script.py
Copy file name to clipboardExpand all lines: extensions/pyRevitTools.extension/pyRevit.tab/Drawing Set.panel/views.stack3/Legends.pulldown/Copy Selected Legends To Open Documents.pushbutton/script.py
Copy file name to clipboardExpand all lines: extensions/pyRevitTools.extension/pyRevit.tab/Drawing Set.panel/views.stack3/Views.pulldown/Find Referring Views.pushbutton/script.py
+13-10
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@
5
5
frompyrevitimportscript
6
6
7
7
8
+
logger=script.get_logger()
8
9
output=script.get_output()
9
10
10
11
@@ -30,12 +31,12 @@
30
31
31
32
classReferencingView:
32
33
def__init__(self, view_id):
33
-
self.element=doc.GetElement(view_id)
34
+
self.element=revit.doc.GetElement(view_id)
34
35
ifnotself._valid_view():
35
36
raiseException()
36
37
37
-
title=self.element.LookupParameter('Title on Sheet').AsString()
38
-
self.name=titleiftitleelseself.element.ViewName
38
+
titleos=self.element.LookupParameter('Title on Sheet').AsString()
Copy file name to clipboardExpand all lines: extensions/pyRevitTools.extension/pyRevit.tab/Drawing Set.panel/views.stack3/Views.pulldown/Purge Unused Filters.pushbutton/script.py
+25-25
Original file line number
Diff line number
Diff line change
@@ -45,28 +45,28 @@ def name(self):
45
45
46
46
ifnotunusedFilters:
47
47
forms.alert('All filters are in use. No purging in necessary.')
0 commit comments