KManfre
10-01-2002, 08:23 PM
I have a flash file that is launched into a separate browser window from an ASP page. When I invoke the loadVars.send command to send data back to the ASP page, a new EMPTY browser window is opened with only the asp page name in the address bar. I don't require any data to be returned to me after sending the data and I don't want a blank window to pop up. Any ideas?
Flash Info:
The Flash .swf is called from an ASP page using Javascript :
<a href="#" onclick="window.open('userinfo.asp?course=MasterClass&path=http://wbtlab/westgroup/master_class_certification/exam.asp','MasterClass','width=740,height=500,menu bar=no,resizable=yes,scrollbars=no,status=no,title bar=yes,toolbar=no');">Master Class </a>This pops the Flash File into a sized window on top of the current browser window which is good and works fine!
When I use LoadVars to send data from Flash back to another ASP page, a new window that is blank is automatically opened and forces the user to close it to continue seeing the Flash file.
Code in Flash is:
quizEndVars.send("http://twsgdev1/examdata.asp", "", "POST");
I don't wish to receive any info back from the server and tried using, which Macromedia says works when you want the response from the server discarded:
quizEndVars.send("http://twsgdev1/examdata.asp");
but then no data was returned to the asp page at all!
HELP!!!
Flash Info:
The Flash .swf is called from an ASP page using Javascript :
<a href="#" onclick="window.open('userinfo.asp?course=MasterClass&path=http://wbtlab/westgroup/master_class_certification/exam.asp','MasterClass','width=740,height=500,menu bar=no,resizable=yes,scrollbars=no,status=no,title bar=yes,toolbar=no');">Master Class </a>This pops the Flash File into a sized window on top of the current browser window which is good and works fine!
When I use LoadVars to send data from Flash back to another ASP page, a new window that is blank is automatically opened and forces the user to close it to continue seeing the Flash file.
Code in Flash is:
quizEndVars.send("http://twsgdev1/examdata.asp", "", "POST");
I don't wish to receive any info back from the server and tried using, which Macromedia says works when you want the response from the server discarded:
quizEndVars.send("http://twsgdev1/examdata.asp");
but then no data was returned to the asp page at all!
HELP!!!