ExAd/mpmissions/Exile.Altis/ExAdClient/XM8/Functions/fn_createStructuredText.sqf
Bjanski e72a9bbba3 v0.7.7 Build 53
Introduced a new XM8 Apps
Introduced a new version of the VG App, compatible with the new system.
2016-07-03 20:11:58 +02:00

9 lines
418 B
Plaintext

params ["_display","_parent","_idc","_position","_text","_font","_size","_color","_align","_shadow","_ctrl"];
_ctrl = _display ctrlCreate ["RscStructuredText", _idc, _parent];
_ctrl ctrlSetPosition _position;
_ctrl ctrlSetStructuredText (parseText format ["<t shadow='%6' font='%5' align='%4' size='%2' color='%3'>%1</t>", _text,_size,_color, _align,_font,_shadow]);
_ctrl ctrlEnable false;
_ctrl ctrlCommit 0;
_ctrl