Encontré una página donde explica cómo hacerlo pero la verdad no me ha salido

y esque no sé mucho de ActionScript
Según
http://ghostwire.com/go/357 aquí lo explica....
The component does not have its built-in scrollpane. To embed a GhostWire ScrollPane, follow these steps:
(1) Drag and drop an instance of the ScrollPane (barebones version, without frame) onto the stage and name the instance "myScrollPane".
(2) Convert that instance into a symbol and export it. Give the symbol an identifier, let's say "myScrollPane". Delete the symbol on the Stage.
(3) Drag and drop an instance of the Window component onto the Stage and name it "myWindow".
(4) Add the following actionscript to the timeline:
// ** Prepare **
var embeddedScrollPane = myWindow.getContent().myScrollPane;
embeddedScrollPane.setSize(myWindow.getViewableSize().width,myWindow.getViewableSize().height);
myWindow.onResize = function(w,h)
{
embeddedScrollPane.setSize(w,h);
}
// ** Load the content **
// ** Note that now you load into the scrollpane instead of the window **
// EITHER
// embeddedScrollPane.setScrollContent(symbolID);
// OR
// embeddedScrollPane.loadScrollContent(url);
Les agradecería mucho si alguien me dijera como hacerlo, o si alguien ya ha hecho algo así