So we're using a component for a dynamic xml photo gallery. And it's working fine except that we've come to find out that the component contains a stage setting of Stage.scaleMode = "noScale";

Unfortunately we're trying to develope a site that renders at 100% browser height, and that line disables scaling of that nature.

We need to somehow set Stage.scaleMode = "showAll"; - but implimenting that code on the root timeline doesnt seem to effect the swf file at all. Is there any other means to enable scaling? maybe somehow pass that command to the component?

We know that line is in there because we ran the swf file through a decompiler. Unfortunately I'm not to familiar with decompilers, all i know is its in a folder called "Actions", Sprite51(xmlGallery)

here's the whole block:

if (auto_size.toString() == "true")
{
Stage.scaleMode = "noScale";
Stage.align = "TL";
setProperty("", _x, 0);
setProperty("", _y, 0);
} // end if

any ideas?