The News Ticker is dynamically loaded from a txt file.
I want to do the same thing with the news section underneath it. Would anyone know how i could go about doing this ?
It had to be html capable also, so i can link stuff and make the colors different for the title and body of text. Its a pain in the butt to have to open the fla and edit the news through that.
Ok, the news ticker is dynamically loaded. It is Head Lab one.
The tutorial you linked me too was very confusing. It did not give a step by step way of how to create dynamically loaded text in a scrolling news section.
Just gave some sample codes with explination. Still not sure which to use and where to put it. Do i convert the text into symbol or do i just give it instance name and create the loadvariable in the same layer and tell it to load in in the news section instance name ?
You guys seem to be confused on what im talking about.
I checked the marquee fla.
Im not trying to dynamically load text for the news ticker . I said this twice. Im using the headlab news ticker and its already dynamically loaded.
What im trying to do, is dynamically load text into the News Section, The big Text Box, with all the news. I still dont know exactly what to do for this. I need the text to load in correctlywith spaces and headings / different colors for heading.
You can HTML enable the textbox so you can use font tags and other font formatting tags in HTML to change the color, size, font of your text as well as underline, make it bold, make it italic, or make a link.
To HTML enable the textbox, follow that tutorial, but use this code instead of the code given (or just modify the code)…
loadText = new loadVars();
loadText.load("kirupa.txt");
//creating the loadVarsText function
loadText.onLoad = function() {
scroller.html = true;
scroller.htmlText = this.kirupatext;
};