your browser shouldn’t have anything to do with it, as the code is interpreted inside the .swf file before it is fed to the browser…
that said, your code perhaps could use a tweak–try this:
on (release) {
icounter++;
if (_framesloaded>=icounter*10)){
myRow="row"+icounter;
gotoAndStop (myRow);
}else gotoAndPlay ("Preroll");
}
it’s also possible that flash doesn’t like the dynamic label (“row” +icounter), because the syntax for labels is as a string (“label”)
keep going, you’ll figure it out…
-mojo
Creating engaging and entertaining content for designers and developers since 1998.