zapat 56 Posted September 16, 2014 I know how to make an edit box multiline. (style= 16; that is style = ST_MULTI) However: is it possible to make a linebreak somehow? linespacing is added in the hpp, I've tried htmlControl = 1, but no linebreaks for <br> nor for \n (which usually work for style 16) Is there a way to do such? Share this post Link to post Share on other sites
lappihuan 178 Posted September 16, 2014 Had the same problem... and never managed to get it to work. And as you can see with the init boxes in the editor which seems to be rscEdit, its not possible to do a line break there so i doubt it is even possible... Share this post Link to post Share on other sites
Heeeere's johnny! 51 Posted September 16, 2014 I guess it simply is not possible. I've already surrendered trying to get a line break in there. There's a ticket for it in the Feedback Tracker: http://feedback.arma3.com/view.php?id=20786 Share this post Link to post Share on other sites
7erra 629 Posted May 18, 2018 So if anyone stumbles upon this here is a solution: class RscEdit // default RscEdit { ... }; class RscEditMulti: RscEdit { style = ST_MULTI; }; Linebreaks are accomplished with toString [10] Also there is a default A3 class called RscEditMulti 2 Share this post Link to post Share on other sites