Search the Community
Showing results for tags 'rsc'.
Found 8 results
-
rsc Need a BIS already defined RSC, like "Display3DENCopy"
bi_mg posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hello Arma Developers, Coders and Fans, I finished a script to test each arguments and expected result for functions and its diagnostic results in very easy way. e.g: // ---- PROCESS ---- [ [ "Test Datatypes", [ // ---- TEST NIL [... -
Vertically algin text in RscText
juleshuxley posted a topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Why is my RSC text not centered? Here's my RSC class: #define CT_STRUCTURED_TEXT 13 #define ST_CENTER 0x02 class MyRscStructuredText { idc = -1; type = CT_STRUCTURED_TEXT; // defined constant style = ST_CENTER; // defined constant x = 0.1; y = 0.1; w = 0.1; h = 0.1;... -
Create RscButton if variable is true
MechSlayer posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
class taximetro: RscButton { idc = 1600; onMouseButtonClick = "closeDialog 1; createDialog 'interfazTaximetro'; ctrlSetText [1001, format ['%1', Dinero]];"; text = "Taximetro"; //--- ToDo: Localize; x = 0.040674 * safezoneW + safezoneX; y = 0.90607 * safezoneH + safezoneY; w = 0.... -
class RscText_1000: RscText { idc = 1000; text = "Paciente:"; //--- ToDo: Localize; x = 0.237519 * safezoneW + safezoneX; y = 0.15 * safezoneH + safezoneY; w = 0.0524963 * safezoneW; h = 0.07 * safezoneH; }; class nombrePaciente: RscText { idc = 1001...
-
Select-able controls in dialog/display
Lordeath19 posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I am making a manual artillery computer with a dialog, the user enters the coordinates of the target using RscEdit fields, and then presses a "confirm" button. The math is then done and an output is displayed in an RscText box. I want to change the RscText to have the user be... -
UI Flicker when updating display element
3LGStevo posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I've recently created a new HUD overlay for my altis life server, on the UI, there is a picture that displays an icon of a mail item and when the user receives a new message, the icon changes to a picture alerting them that they have a new message. When this changeover occurs, my whole UI overl...- 6 replies
-
- ui display
- rsc
-
(and 2 more)
Tagged with:
-
Weird RscPicture Color Change Problem [solved]
nomisum posted a topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
I have an issue with two Pictures laying on top of each other. The second one (Carrier Strength) gets a yellowish tone. Carrier-Strength is an opaque picture without Alpha Channel, I tried removing its background too but got even worse results (faint, faded overlay). There is no color-di...- 1 reply
-
- rscpicture
- color
-
(and 2 more)
Tagged with:
-
RESOURCE: Gui Rsc Base classes & Colours
terox posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
I googled for a premade base class definition for the Gui configs and didn't get a decent hit, so for anyone else wanting base definitions for their GUI projects, I hope you find this useful BASE DEFINITIONS Correct as for A3 v1.50 It's a bit messy, was quickly done but should get you up...