ActionScript 2.0 Components Language Reference |
|
|
|
| Data binding classes > EndPoint.property | |||
Flash Player 6 (6.0.79.0)
Flash MX Professional 2004.
endPointObj.property
Property; specifies a property name of the component instance specified by EndPoint.component that contains the bindable data.
|
NOTE |
|
This example binds the text property of one TextInput component (text_1) to the same property in another TextInput component (text_2).
var sourceEndPoint = {component:text_1, property:"text"};
var destEndPoint = {component:text_2, property:"text"};
new Binding(sourceEndPoint, destEndPoint);
|
|
|
|