switch not working on ServerSide ActionScript
Posted: 17 Oct 2007, 14:11
Not really a problem because we simply need to use the if statement...
Not working
use if instead
Working
But it can makes you loose some time...
-François-
Not working
Code: Select all
...
switch(evt.name)
{
case "userJoin":
trace("hello");
break;
}
...Working
Code: Select all
...
if(evt.name=="userJoin")
{
trace("hello");
}
...-François-