Re: [Flashcoders] sendandload method fails inside a frameset.

2007-05-24 Thread Rodrigo Augusto Guerra
Original Message - From: "Glen Pike" <[EMAIL PROTECTED]> To: Sent: Wednesday, May 23, 2007 8:05 PM Subject: Re: [Flashcoders] sendandload method fails inside a frameset. Hi, With LoadVars.sendAndLoad() the second parameter is the name of an object not a frame that w

Re: [Flashcoders] sendandload method fails inside a frameset.

2007-05-23 Thread Glen Pike
Hi, With LoadVars.sendAndLoad() the second parameter is the name of an object not a frame that will receive data, e.g. mSendVars = new LoadVars(); mLoadVars = new LoadVars(); mSendVars.sendAndLoad(mPostURL, mLoadVars, "POST"); The onload event should be fired for the target, so. mLoadVars.

[Flashcoders] sendandload method fails inside a frameset.

2007-05-22 Thread Rodrigo Augusto Guerra
hi all, I'm having some problems using sendandload method within a html frame. I have an asp page that is a frameset with 2 rows, header and content. the content frame name is "principal". Took me some time to discover first of all that I need pass the frame name in the sendandload method, as