Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
Anonymous
294 Views, 1 Reply

Model tree contrast

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.

JelteDeJong
in reply to: Anonymous

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