Ok so now our main objective is to disable the html scroller and set the padding and margin of the content for our page to 0px if you know how to do this already you can skip to the next page.

To disable default scroller browser all you have to do is to define this style for your page. Right after the head tag insert
<style type="text/css">
         body { margin: 0px; padding: 0px; overflow: auto; }
  </style>


this will indicate that the body of our page will have 0px as padding and margin
and the overflow style is to disable the vertical and horizontal scroller

thats it for the html thing lets go to the next page to digg into the flash stuff