Bachalo
Bachalo

Reputation: 7219

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 particular version IS NOT available for download...even in the archived Flash Player versions...so pretty difficult to test for...

Upvotes: 0

Views: 103

Answers (4)

David
David

Reputation: 5456

You need to wait until the Stage has been loaded

if (stage)
    // do stuff;
else
    addEventListener(Event.ADDED_TO_STAGE, doStuff);

Upvotes: 0

Samuel Neff
Samuel Neff

Reputation: 74909

Adobe Flash Player Bug and Issue Management System: http://bugs.adobe.com/flashplayer/

Upvotes: 0

grapefrukt
grapefrukt

Reputation: 27045

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.

Upvotes: 0

zombat
zombat

Reputation: 94167

Adobe has a public bug tracker that you can register for and browse:

http://bugs.adobe.com/flashplayer/

Upvotes: 3

Related Questions