[Q] ScrollPane content not visible?

Howdy… :slight_smile:

It’s been a while since I did not use scrollPane… and I think I am missing something here… :frowning:

I have a movieClip, t_mc, on the stage, and I have a scrollPane in the library…


this.attachMovie("FScrollPaneSymbol", "a_sp", 100);
this.a_sp.setSize(200, 200);
this.t_mc.onPress = function () {trace("hello -- alpha : " + this._alpha + "   visible : " + this._visible);}
this.a_sp.setScrollContent(this.t_mc);
this.a_sp.refreshPane();

That code makes the t_mc sitting inside of the a_sp… I can click on the t_mc to see the “hello – alpha : 100 visible : true” on the output panel… YET, I don’t see the t_mc as if it’s visible property is turned to off…

What am I missing here??? :frowning: