# Vars to external swf loaded in new window?

**URL:** https://forum.kirupa.com/t/vars-to-external-swf-loaded-in-new-window/302360
**Category:** Uncategorized
**Created:** [December 28, 2009, 7:36pm UTC](https://forum.kirupa.com/t/vars-to-external-swf-loaded-in-new-window/302360 "2009-12-28T19:36:42Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![nycbmw](https://avatars.discourse-cdn.com/v4/letter/n/a6a055/32.png) [@nycbmw](https://forum.kirupa.com/u/nycbmw)
#### Post date: [December 28, 2009, 7:36pm UTC](https://forum.kirupa.com/t/vars-to-external-swf-loaded-in-new-window/302360/1 "2009-12-28T19:36:42Z")

</div>

so i’ve got a swf that opens a new window with a swf . (AS3)

i want to send these 4 :

var cname :String;  
var cwedding\_date:String;  
var cxml\_path:String;  
var cpassword:String;

this are set to the corresponding values before redirecting .

function redirect(){  
MovieClip(root).go\_back\_to\_master\_menu\_from\_login();

```
var requestaa:URLRequest=new URLRequest("clients.swf");
navigateToURL(requestaa);

```

}

how can i send these 4 to the clients.swf and how do i check on the other side if they exist or not ?

i searched and got all sort of details about flash -\> php , as2 to as3 , swf loaded in the same swf as child etc. But i couldn t not find something spefici to my problem .

Also i want to use something like POST so the url looks clean as it is .

Thank you for your time
