Evo da i ja budem konačno nekome od pomoći !!!
Nadam se da hoću
To se može napraviti upotrebom CSS-a.
Kod za AS :
Code:
var myStyle:TextField.StyleSheet = new TextField.StyleSheet();
myStyle.load("sample.css");
content_txt.styleSheet = myStyle;
content_txt.multiline= true;
content_txt.wordWrap = true;
content_txt.html = true;
var story:XML = new XML();
story.ignoreWhite = true;
story.load("sample.txt");
story.onLoad = function () {
content_txt.htmlText = story;
}
Sada CSS-u kojem dodaješ nazive stilova i karakteristike !:
Code:
headline {
font-family: Arial,Helvetica,sans-serif;
font-size: 24px;
font-weight: bold;
display: block;
}
subheadline {
font-family: Arial,Helvetica,sans-serif;
font-size: 13px;
font-weight: bold;
display: block;
}
mainBody {
font-family: Arial,Helvetica,sans-serif;
font-size: 10px;
display: block;
}
biline {
font-family: Arial,Helvetica,sans-serif;
font-size: 11px;
font-style: italic;
display: inline;
}
A {
font-family: Arial,Helvetica,sans-serif;
color:cccccc;
font-size: 10px;
display: inline;
text-decoration:underline;
}
I na kraju text !!! Tu naravno možeš ubasiti i neku sliku !!!
Code:
<body>
<headline>Primjer Formatiranog texta</headline>
<subheadline>By ORIOBILLY I NARAVNO MACROMEDIA</subheadline>
<biline>Today - Our City </biline><mainBody>A giant sea lion was spotted today rampaging around the city's main square, scaring thousands of innocent people just out for a daily stroll in the beautiful downtown district.
<img align='right' src='sample.jpg'/>No injuries were reported after the animal's two-hour assault of the shopping district famous for it's sea lion purses and shoes, also known as the "sea lion district". Witnesses said the creature came out of the ocean near the Burger King at 42nd and 1st Avenue, startling many and stalling traffic.
"The animal caused nearly four million dollars of damage to the neighborhood," said Joseph Valente, owner of "Sea Lions R' Us" at 43rd and 2nd. Onlookers to the scene said that the sea lion appeared ornery, but otherwise in good spirits.
Officials are uncertain as to when, if ever, the sea lion may return.<A HREF="http://www.macromedia.com">Click here for more.</A> </mainBody>
</body>
Flash spremi kao "sample.swf"
CSS spremi kao "sample.css"
Text spremi kao "sample.txt"
U isti folder gdje to spremiš možeš dodati i neku manju sliku kuju češ spremiti kao "sample.jpg"
To bi bilo to !!
Nadam se da sam uspio pomoči po prvi puta
Toliko za ovaj puta.


P.S U prilogu i primjeri !