PDA

View Full Version : Flash effect and load txt info


RichardMH
08-07-2006, 05:26 PM
Hi

I would like to know how and if its possible to have a flash that reacts every 1 minute or so and do some special effects + reads and shows the info of a txt file on the webserver..?

RichardMH
08-07-2006, 06:25 PM
if someone could say if its possible or not..


no?

sophistikat
08-08-2006, 12:15 AM
you can have flash create a delay on a function that performs whatever you want it to performfunction doSomething() {
clearInterval(si);
trace('hi');
}

var si = setInterval(doSomething, 60 * 1000);

RichardMH
08-08-2006, 12:33 AM
I want text to be going from right to left.. like an news/info update for the people that checks the site..

sophistikat
08-08-2006, 04:13 PM
do you mean a news ticker?

RichardMH
08-09-2006, 06:18 PM
ya, something like that :D
is it possible to just have a txt file on the server that the news ticker reads every other minute and displays?

sophistikat
08-09-2006, 07:18 PM
yes; simply do a search for news tickers
also; take a look at Lee's MySQL, PHP & Flash Tutorial (http://www.gotoandlearn.com)