Hi guys
Not sounding like it but I am seriously getting annoied by this thing, I managed to extract most AS faults but this one's getting on my nerves:
code:
onClipEvent (enterFrame) {
for (i=3; i<40; i+1) {
placeX = random(600)
placeY = random(150)
X duplicateMovieClip("shard","sard" add i, i)
X setProperty("/sard" add i, _x,placeX)
X setProperty("/sard" add i, _y,placeY)
setProperty("/sard" add i,_rotation,random(1000))
setProperty("/sard" add i,_xscale,random(50))
setProperty("/sard" add i,_yscale,random(30))
}
}
Now I marked X at the place that is wrong: they all say ')' or ',' expected.
What in the bloody hell is wrong?!
Thanks




Reply With Quote