Newbie Needs Help

the problem :
HE DISAPPEARS when hes out of the screen, but their is STILL more background for him to walk on!.. Why can’t the screen move to where he is walking instead of him just disappearing? ALSO…
when you turn the .FLA to SWF it automatically turns it to “SHOW ALL” instead of 100% zoom… can someone help me with that too?

DOWNLOAD THE .FLA at
http://v4.livegate.net/sao/helpmeplease.fla (save target as)
PLEASE HELP ME THANKS!

yo, make it so that when you press right, the screen goes left. that should solve it. the reason that when you test the movie it goes to “show all” is because you’re probably working on maximized screen.

How do u do that? whats the script? thxs

Heres my scrolling code:

 
onClipEvent (enterFrame) {
 if (scrolling) {
  if (this._x>=250) {
   if (Key.isDown(Key.RIGHT)) {
	this.moveRight = 0;
	this.moveLeft = 5;
	_root.mario._x -= scrollright;
	_root.backGround._x -= scrollright;
	scrollleft = 5;
   }
  } else {
   this.moveRight = 5;
  }
 }
}
onClipEvent (enterFrame) {
 if (scrolling) {
  if (this._x<=130.6) {
   if (Key.isDown(Key.LEFT)) {
	this.moveRight = 5;
	this.moveLeft = 0;
	scrollright = 5;
	_root.mario._x += scrollleft;
	_root.backGround._x += scrollleft;
   }
  } else {
   this.moveLeft = 5;
  }
 }
}
onClipEvent (enterFrame) {
 if (scrolling) {
  if (_root.limits._x<=10) {
   if (Key.isDown(Key.RIGHT)) {
	scrollright = 0;
	this.moveRight = 5;
	this.moveLeft = 5;
   }
  }
  if (_root.limits._x>=239) {
   if (Key.isDown(Key.LEFT)) {
	scrollleft = 0;
	this.moveRight = 5;
	this.moveLeft = 5;
   }
  }
 }
}
 

Just something I cooked up :).

ahh thank u man :p:

No problem ;).