Hello D,
Thanks a lot for your interest in this problem i have, Well, i tried to do
what is suggested in the live doc// no luck,
I tried to add the font symbol in the library, and with a linkage new id, and
tried to create a new var for it, but as you may guess i am rather new withe
this and i do not see the next step or for that matter the first one.
I have created dynamic text fields, named them, and, created a var so that the
fields content could be changed with an externat .txt file ( following a
tutorial )
Do i have to add a new var for the font in the library?
here is the code and the site
www.
http://www.salsaswing06.com/salsa-swing_cours_de_danse_nice_cote_d'azur_stag
es.htm
This is the code relating to the external text file ( .txt )
would you be so kind and explain in a more detailed fashion the problem with
Flash 8 player, that i am having, such as once i have added the font in the
library, if i do an embed i still get no text in the fields.and if i embed only
the + sign and the % sign i still do not get a text in the field.
Oh well i am sure you are a busy person, but if you have a minute i will
appreciate any additionnal info and advice on this.
Thanks a lot for your help.
Best regards.
Gerard.
var myLV:LoadVars = new LoadVars ();
myLV.load("contentStage.txt");
myLV.onLoad= function(success) {
if (success) {
titreStage1_txt.htmlText= myLV.titreStage1;
date1_txt.htmlText=myLV.date1;
contentStage1_txt.htmlText=myLV.contentStage1;
titreStage2_txt.htmlText=myLV.titreStage2;
date2_txt.htmlText=myLV.date2;
contentStage2_txt.htmlText=myLV.contentStage2;
bientotStage_txt.htmlText=myLV.bientotStage;
}
}