Hi guys!
I'm trying to replace the map by a custom image whenever players open their map. What I have so far allows me to create the pic when the map is opened and works, but the trouble is it is shown over every other layer, while what I'd like to do would be to place it just above the map, but behind everything else so that players can see everything else, (tasks, briefing etc.). Any insight will be greatly appreciated.
Here's what I have so far:
  findDisplay 46 displayAddEventHandler ["KeyDown", { if (inputAction "showMap" >0) then { _x = -0.00531249 * safezoneW + safezoneX; _y = -0.00399999 * safezoneH + safezoneY; _w = 1.01063 * safezoneW; _h = 1.008 * safezoneH; _ctrl = findDisplay 12 ctrlCreate ["rscPicture", 1000]; _ctrl ctrlSetPosition [_x,_y,_w,_h]; _ctrl ctrlSetText "media\img\splashscreen1.paa"; _ctrl ctrlCommit 0; }; }];