ActionScript 2.0 Components Language Reference |
|
|
|
| ScrollPane component > ScrollPane.vScrollPolicy | |||
Flash Player 6 (6.0.79.0).
Flash MX 2004.
scrollPaneInstance.vScrollPolicy
Property; determines whether the vertical scroll bar is always present ("on"), is never present ("off"), or appears automatically according to the size of the image ("auto"). The default value is "auto".
The following example creates an instance of a ScrollPane called my_sp, sets vScrollPolicy to off to prevent a vertical scroll bar from appearing, and loads the ScrollPane with an image.
You first drag the ScrollPane component from the Components panel to the current document's library and then add the following code to Frame 1:
/**
Requires:
- ScrollPane component in library
*/
import mx.containers.ScrollPane;
this.createClassObject(ScrollPane, "my_sp", 30);
my_sp.setSize(360, 280);
my_sp.vScrollPolicy = "off";
System.security.allowDomain("http://www.helpexamples.com");
my_sp.contentPath = "http://www.helpexamples.com/flash/images/image1.jpg";
|
|
|
|