Definitive list of FlashPlayer bugs for all released versions of FP10?
Does anyone know where I might get a list of ALL bugs for currently released versions of FP10?
Reason I ask is spent a day debugging one very HUGE issue with the activeX(IE) only version of FP10.02.
This plugin DOES NOT recognize Stage.stageHeight, Stage.stageWidth !!!
What makes this worse is this particul开发者_开发知识库ar version IS NOT available for download...even in the archived Flash Player versions...so pretty difficult to test for...
Adobe has a public bug tracker that you can register for and browse:
http://bugs.adobe.com/flashplayer/
Unless it's something very specific, just make sure you wait a few moments (usually a frame is enough) before reading the stage size, this has been an issue on ie since forever.
Adobe Flash Player Bug and Issue Management System: http://bugs.adobe.com/flashplayer/
You need to wait until the Stage has been loaded
if (stage)
// do stuff;
else
addEventListener(Event.ADDED_TO_STAGE, doStuff);
精彩评论