I have a simple HelloWorld app done in FlexBuilder. It's just a simple class that extends Sprite. In the dedicated Flash player, the SWF shows up occupying the whole screen. In Firefox, however, both within HTML and alone, it shows up to the right. Is there a simple cure for this?
Code is just a constructor (in which the stage.stageWidth and stageHeight are read correctly, strangely) which adds a TextField to the Sprite and sets the size to stage.stageWidth and stage.stageHeight.
Edit: To no avail I've tried moving the constructor's contents to the Event.ADDED_TO_STAGE
event handling, but I think that whole line of investigation is dead.
Edit: Now that I know that Theo's answer is right, I found this link. Nice!