-
Content Count
205 -
Joined
-
Last visited
-
Medals
Community Reputation
39 ExcellentAbout Kingsley1997
-
Rank
Staff Sergeant
core_pfieldgroups_3
-
Interests
ArmA, army, music and coding
-
Occupation
Web Developer
Contact Methods
-
Biography
Computer programmer and musician.
-
Steam url id
jlkingsley
-
Origin
JLKingsley
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Documentation for menuXXX comands
Kingsley1997 replied to Kingsley1997's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Awesome :D Any update on T116695? -
Documentation for menuXXX comands
Kingsley1997 replied to Kingsley1997's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Here's the feedback ticket for it: https://feedback.bistudio.com/T116695 -
CT_MENU scripting commands not working
Kingsley1997 replied to dna_uk's topic in ARMA 3 - TROUBLESHOOTING
Same issue described here: https://forums.bistudio.com/topic/192444-documentation-for-menuxxx-comands/ -
Documentation for menuXXX comands
Kingsley1997 replied to Kingsley1997's topic in ARMA 3 - MISSION EDITING & SCRIPTING
When hard-coding items (as shown below), they appear as expected, but not with menuAdd. class Items { items[] = {One,Two,Three}; class One { text = "One"; data = "One"; value = 0; }; class Two { text = "Two"; data = "Two"; value = 1; }; class Three { text = "Three"; data = "Three"; value = 2; }; class Default { text = "Empty"; data = "Empty"; enable = 0; }; }; -
Documentation for menuXXX comands
Kingsley1997 replied to Kingsley1997's topic in ARMA 3 - MISSION EDITING & SCRIPTING
class MARS_gui_ctrlMenu: ctrlMenu { colorBorder[] = {0,0,0,0}; colorBackground[] = {0,0,0,1}; colorText[] = {COLOR_TEXT_RGBA}; colorSelect[] = {0,0,0,1}; colorSelectBackground[] = {COLOR_ACTIVE_RGBA}; colorDisabled[] = {COLOR_TEXT_RGB,0.25}; colorPicture[] = {1,1,1,1}; colorPictureSelect[] = {0,0,0,1}; colorPictureDisabled[] = {1,1,1,0.5}; arrow = "\a3\3DEN\Data\Controls\ctrlMenu\arrow_ca.paa"; class Items { class Default { text = "Empty"; data = "Empty"; enable = 0; }; }; }; private _display = (findDisplay 46) createDisplay "mars_editor_interface"; private _control = _display ctrlCreate ["MARS_gui_ctrlMenu", 123456]; _control ctrlSetPosition [ getMousePosition select 0, getMousePosition select 1 ]; private _path = _control menuAdd [[], "Option 1"]; _control ctrlCommit 0; systemChat str (_control menuSize []); "Option 1" is never added and menuSize remains 0. -
Documentation for menuXXX comands
Kingsley1997 replied to Kingsley1997's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hmm so does that mean they're only usable inside the Eden display? -
Documentation for menuXXX comands
Kingsley1997 posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
There's a bunch of menu commands (listed below) that have no documentation on the wiki. Are these commands discontinued or still a work in progress? Currently unable to get these to work. They would be very useful for a mod I'm making. menuAdd menuData menuSetData menuText menuPicture menuSetPicture menuAction menuSetAction menuCollapse menuExpand menuDelete menuEnable menuEnabled menuHover menuSetCheck menuSetValue menuURL menuValue -
drawIcon3D breaks after respawn
Kingsley1997 replied to Kingsley1997's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Fixed. Ignore. -
drawIcon3D breaks after respawn
Kingsley1997 replied to Kingsley1997's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
If I alt-tab from the game, wait 5 minutes, tab back into the game and re-open the camera/drawing handlers it works. -
drawIcon3D breaks after respawn
Kingsley1997 posted a topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
When the player character respawns in a multiplayer game, drawIcon3D breaks. drawLine3D works however and when I log the array of data for drawIcon3D, it's all correct. Note that prior to respawning, there is a camera object that lets the player move around like in Zeus for example. When this camera object is created, both the onFrame drawing stuff is created and a killed event handler is created which will destroy the camera and remove the onFrame handlers. After respawn, if you open up the interface again, the camera is created as expected as well as the onFrame stuff - however only drawLine3D in that handler works, drawIcon3D does not. By "drawIcon3D not working" I mean I cannot see it (and yes the colour has the correct alpha value, and yes the position is correct). Anyone know why this is happening? -
Map control not positioned correctly using ctrlCreate
Kingsley1997 replied to Kingsley1997's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Thanks for the help :D -
Map control not positioned correctly using ctrlCreate
Kingsley1997 replied to Kingsley1997's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
_position set [0, (_position select 0) + (_controlGroupPos select 0)]; _position set [1, (_position select 1) + (_controlGroupPos select 1)]; _position set [3, (_position select 2)]; _ctrlMap ctrlSetPosition _position; -
Map control not positioned correctly using ctrlCreate
Kingsley1997 replied to Kingsley1997's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
I got it working! https://gyazo.com/89c0ad75592f8ee81b8d652839e4e6d7 -
Map control not positioned correctly using ctrlCreate
Kingsley1997 replied to Kingsley1997's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Are there any commands to convert a controls relative position to its group to screen coordinates? -
Map control not positioned correctly using ctrlCreate
Kingsley1997 replied to Kingsley1997's topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
Omitting the control group param in ctrlCreate still produces the same problem.