Trying to be as clear as possible here...
I'm hoping to have a button which the user can press, which loads an external text file (into an mc, I'm assuming) which fades in, rather than just appears instantly. I realise there's an issue with dynamic text boxes, and I've embedded the glyphs, so that shouldn't be a problem. As an aside, the button, once pressed, also causes another mc to move (which will explain the code).
Anyway, here's what I've got so far:
on (press){
redline.number = 200
;
loadText = new LoadVars();
loadText.load("TEXT1.txt");
loadText.onLoad = function(success) {
if (success) {
// trace(success);
text_mc.textbox.html = true;
text_mc.textbox.htmlText = this.myNews;
}
};
}
As you can see, I've got the redline moving to 200 on the x axis, and that's working fine, as is the loading of the external text file into my text_mc.textbox. The only thing I HAVEN'T managed yet is getting the text to fade in, which I'm assuming I'd do by actionscripting the alpha of the text_mc. Please help!!!!!
Cheers,
boogooloo1
