Model tree contrast

Model tree contrast

Anonymous
Not applicable
331 Views
1 Reply
Message 1 of 2

Model tree contrast

Anonymous
Not applicable

I have difficulty with inventor on my laptop, there's not enough contrast so when I edit a part within an assembly, I am unable to find it in the model tree and I don't think there's an option to change the colors.

0 Likes
332 Views
1 Reply
Reply (1)
Message 2 of 2

JelteDeJong
Mentor
Mentor

You could make a iLogic rule that select the part you are editing. Then it gets highlighted with more contrast. but maby its inconvenient to run the rule each time.

 

try puting this rule in an external ilogic rule.

Dim aDoc as AssemblyDocument = ThisApplication.activedocument
Dim occ as ComponentOccurrence = aDoc.ComponentDefinition.ActiveOccurrence
If (occ IsNot Nothing) Then
	aDoc.SelectSet.Select(occ)
End If

Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

EESignature


Blog: hjalte.nl - github.com

0 Likes