;

PDA

Click to See Complete Forum and Search --> : loadvars.send help


Caracal17
04-12-2004, 04:20 PM
Okay here is my actionscript

stop();
myVars = new LoadVars();
login.onRelease = function(){
myVars.nname = nick;
myVars.send( "http://localhost/test.php", "_blank" , "POST" );
}

All the test.php does is write what is sent to a .txt file.
When the vars are sent though it opens a new window - I know this is because of the "_blank".
But I don't want it to open a new window. What should I do??
Thanks.

Musicman
04-12-2004, 06:30 PM
Hi,

use sendandload instead of send

Musicman