Clear Appearance Colors on Quick Access Bar

Clear Appearance Colors on Quick Access Bar

harvey3ELEA
Advocate Advocate
273 Views
1 Reply
Message 1 of 2

Clear Appearance Colors on Quick Access Bar

harvey3ELEA
Advocate
Advocate

Anyone have an ilogic code or method to add the 5 "Clear" (yellow, blue, green, clear, and light) appearance colors directly to the quick access bar as individual buttons, or in a pull-down menu?

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

bradeneuropeArthur
Mentor
Mentor

This code can be spit up in pieces and added to the ribbon and the to the quick acces toolbar. See also movie!

 

Dim a As Inventor.PartDocument = ThisDoc.Document
Dim b As Inventor.PartComponentDefinition = a.ComponentDefinition
'yellow, blue, green, clear, and light
MsgBox(a.ActiveAppearance.Name)
Dim s As Asset 
s = a.Assets.Item("Clear - Yellow")
s.CopyTo("Favorites")
a.ActiveAppearance =s
MsgBox ("Yellow")
s = a.Assets.Item("Clear - Blue")
s.CopyTo("Favorites")
a.ActiveAppearance = s
MsgBox ("Blue")
s = a.Assets.Item("Clear - Green 1")
s.CopyTo("Favorites")
a.ActiveAppearance = s
MsgBox ("Green")
s = a.Assets.Item("Clear")
s.CopyTo("Favorites")
a.ActiveAppearance = s
MsgBox ("Clear")
s = a.Assets.Item("Clear - Light")
s.CopyTo("Favorites")
a.ActiveAppearance =s
MsgBox ("Light")

  

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes