User Guide

1410 UIScrollBar Component
my_sb.pageScrollSize = 5;
// Load text to display and define onData handler.
var my_lv:LoadVars = new LoadVars();
my_lv.onData = function(src:String) {
if (src != undefined) {
my_txt.text = src;
} else {
my_txt.text = "Error loading text.";
}
};
my_lv.load("http://www.helpexamples.com/flash/lorem.txt");
UIScrollBar._targetInstanceName
Availability
Flash Player 6 (6.0.79.0).
Edition
Flash MX 2004.
Usage
scrollBarInstance._targetInstanceName
Description
Property; indicates the instance name of the text field associated with a UIScrollBar
component. This property can be tested and set. However, it should not be used to create an
association between a text field and a scroll bar. Use
UIScrollBar.setScrollTarget()
instead.