Jump to content
raptor2x

[SOLVED] GUI : How to remove the area border of RcsText

Recommended Posts

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 :

 

CCPXwDN.gif

 

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

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

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

  • Like 1

Share this post


Link to post
Share on other sites

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×