Howto:Hooking into the GUI: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 5: Line 5:


<syntaxhighlight lang="nasal">
<syntaxhighlight lang="nasal">
fgcommand("register-widget", props.Node.new({
"module": "ui",
"name": "image",
"script": "props.dump( cmdarg() );"
}));
</syntaxhighlight>
</syntaxhighlight>



Revision as of 21:05, 11 March 2018

This article is a stub. You can help the wiki by expanding it.
fgcommand("register-widget", props.Node.new({
 "module": "ui",
 "name": "image",
 "script": "props.dump( cmdarg() );"
}));


Related

References