Search the Community
Showing results for tags 'dialogs'.
Found 12 results
-
Adding image to background control in dialog
sagent54 posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Good day everyone! Week ago i started learning SQF and made some little experience to build light dialogs. So i decided to add image in my dialog but anything i found at Bohemia forum and Wiki is how to add image to hints. I'll be glad if someone can explain me how can i do this with .hpp language. Thanks in advance! -
multiple #include hpp and class compatibilities for multiple displays
pierremgi posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hello, What if you create some rscTitles classes , inherited from some rscText or rscPicture in an hpp file, and then you play with mods including also displays with their own references to rscText or rscPicture? In other words, I'd like to understand if it's possible to define some basic things like: #define CT_STATIC 0 #define CT_PROGRESS 8 #define ST_VERTICAL 1 #define ST_CENTER 2 #define ST_PICTURE 48 in an hpp file... #included in description.ext (or in a config.cpp form mod), and then, what if there is another hpp from a mod with these things already defined? And what occurs if there are two different rscText or rscPicture (basic class, not inherited) in two different hpp? Is there a "winner" or that doesn't really matter for the displays? -
Opening and Closing Dialogs with CBA (addKeyHandler)
LSValmont posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
For the longest time I've been using a Spawn for opening and closing dialogs IE: But I've since been migrating all my dialogs and even scripts to a function based unscheduled environment using both CBA and ACE 3 guidelines. ( https://ace3mod.com/wiki/development/coding-guidelines.html#72-scheduled-vs-unscheduled ). I am currently facing a problem finding the most optimized, simple and unscheduled way of opening my custom UI by using: vMenu_keyHandlerID = [33,[false, false, false],vMenuOpen] call CBA_fnc_addKeyHandler; //33 = F key Instead of: displayAddEventHandler ["KeyDown", So here is my whole previous working code:(Executed via: [player] execVM "vScripts\vMenu\vMenuOpen.sqf";) So what could be a more optimized way of doing this? Like a CBA unscheduled way (more akin to a Event Handler rather than a spawn/ExecVM). PS: Also, since I am using the "F" key for opening the menu, is there a way to auto unbind the previous "F" so that letter is exclusive to opening the menu? PS2: Thanks in advanced guys!- 4 replies
-
- displayctrl
- displayaddeventhandler
-
(and 3 more)
Tagged with:
-
createDisplay - child not going over parent.
Skirmish_ posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi, I'm really confused on why when I use createDisplay, it doesnt go over the parent display like the 3den displays: https://gyazo.com/956ab95d3148cd87e4c9de5902d591ca Instead it just looks like I created another parent display/dialog: https://gyazo.com/be01e67e6a0a7a6ebfcd6d9e1562407b Thanks in advance, skirmish_ -
Hey, I have a dialog that opens in the target player (You execute the createDialog and the player see it) but i don't know how to use ctrlSetText with that
-
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.0787416 * safezoneW; h = 0.0420073 * safezoneH; }; I want this to be created only if a condition is true. How can i make it? -
Hi everyone, I don't know how to get script created markers to show up in my dialog's map control other then using "onMapSingleClick". When I create a marker by script it shows up in the in-game map but when I open my dialog the marker does not show up in the dialog map control. Can anyone help me out ? I've searched the internet for any post about this but couldn't find anything. Cheers.
-
Hello, I can't remember the list of what gets sent over when you click and rscButton via a createDialog. Which Select # is it? 0 and 1 wasn't working.
-
onMouseButtonDblClick doesn't work for me as a control event handler on a RscPicture control (and all others except RscMapControl for that matter) I've tried looking at this solution but to no avail. Any ideas?
- 1 reply
-
- onmousebuttondblclick
- dialogs
-
(and 1 more)
Tagged with:
-
Hi, I am making a dialog but it isnt working propally. The dialog wont open I have read everything. It aint opening at all. I hope someone may have an idea what I am doing wrong. If someone could help that will be fantastic. Project Files: https://drive.google.com/open?id=0By62CaLcDosgandQaTdBU1h2Rkk Thanks, Welshy
-
Hi all, i try to work on some Dialogs for my new Multiplayer Mission. I watched a tutorial Video and just did the same as the guy in the video. So here are my scripts: Description.ext: #include "defines.hpp" #include "dialogs.hpp" respawn = 3; respawnDelay = 5; respawnOnStart = 1; respawnTemplates[] = {"MenuPosition", "MenuInventory"}; class cfgRespawnInventory{ class WEST1{ displayName = "Rifleman"; vehicle = "B_Soldier_F"; weapons[] = {"FakeWeapon"}; magazines[] = {}; items[] = {}; linkedItems[] = {}; uniformClass = "U_BasicBody"; } class WEST2{ displayName = "Medic"; vehicle = "B_medic_F"; } class EAST1{ displayName = "Rifleman"; vehicle = "O_G_Soldier_F"; } class EAST2{ displayName = "Medic"; vehicle = "O_G_medic_F"; } } dialogs.hpp: class BluforVehics_dialog{ idd = -1; movingenable = false; class controls{ //////////////////////////////////////////////////////// // GUI EDITOR OUTPUT START (by KingEldarion, v1.063, #Votyvu) //////////////////////////////////////////////////////// class bluforVehics_mainFrame: RscFrame { idc = 1800; text = "Hello!"; //--- ToDo: Localize; x = 1 * GUI_GRID_W + GUI_GRID_X; y = 1.5 * GUI_GRID_H + GUI_GRID_Y; w = 37.5 * GUI_GRID_W; h = 16 * GUI_GRID_H; }; class bluforVehics_text1: RscText { idc = 1000; text = "Hello this is a text!!!"; //--- ToDo: Localize; x = 6 * GUI_GRID_W + GUI_GRID_X; y = 4.5 * GUI_GRID_H + GUI_GRID_Y; w = 8 * GUI_GRID_W; h = 2 * GUI_GRID_H; }; class bluforVehics_text2: RscText { idc = 1001; text = "A really amazing text!"; //--- ToDo: Localize; x = 5 * GUI_GRID_W + GUI_GRID_X; y = 9 * GUI_GRID_H + GUI_GRID_Y; w = 9.5 * GUI_GRID_W; h = 4 * GUI_GRID_H; }; class bluforVehics_button1: RscButton { idc = 1600; text = "A Button"; //--- ToDo: Localize; x = 5.5 * GUI_GRID_W + GUI_GRID_X; y = 12.5 * GUI_GRID_H + GUI_GRID_Y; w = 6.5 * GUI_GRID_W; h = 3.5 * GUI_GRID_H; }; //////////////////////////////////////////////////////// // GUI EDITOR OUTPUT END //////////////////////////////////////////////////////// }; }; defines.hpp // Control types #define CT_STATIC 0 #define CT_BUTTON 1 #define CT_EDIT 2 #define CT_SLIDER 3 #define CT_COMBO 4 #define CT_LISTBOX 5 #define CT_TOOLBOX 6 #define CT_CHECKBOXES 7 #define CT_PROGRESS 8 #define CT_HTML 9 #define CT_STATIC_SKEW 10 #define CT_ACTIVETEXT 11 #define CT_TREE 12 #define CT_STRUCTURED_TEXT 13 #define CT_CONTEXT_MENU 14 #define CT_CONTROLS_GROUP 15 #define CT_SHORTCUTBUTTON 16 #define CT_XKEYDESC 40 #define CT_XBUTTON 41 #define CT_XLISTBOX 42 #define CT_XSLIDER 43 #define CT_XCOMBO 44 #define CT_ANIMATED_TEXTURE 45 #define CT_OBJECT 80 #define CT_OBJECT_ZOOM 81 #define CT_OBJECT_CONTAINER 82 #define CT_OBJECT_CONT_ANIM 83 #define CT_LINEBREAK 98 #define CT_USER 99 #define CT_MAP 100 #define CT_MAP_MAIN 101 #define CT_LISTNBOX 102 // Static styles #define ST_POS 0x0F #define ST_HPOS 0x03 #define ST_VPOS 0x0C #define ST_LEFT 0x00 #define ST_RIGHT 0x01 #define ST_CENTER 0x02 #define ST_DOWN 0x04 #define ST_UP 0x08 #define ST_VCENTER 0x0C #define ST_GROUP_BOX 96 #define ST_GROUP_BOX2 112 #define ST_ROUNDED_CORNER ST_GROUP_BOX + ST_CENTER #define ST_ROUNDED_CORNER2 ST_GROUP_BOX2 + ST_CENTER #define ST_TYPE 0xF0 #define ST_SINGLE 0x00 #define ST_MULTI 0x10 #define ST_TITLE_BAR 0x20 #define ST_PICTURE 0x30 #define ST_FRAME 0x40 #define ST_BACKGROUND 0x50 #define ST_GROUP_BOX 0x60 #define ST_GROUP_BOX2 0x70 #define ST_HUD_BACKGROUND 0x80 #define ST_TILE_PICTURE 0x90 #define ST_WITH_RECT 0xA0 #define ST_LINE 0xB0 #define ST_SHADOW 0x100 #define ST_NO_RECT 0x200 #define ST_KEEP_ASPECT_RATIO 0x800 #define ST_TITLE ST_TITLE_BAR + ST_CENTER // Slider styles #define SL_DIR 0x400 #define SL_VERT 0 #define SL_HORZ 0x400 #define SL_TEXTURES 0x10 // progress bar #define ST_VERTICAL 0x01 #define ST_HORIZONTAL 0 // Listbox styles #define LB_TEXTURES 0x10 #define LB_MULTI 0x20 // Tree styles #define TR_SHOWROOT 1 #define TR_AUTOCOLLAPSE 2 // MessageBox styles #define MB_BUTTON_OK 1 #define MB_BUTTON_CANCEL 2 #define MB_BUTTON_USER 4 //////////////// //Base Classes// //////////////// class RscText { access = 0; idc = -1; type = CT_STATIC; style = ST_MULTI; linespacing = 1; colorBackground[] = {0,0,0,0}; colorText[] = {1,1,1,1}; text = ""; shadow = 0; font = "PuristaLight"; SizeEx = 0.02300; fixedWidth = 0; x = 0; y = 0; h = 0; w = 0; }; class RscPicture { access = 0; idc = -1; type = CT_STATIC; style = ST_PICTURE; colorBackground[] = {0,0,0,0}; colorText[] = {1,1,1,1}; font = "PuristaLight"; sizeEx = 0; lineSpacing = 0; text = ""; fixedWidth = 0; shadow = 0; x = 0; y = 0; w = 0.2; h = 0.15; }; class RscButton { access = 0; type = CT_BUTTON; text = ""; colorText[] = {1,1,1,.9}; colorDisabled[] = {0.4,0.4,0.4,0}; colorBackground[] = {0.75,0.75,0.75,0.8}; colorBackgroundDisabled[] = {0,0.0,0}; colorBackgroundActive[] = {0.75,0.75,0.75,1}; colorFocused[] = {0.75,0.75,0.75,.5}; colorShadow[] = {0.023529,0,0.0313725,1}; colorBorder[] = {0.023529,0,0.0313725,1}; soundEnter[] = {"\ca\ui\data\sound\onover",0.09,1}; soundPush[] = {"\ca\ui\data\sound\new1",0,0}; soundClick[] = {"\ca\ui\data\sound\onclick",0.07,1}; soundEscape[] = {"\ca\ui\data\sound\onescape",0.09,1}; style = 2; x = 0; y = 0; w = 0.055589; h = 0.039216; shadow = 2; font = "PuristaLight"; sizeEx = 0.03921; offsetX = 0.003; offsetY = 0.003; offsetPressedX = 0.002; offsetPressedY = 0.002; borderSize = 0; }; class RscFrame { type = CT_STATIC; idc = -1; style = ST_FRAME; shadow = 2; colorBackground[] = {1,1,1,1}; colorText[] = {1,1,1,0.9}; font = "PuristaLight"; sizeEx = 0.03; text = ""; }; class Box { type = CT_STATIC; idc = -1; style = ST_CENTER; shadow = 2; colorBackground[] = { 0.2,0.9,0.5, 0.9}; colorText[] = {1,1,1,0.9}; font = "PuristaLight"; sizeEx = 0.03; text = ""; }; bluforVehicsOpenDialog.sqf: _handle = createDialog "BluforVehics_dialog"; if(!_handle) then {hint "Dialog couldnt be found!"}; So i tried to execute the bluforVehicsOpenDialog.sqf by a trigger and by an addActionCommand on some environment, and it seems to work with both options. I dont get the hint that the dialog couldnt be found and in the game, the Cursor is shown like in the gui in the tutorial, but i cannot see the GUI Elements. So can someone help me, i looked over the whole script and googled it up but i cant find anything what has gone wrong. Also i compared everything to what the guy did in the youtube video and i cant find anything wrong... Here is the youtube Video: Hope that someone can help me. KingEldarion
-
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 and running Just mass edit the "MyTag_" and replace it with your own tag and your good to start inheriting from and define your own default colours COLOUR DEFINITIONS I also found this in my archives, I have no idea who made this, which is a shame because it must have taken a while to enter all these values and it would have been nice to pass on the credits. Hopefully someone will find this useful