Welcome to the Flash & Server Side Development forum

title left
User Details
message
title right
Horea Radu [Extend Studio]

post date:
2007-04-04 18:18:42
Hello,

Welcome to our Flash and Server-side Development forum. Feel free to discuss any matter related to the subject on this forum. This is not a support forum, just a general discutions one, but we will do our best to help you with your problems.

We also encourage you guys helping each other on this forum.

Horea Radu.
trangif
selvam

post date:
2008-06-28 15:50:23
have created a flex application ,in that i am loading another document (aspx)in a new window using
navigateToURL() and passing the data to the new doucment using post method.
the sample code is as follows.

var oRequest:URLVariables = new URLVariables();
oRequest.topic= "science";
var request:URLRequest = new URLRequest("sample.aspx");
request.data = oRequest;
request.method="POST"

navigateToURL(request,"_blank");

This is working fine if i execute the application.it opens file in browser new window and passes the parameter values.

if the flex application is loaded in a iframe of another site, in that the above code is not passing to the file which is opened in a new window.

Any one please suggest me why the data is not passing to the new file which is opened in a new window if the flex application is loaded in some site.

Thank you for your time and considerations
trangif