ilogic Rule for "update properties"

ilogic Rule for "update properties"

MarkusGreifeneder3360
Advocate Advocate
537 Views
1 Reply
Message 1 of 2

ilogic Rule for "update properties"

MarkusGreifeneder3360
Advocate
Advocate

Hi,

im looking for an ilogic Rule,

thats starts the exisiting Inventor command "update properties" (in the Vault-Tab) with an ilogic Rule.

 

Ideally with automatic "OK" when window appears.

 

Can someone help

 

Thanks in advance,

Markus

 

 

0 Likes
Accepted solutions (1)
538 Views
1 Reply
Reply (1)
Message 2 of 2

chandra.shekar.g
Autodesk Support
Autodesk Support
Accepted solution

Hi @MarkusGreifeneder3360,

 

Please try the below iLogic rule to update properties and activate "Ok" button automatically.

 

Dim updateCmd As ControlDefinition
updateCmd = ThisApplication.CommandManager.ControlDefinitions.Item("VaultPropertyWriteBack")
updateCmd.Execute

Dim oKCmd As ControlDefinition
oKCmd = ThisApplication.CommandManager.ControlDefinitions.Item("AppContextual_OKCmd")
oKCmd.Execute

Please feel free to contact if there is any doubt.

 

If solves problem, click on "Accept as solution" / give a "Kudo".

 

Thanks and regards,


CHANDRA SHEKAR G
Developer Advocate
Autodesk Developer Network



0 Likes