I have a site im working on at
http://www.rakerecords.com
Here is my problem…
I have in the news section, the bndssection and the contact page a text effect where the text types in letter by letter.
I am using the modified code of some body elses idea and here it is.
[AS]
q = 1;
text = “TEXT GOES HERE”;
myInterval = setInterval(calculate2, 5);
calculate2();
function calculate2(){
if (q < text.length) {
textbox = text.substring(0, q);
q++
} else {
textbox = text;
clearInterval(calculate2);
}
}
stop();[/AS]
Problem is as you will see if you look at the site , is this text is dynamic and not embedded. Therefore the system font displays , being times new roman and that looks terrible.
How can i get this function to work with embedded fonts, when i embed the font, the effect doesnt work.
I have even tried putting a fake invisible dynamic text box at the beggining with the font embedded there , that doesnt work either.
Or is there a better way of doing this effect with embedded fonts? or maybe typing all the font characters into an invisible static text box and use device fonts?? or maybe attach the font file to movie in some other way so the user has that font (as it works fine on my PC which obviously has the said font on it)
Any ideas welcom as this is last thing i have to sort out before i start adding content properly, but i cant til i have this sorted and i dont want to drop the text effect if possible.