Accessing the "Process" infobox with Inventor API

Accessing the "Process" infobox with Inventor API

Anders_Olsen
Contributor Contributor
295 Views
2 Replies
Message 1 of 3

Accessing the "Process" infobox with Inventor API

Anders_Olsen
Contributor
Contributor

I have created a custom Inventor Addin for the company I work for, with various utilities and tools. We also use an profesionally developed Inventor toolset, which somehow is able to access the "Process" infobox, which sometimes shows up in Inventor, e.g. telling you that your current document hasn't been saved in a while.

 

This tool uses the infobox to inform the user when a pdf or dxf has been successfully exported.

 

My question is: how are they able to access this part of the UI? I would love to be able to communicate information to my colleagues, which is not in the format of a prompt, that you have to dismiss, when it shows up.

I know I can also use Inventor Progressbars using "ThisApplication.CreateProgressBar", but that freezes the session while it's showing up, and it's either very big and dominant or very hidden in the bottom left corner of the application.

 

Anders_Olsen_0-1740140704253.png

 

0 Likes
Accepted solutions (1)
296 Views
2 Replies
Replies (2)
Message 2 of 3

johnsonshiue
Community Manager
Community Manager

Hi! I am not aware of an Inventor API access for that control.

Many thanks!



Johnson Shiue (johnson.shiue@autodesk.com)
Software Test Engineer
0 Likes
Message 3 of 3

Anders_Olsen
Contributor
Contributor
Accepted solution

I found it on my own. It is accessible via Inventor API, as the object "BalloonTip". It's defined, accessed and displayed as follows:

 

ThisApplication.UserInterfaceManager.BalloonTips.Add("name", "title", "Default message")
ThisApplication.UserInterfaceManager.BalloonTips.Item("name").Message = "Change the default message, if need be"
ThisApplication.UserInterfaceManager.BalloonTips.Item("name").Display

 

Hyperlinks can also be included, and they can be made clickable using event handling. Search for "Inventor API BalloonTips" to learn more.