raptor2x 10 Posted January 30, 2016 Hello, I'm using style = "16" because I want to show text on multiple lines, it's working good but there is a little problem : This grey area border that dissapears when you click on an other UI element but then reappers if you click back on the text. Any idea if we can remove this ? Thanks ! Share this post Link to post Share on other sites
killzone_kid 1330 Posted January 30, 2016 Try ctrlEnable false on the rsctext 1 Share this post Link to post Share on other sites
raptor2x 10 Posted January 30, 2016 You really know everything about GUI on Arma 3 ! :D Thank you very much for your help. Share this post Link to post Share on other sites
bull_a 44 Posted January 30, 2016 if you have it defined try setting the style to ST_NO_RECT (0x200) class ControlName { ... style = ST_NO_RECT + ST_MULTI; // style = 0x200; ... }; Hope that works, Bull 1 Share this post Link to post Share on other sites
raptor2x 10 Posted January 30, 2016 if you have it defined try setting the style to ST_NO_RECT (0x200) class ControlName { ... style = ST_NO_RECT + ST_MULTI; // style = 0x200; ... }; Hope that works, Bull Yep, it's also working ! Thank you ! :-) Share this post Link to post Share on other sites
dreadedentity 278 Posted January 31, 2016 You can also add 512 to the style for no border 1 Share this post Link to post Share on other sites