Browser alters position of jpegs; also: how to close swf within swf?

Hi. Thanks for looking at this! :slight_smile:

I just posted a Flash website on the web. I have two problems.

  1. I have thumbs which, when clicked, open up large jpegs. Offline, the jpegs line up perfectly. But on Internet Explorer, the jpegs are half off the screen. This is the actionscript I am using to control placement (officefinal1 is a jpeg):
on (release) {
   openUp = _root.attachMovie("officefinal1", "officefinal1", 2);
   openUp._x = Stage.width / 2 - (openUp._width/2);
   openUp._y = Stage.height / 2 - (openUp._height/2);
   openUp.onRelease = function() {
      removeMovieClip(this);
   };
} 

How can I fix this?

  1. This is pretty simple I think. I have a game swf on the site. If you click on the game jpeg, the game opens up and you play it in the browser, no problem. But when you want to get out of the game, the only thing you can do is hit the “back” button on the browser, and that kicks you out of my site completely. What can I do to let me close out the game yet remain in my site?

Thank you very much! I really appreciate your help! :slight_smile: