Scroll news

hello everybody!
I would like to make a scroll of news that are loaded externally (html, xml, etc), that can use pixel fonts, and that the links that it contains can open in new windows (external sites) and also can control the flash movie (for example to load a new movie in my full flash site). I don’t care if the scroll is a component, and finally I need that links in the news be different from text, and change color or underline (or something) on mouse over.
I’ll really appreciate some help or suggestions.
thanx in advance.

(yes I know, my english is really bad… sorry about that)

Here are some starts. I recommend looking up each of these topics in Flash Help (and/or macromedia’s LiveDocs on the web) and you’ll learn pretty much everything you need to know.

  1. to load from external text files, use the LoadVars class
  2. make the text field parse HTML (myText_txt.html = 1) and put HTML links in the text file
  3. use asfunction to control the movie, i.e.:
    <a href=“asfunction:myFunction,myParameter”>my link</a>
  4. attach a CSS stylesheet to the text field and specify a:hover attributes in the css file, i.e.:
    a:link{text-decoration:none;}
    a:hover{text-decoration:underline;}
  5. for scrolling, if you don’t mind using a component, then use a component :slight_smile:

Good luck!

thank you for repy daleth, i’ll try it…
but… what about pixel fonts?
and i need special characters too, 'cause i’ll make a spanish language site.

thanx again!

thanx daleth, I learned a lot!
I think I’m going cool… it’s almost done! but…
1.- i’m having troubles with special characters (they’re shown incorrectly).
2.- I could embed the font, but I think I did it wrong.
3.- url links doesn’t work.
4.- sometimes the text or links, move. pretty weird… how can I fix it?
5.- and perhaps the actionscript isn’t so clean… any idea to optimize it?

sorry, it was not laziness to have posted the link with the source files; I simply thought that it will be useful to who wants to help me, to see the files directly instead of the codes.
anyway, here are the codes that I use, and I hope these help you to help me

actionscript in first frame:

stop();
_root.currMovie = “1”;
container.loadMovie(_root.currMovie+".swf");
System.useCodepage = true;
function CargarPelicula1() {
if (_root.currMovie == undefined) {
_root.currMovie = “1”;
container.loadMovie(“1.swf”);
} else if (_root.currMovie != “1”) {
if (container._currentframe >= container.midframe) {
_root.currMovie = “1”;
container.play();
}
}
}
function CargarPelicula2() {
if (_root.currMovie == undefined) {
_root.currMovie = “2”;
container.loadMovie(“2.swf”);
} else if (_root.currMovie != “2”) {
if (container._currentframe >= container.midframe) {
_root.currMovie = “2”;
container.play();
}
}
}
function CargarPelicula3() {
if (_root.currMovie == undefined) {
_root.currMovie = “3”;
container.loadMovie(“3.swf”);
} else if (_root.currMovie != “3”) {
if (container._currentframe >= container.midframe) {
_root.currMovie = “3”;
container.play();
}
}
}
// Create a new style sheet and LoadVars object
var myVars:LoadVars = new LoadVars();
var styles = new TextField.StyleSheet();
// Location of CSS and text files to load
var txt_url = “news.htm”;
var css_url = “news.css”;
// Load text to display and define onLoad handler
myVars.load(txt_url);
myVars.onData = function(content) {
storyText = content;
};
// Load CSS file and define onLoad handler:
styles.load(css_url);
styles.onLoad = function(ok) {
if (ok) {
// If the style sheet loaded without error,
// then assign it to the text object,
// and assign the HTML text to the text field.
news.styleSheet = styles;
news.text = storyText;
}
}

.htm file that contains the news:

<P> </P>
<P><A HREF=“http://www.macromedia.com/”>url link</A><BR>
<A HREF=“asfunction:CargarPelicula1”>function link 1</A><BR>
<A HREF=“http://www.macromedia.com/software/”>url link</A><BR>
<A HREF=“asfunction:CargarPelicula2”>function link 2</A><BR>
<A HREF=“http://www.macromedia.com/software/flash/flashpro/”>url link</A><BR>
<A HREF=“asfunction:CargarPelicula3”>function link 3</A><BR>
</P>
<P>¡Flash Professional 8 es el entorno de autoría más avanzado del mercado para la creación de sitios Web interactivos, experiencias digitales y contenidos para dispositivos móviles!
Flash Professional 8 permite a los profesionales creativos diseñar y crear contenido interactivo dinámico con video, gráficos y animación obteniendo sitios Web, presentaciones o contenido para dispositivos móviles verdaderamente únicos e impactantes.</P>
<P><A HREF=“http://www.macromedia.com/”>url link</A>, <A HREF=“asfunction:CargarPelicula1”>function link 1</A>, <A HREF=“http://www.macromedia.com/software/”>url link</A>, <A HREF=“asfunction:CargarPelicula2”>function link 2</A>, <A HREF=“http://www.macromedia.com/software/flash/flashpro/”>url link</A>, <A HREF=“asfunction:CargarPelicula3”>function link 3</A>.</P>
<P> </P>

characters are plain, example.: ñandú instead of ñandú

.css file:

BODY {
color: #003300;
}
A:LINK, A:VISITED {
color: #009900;
text-decoration: none;
}
A:HOVER, A:ACTIVE {
color: #006600;
text-decoration: underline;
}
.H {
color: #006600;
}

to embed the font i clicked the options menu in the upper right corner of the panel and selected New Font from the menu.
In the Font Symbol Properties dialog box selected the font, size and style and gave the font combination a name.
Right-click the font symbol in the library and selected Linkage from the contextual menu.
In the Linkage Properties dialog box, clicked the Export for ActionScript button to enable both the Identifier and AS 2.0 Class text input fields. Left the default Identifier value and clicked OK to close the dialog box.
In the Font menu selected the symbol name I gave the embedded font earlier (little asterisk).
In the Property inspector selected the font size and style to match those in the Font Symbol Properties dialog box earlier.

and now my questions are the same:

    • did I embed the pixel font in an appropriate way?
    • why url links doesn’t work? (they work only when I test the movie)
    • why text or links sometimes move when I pass the mouse over?
    • I think that the actionscript isn’t so clean. some idea to optimize it and/or to reduce it?

thanks and excuse again…

pd: I solved it, the special characters are already shown correctly.