This is my tutioral to make mc objects stop from moving and go through walls...first if you don't have the movement scripts... copy and paste on a notepad or something, heres the code:
onClipEvent(enterFrame) {
if(Key.isDown(Key.RIGHT)) {
this._x += 6;
}
}
onClipEvent(enterFrame) {
if(Key.isDown(Key.LEFT)) {
this._x -= 6;
}
}
onClipEvent(enterFrame) {
if(Key.isDown(Key.UP)) {
this._y -= 6;
}
}
onClipEvent(enterFrame) {
if(Key.isDown(Key.DOWN)) {
this._y += 6;
}
}
Now,you can have a scripts from stopping a mc objects from ging trough a drawn wall....
on the next reply...