Jump to content

Kingsley1997

Member
  • Content Count

    205
  • Joined

  • Last visited

  • Medals

Community Reputation

39 Excellent

2 Followers

About 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.

  1. Kingsley1997

    Documentation for menuXXX comands

    Awesome :D Any update on T116695?
  2. Kingsley1997

    Documentation for menuXXX comands

    Here's the feedback ticket for it: https://feedback.bistudio.com/T116695
  3. Kingsley1997

    CT_MENU scripting commands not working

    Same issue described here: https://forums.bistudio.com/topic/192444-documentation-for-menuxxx-comands/
  4. Kingsley1997

    Documentation for menuXXX comands

    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; }; };
  5. Kingsley1997

    Documentation for menuXXX comands

    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.
  6. Kingsley1997

    Documentation for menuXXX comands

    Hmm so does that mean they're only usable inside the Eden display?
  7. 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
  8. Kingsley1997

    drawIcon3D breaks after respawn

    Fixed. Ignore.
  9. Kingsley1997

    drawIcon3D breaks after respawn

    If I alt-tab from the game, wait 5 minutes, tab back into the game and re-open the camera/drawing handlers it works.
  10. 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?
  11. _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;
  12. I got it working! https://gyazo.com/89c0ad75592f8ee81b8d652839e4e6d7
  13. Are there any commands to convert a controls relative position to its group to screen coordinates?
  14. Omitting the control group param in ctrlCreate still produces the same problem.
×