This worked for me for a while
PHP Code:
stop(); quoteTxt.autoSize = "center"; randomQuote = new LoadVars(); randomQuote.onLoad = function() { quotes = this.quotes.split(";"); quoteTimer = setInterval(newQuote, 10000); newQuote() }; randomQuote.load("quotes.txt"); function newQuote() { randomNum = Math.floor(Math.random()*quotes.length); quoteTxt.text = quotes[randomNum]; quoteTxt._y = ((450-(quoteTxt._height/2))/2); }
---------- Post added at 02:30 PM ---------- Previous post was at 02:29 PM ----------
stop(); quoteTxt.autoSize = "center";
randomQuote = new LoadVars();
randomQuote.onLoad = function() {
quotes = this.quotes.split(";");
quoteTimer = setInterval(newQuote, 10000);
newQuote() };
randomQuote.load("quotes.txt");
function newQuote() { randomNum = Math.floor(Math.random()*quotes.length);
quoteTxt.text = quotes[randomNum];
quoteTxt._y = ((450-(quoteTxt._height/2))/2);
}