Comments for action script

halo guys… can help me with the comments below?

onClipEvent (load) {
initialRotation = 0;
// comment1
for(i=0;i<10;i++) {
// comment2
_root.attachMovie(“sample”,“sample”+i,i);
// comment3
_root[“sample”+i]._x = i*37;
_root[“sample”+i]._y = 100;
// comment4
_root[“sample”+i]._rotation = initialRotation;
initialRotation += 15;
}
}
onClipEvent (enterFrame) {
// comment5
for(i=0;i<10;i+=2) {
// comment6
_root[“sample”+i]._rotation += 5;
// comment7
_root[“sample”+(i+1)]._rotation -= 5;
}
}[QUOTE][/QUOTE]