mirror of
https://github.com/Bjanski/ExAd.git
synced 2024-08-30 16:52:14 +00:00
e72a9bbba3
Introduced a new XM8 Apps Introduced a new version of the VG App, compatible with the new system.
10 lines
329 B
Plaintext
10 lines
329 B
Plaintext
params ["_display","_parent","_idc","_position",["_action",""],["_text",""],["_tooltip",""],"_ctrl"];
|
|
|
|
_ctrl = _display ctrlCreate ["RscButtonMenu",_idc,_parent];
|
|
_ctrl ctrlSetPosition _position;
|
|
_ctrl ctrlSetText _text;
|
|
_ctrl ctrlSetEventHandler ["ButtonClick",_action];
|
|
_ctrl ctrlSetTooltip _tooltip;
|
|
_ctrl ctrlCommit 0;
|
|
|
|
_ctrl |