I would like to pass an object path through a property of another class, but can't figure out how to do it.
model.someObject.currentObject (the ML variable)
<comp: SomeCustomComponent source="model.someObject.currentObject" />
class SomeCustomComponent{
public var source:Object;
function test(){
trace(model.someObject.currentObjec);
}
}
This outputs the string "model.someObject.currentObject" rather than
the variable value at - model.someObject.currentObject
thanks for the insight.
- kevin

