Undeceived 392 Posted July 30, 2016 This isn't necessarily an Apex-related question, but... How do I config the customizable (middle) spotlight main menu button so that it, when pressing it, leads to the singleplayer scenario menu and "clicks" resp. highlights a certain mission? In my config.cpp (as seen here) I have this code for pressing the button... action = "ctrlactivate ((ctrlparent (_this select 0)) displayctrl 149);"; ...and wow! :o - it seems to open display 149, which from my noobish perspective is the campaign menu. But I want the SP scenario menu and (if possible) a certain entry (mission) in there. What is the right number / ID for this menu? Thanks for your help! Share this post Link to post Share on other sites
R3vo 2654 Posted July 30, 2016 No clue what's the exact IDD, but you would try to find it out by creating a script which loops through allDisplays and shows them in systemChat. That way you would see which IDD gets added when you enter the scenario menu Share this post Link to post Share on other sites
Undeceived 392 Posted July 30, 2016 Hmmm, no clue how to do it. I ran this in a main menu cutscene, but nothing showed in the radio chat, unfortunately. while {true} do { player sidechat format ["%1", allDisplays]; sleep 1; }; Can someone help with the right script or another way? Share this post Link to post Share on other sites
R3vo 2654 Posted July 30, 2016 Try with systemChat. Share this post Link to post Share on other sites
JuanAdamuz97 0 Posted September 6, 2017 System chat does not show anything just a gray background like it wants to show things but no text :S Share this post Link to post Share on other sites