Structured Text: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 7: Line 7:
Introduced with Armed Assault, does not refer to Cold War Crisis or Resistance.
Introduced with Armed Assault, does not refer to Cold War Crisis or Resistance.


----
Exsample
<nowiki>_separator1 = parseText "<br><br />------------------------<br><br />";</nowiki>
_image = "Images\ArmAtec.paa";
_txt = composeText [image _image,"Heading Text",_separator1,"Content"];
hint _txt;
[[User:ArmAtec|ArmAtec]]
----


[[Category: Data Types]]
[[Category: Data Types]]

Revision as of 08:30, 10 July 2007

Description:

Rich text, is able to include pictures, formating ...

It can be created using XML like syntax, as seen in parseText.

Introduced with Armed Assault, does not refer to Cold War Crisis or Resistance.


Exsample

_separator1 = parseText "<br><br />------------------------<br><br />";

_image = "Images\ArmAtec.paa";

_txt = composeText [image _image,"Heading Text",_separator1,"Content"];

hint _txt;

ArmAtec