Advertisement
icdb

[ArmA3] Add button to Esc menu example

May 29th, 2020
1,508
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.31 KB | None | 0 0
  1. with uiNamespace do
  2. {
  3.     ctrl = findDisplay 49 ctrlCreate ["RscButton", -1];
  4.     ctrl ctrlSetPosition [safezoneX, safezoneY, safezoneW * 0.1, safezoneH * 0.1];
  5.     ctrl ctrlSetBackgroundColor [0, 0, 0, 0];
  6.     ctrl ctrlSetText "Test";
  7.     ctrl ctrlCommit 0;
  8.     ctrl ctrlAddEventHandler ["ButtonDown",
  9.     {
  10.         hint "NaM";
  11.     }];
  12. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement