ExAd/mpmissions/Exile.Altis/ExAdClient/XM8/Functions/fn_createPicture.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

11 lines
404 B
Plaintext

params ["_display","_parent","_idc","_position","_picture","_color","_enable","_keepAspect","_tooltip","_ctrl"];
_ctrl = _display ctrlCreate [(if (_keepAspect) then {"RscPictureKeepAspect"} else {"RscPicture"}), _idc, _parent];
_ctrl ctrlSetPosition _position;
_ctrl ctrlSetText _picture;
_ctrl ctrlSetTextColor _color;
_ctrl ctrlEnable _enable;
_ctrl ctrlSetTooltip _tooltip;
_ctrl ctrlCommit 0;
_ctrl