Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
geut #1
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. Why???
Please help
geut Guest
-
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... -
problems with setInterval()
i try doing something like this: on (press) { var intervalID; intervalID=setInterval(asdf(), 100); } function asdf() { //something; } -
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... -
kglad #2
Re: still having problems with setInterval()
the syntax on that is so poorly formed it's a wonder that it executes, at all.
the first parameter in the setInterval() function is supposed to be a function
name to call. attached to your button try:
on(rollOver){
qwer=setInterval(scrollF,1000);
}
and attached to a frame use:
function scrollF(){
correctpath.sometextbox.scroll++;
}
kglad Guest
-
Zanzlanz #3
Still having problems with setInterval()
You cannot use commas in Numbers. Try 1100 instead!
Zanzlanz Guest



Reply With Quote

