question

asb.p avatar image
0 Likes"
asb.p asked Phil BoBo edited

How to edit the Operator pop up in Flexsim to show additional data?

Hello All,

Is there a way to edit the operator pop message that comes in the flexsim?

I want add additional details like current work he is doing.

Thanks,

Praneeth.

FlexSim 18.1.0
animation
operator.jpg (39.4 KiB)
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

·
Arun Kr avatar image
3 Likes"
Arun Kr answered Suraj J edited

Hi @asb.praneeth,

Add additional node in the objectinfo node of the operator and use the name of the newly added node to display the additional information.

ReRe


operator.png (41.3 KiB)
opnode.png (6.5 KiB)
· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Phil BoBo avatar image Phil BoBo ♦♦ commented ·

You can also use the setdrawnamefunction() and drawflattext() commands within the On Draw trigger to customize what is drawn there:

if(!param(2)) {
	setdrawnamefunction(80, 15, c, param(1), 1);
} else {
	fglTranslate(-40, -15, 0);
	drawflattext("Hello World");
}

2 Likes 2 ·
drawflattext.png (62.4 KiB)

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.