Message 1 of 1
iLogic trigger for User parameter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is there a way to create a trigger which runs an ilogic rule on any user parameter change?
The default Inventor trigger now only works for model parameter changes and does not fire if i change a user parameter.
If i write my iLogic code and use the "blue" parameters. The ilogic rule triggers automatically.
Example:
Parameter(FileName, "Thickness") = Thickness
If i instead want to do this for all my user parameters. I add all user parameters to a list, and then run:
SyntaxEditor Code Snippet
Parameter(FileName, UserParamList(j)) = Parameter(UserParamList2(j))
The iLogic rule does not run when i change the user parameter values.
Is there a way to add and then reference a parameter from a list in a way that is interpreted as "blue"?
Which syntax is required?