I'm little stuck with the following code:
function placeShuffleFishs():void
{
for (var i:int 0; i<shuffleRoom.length; ++i) //syntax error: expecting semicolon before 0.
{
addChild(shuffleRoom[i]);
shuffleRoom[i].x = int(xValues[i]);
shuffleRoom[i].y = 80;
}
}
Please let me know how to solve that problem, thanks