hmmm, it still doesn't want to connect to each other
I have
code:
function mytrace (text)
{
var lc = new LocalConnection ();
lc.send ('tracelog', 'text', text);
}
for (i = 0; i < 30; i++)
{
mytrace (i);
}
in the client.fla
andcode:
this.createTextField("theText", 9, 10, 10, Stage.width-20, Stage.height-20);
theText.border = true
function mytrace (txt)
{
this.theText.text += txt + '\n';
this.theText.text.scroll = this.thetext.text.maxscroll;
}
receiver = new LocalConnection ();
receiver.text = function (txt)
{
mytrace (txt);
};
receiver.connect ('tracelog');
in the reciever.fla
.... and nothing ever happens...




Reply With Quote