19,491
edits
Changes
m
add a GUI example for fg versions that no longer show a console
This will print the string <code>Hello, World!</code> into the console.
To show a message inside the FlightGear window using a tooltip instead, use the following snippet:
<syntaxhighlight lang="nasal">
gui.popupTip("Hello, World!",3);
</syntaxhighlight>
<!--