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.