How to display/retrieve localized string in Javascript?

I’m using the localization tool along with references throughout my XML, such as:

<IE_TOOLTIP_DESCRIPTION_ID>@TT_Package_Project.ACTION.TOGGLE_LOCK</IE_TOOLTIP_DESCRIPTION_ID>

No issues with doing so, works as expected to draw strings from my loc file.

However, I would like to pull strings in a similar fashion for use within Javascript.

Such as:

Coherent.trigger(“SHOW_TOOLTIP”, “MyTooltip”, “MY_LOC_STRING_HERE”, 300, 300, -1);

Is there a proper means for doing so? Nothing I’ve tried yet works, and I can’t find any examples for this within the SDK or the sim.

And once I posted this, my next attempt worked, of course! :joy:

For anyone else that comes across this issue, using a format of “@developer-aircraft-name, TT:ENTRY_NAME” works perfectly.