i think the problem is here:
Actionscript Code:onMouseDown = function(){
if(i < 4){
attachMovie("marker_mc", "marker"+i, i, {_x:_xmouse, _y:_ymouse});
Add "};" to close the if
Actionscript Code:onMouseDown = function(){
if(i < 4){
attachMovie("marker_mc", "marker"+i, i, {_x:_xmouse, _y:_ymouse});
};




Reply With Quote