JPEXS Free Flash Decompiler Issue Tracker

If you are looking for the decompiler itself, visit https://github.com/jindrapetrik/jpexs-decompiler

NEW : You can now close your own issues and reopen them later if needed. You can also comment closed issues.
List of issuesList of issues

#2634 Cannot find reason for 4 pixel offset
Date created:
Type: question
Visibility: Everybody
Assigned to:
State: opened Help

The sprite EpisodesScreen with chid 46 is supposed have bounds as shown in JPEXS: (0.00, 0.00)[792.00 x 600.00] However, when pressing play game on the main menu, the sprite is 4 pixels to the right of where it should be. Not sure if this is a FFDEC issue but I don't see any matrix transformation or anything that would be causing this offset so I'm wondering if you knew the cause of this. Version I'm using is 24.0.1 Thanks!
EpisodesScreen is added as a child of menu_stage. In N class: public function createChildren() : void { this.menu_stage = new Sprite(); addChild(this.menu_stage); this.menu_stage.x = 4; } public function changeScreen(param1:Sprite) : void { this.removeScreen(); this.screen = param1; this.menu_stage.addChild(param1); }
I have no idea why this was done to menu_stage, but that was it. Thanks!
State: new→opened