Structured Text – Talk

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
 
No edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
Where can we use this special type of text?  hint and sideChat don't work. I haven't tried others. Is this a dialog only type thing? --[[User:Doolittle|Doolittle]] 08:00, 10 July 2007 (CEST)
Where can we use this special type of text?  hint and sideChat don't work. I haven't tried others. Is this a dialog only type thing? --[[User:Doolittle|Doolittle]] 08:00, 10 July 2007 (CEST)
hey Doolittle here is an 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]]
::Thanks! This example works with '''hint''' but not with '''sideChat'''.. the game says '''sideChat''' expected ''String'', not ''Text''. What else will accept ''Text''? --[[User:Doolittle|Doolittle]] 15:08, 10 July 2007 (CEST)

Latest revision as of 15:08, 10 July 2007

Where can we use this special type of text? hint and sideChat don't work. I haven't tried others. Is this a dialog only type thing? --Doolittle 08:00, 10 July 2007 (CEST)

hey Doolittle here is an exsample

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

_image = "Images\ArmAtec.paa";

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

hint _txt;

ArmAtec

Thanks! This example works with hint but not with sideChat.. the game says sideChat expected String, not Text. What else will accept Text? --Doolittle 15:08, 10 July 2007 (CEST)