Streamlining File Saving Process in Inventor: Seeking Help with iLogic Rule Implementation

Streamlining File Saving Process in Inventor: Seeking Help with iLogic Rule Implementation

shubham.raturi2308
Enthusiast Enthusiast
290 Views
1 Reply
Message 1 of 2

Streamlining File Saving Process in Inventor: Seeking Help with iLogic Rule Implementation

shubham.raturi2308
Enthusiast
Enthusiast

Hey Everyone,

I'm seeking assistance in writing an iLogic rule for Inventor that can help streamline our file management process. I'm looking to create a pop-up form that prompts users to fill in necessary properties before saving the file.

Any suggestions, tips, or code snippets that can help me achieve this goal would be greatly appreciated!


Thank you in advance for your support.

Best regards,
Shubham Raturi

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

A.Acheson
Mentor
Mentor
Accepted solution

Hi @shubham.raturi2308 

Create a ilogic external form video here.

Then create an external rule set an event trigger for before save and in the rule add the below code. When the document is saved the rule will start, check for an empty iproperty and start the form. 

 

If iProperties.Value("Project", "Part Number") = "" _
OR iProperties.Value("Project", "Description") = "" Then
iLogicForm.ShowGlobal("iPropertiesForm")
End If

 

If this solved a problem, please click (accept) as solution.‌‌‌‌
Or if this helped you, please, click (like)‌‌
Regards
Alan
0 Likes