I got some success.. but still "binding" doesnot work. In the following, i expect that on changing the value in the textfield, the value of person.age should change and reflect in the trace window. But this doesnot work.
import fl.controls.TextInput ;
import flash.events.Event;
import com.googlecode.bindagetools.Bind ;
var input_Txt:TextInput ;
var person:Object = new Object() ;
person.age = 2443
Bind.fromProperty(input_Txt, "text")
.toProperty(person, "age");
function greaterThanOrEqualTo(val)
{
return val ;
}
addEventListener(Event.ENTER_FRAME,ats);
function ats(e:Event)
{
//person.age = String( new Date().milliseconds) ;
trace(person.age);
}