@Oli-Ullmann I have this working without firing issues, and it worked well with the fadeComponent. I think I am having general issues with the fadeComponent on other systems so I am actively removing, but it did work on the compiled plugin (at least on my systems)
const var lbl_Tooltip = Content.getComponent("lbl_Tooltip");
// Broadcaster definition
const var Bc_Tooltip = Engine.createBroadcaster({
"id": "Bc_Tooltip",
"args": ["component", "event"],
"tags": [],
"colour": 2432630784
});
// attach to event Type
Bc_Tooltip.attachToComponentMouseEvents(Components, "Clicks & Hover", "");
// add listeners
var lastTooltipText = "";
Bc_Tooltip.addListener("Tooltip Listenet", "Set tooltip", function(component, event)
{
if (event.hover)
{
var tooltipText = component.get("tooltip");
lbl_Tooltip.set("text", tooltipText);
lbl_Tooltip.fadeComponent(true, 200);
lastTooltipText = tooltipText;
}
else
{
lbl_Tooltip.fadeComponent(false, 200);
}
});