Can anyone tell me why this works
[AS]
this.onMouseUp=function() {
this.g++;
if (this.g==1) {
this.tree.loadXML(‘test.xml’)};
}
[/AS]
but this does not
[AS]
myReceiving_lc = new LocalConnection()
myReceiving_lc.connect("_treeConnection")
myReceiving_lc.recievedValue = function(load_id)
{
this.tree.loadXML(‘test.xml?id=’+load_id+’);
trace(‘test.xml?id=’+load_id+’)
}
[/AS]
the trace traces the correct output.
???