Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
geut #1
problems with setInterval()
i try doing something like this:
on (press)
{
var intervalID;
intervalID=setInterval(asdf(), 100);
}
function asdf()
{
//something;
}
but it ONLY EXECUTES THE FUNCTION ONCE. What is the problem????????
If you can point me to a working code or send one, i would really
appreciate it
geut Guest
-
still having problems with setInterval()
the code is like this: on (rollOver) { var qwer; qwer=setInterval(this._parent.sometextbox.scroll+=1,1000); } and it executes ONLY ONCE.... -
setInterval in 2.0.4
Hi I've just read the release notes for 2.0.4 and it says this: In the Flash Media Server 2 Server-Side ActionScript Language Reference... -
setInterval: been there, done that
The problem is i want to scroll a text using two objects: buttonUp and butonDown. I have done as i have been told: on the buttonUp (which is a... -
SetInterval Problem
Hello What I have is some checkboxes that call and play swfs one after the other when I check them and click on the submit button. However I need... -
setInterval
can setInterval timer be a varibles??? for example: t=500; setInterval(myfunction, t); t=t+100; i have tried this, but doesnt work.....can... -
stwingy #2
Re: problems with setInterval()
on (press) {
var intervalID;
intervalID = setInterval(asdf, 100);
}
// no "()"
stwingy Guest



Reply With Quote

