Var from FLASH via HTML to Flash

hi,

here the situation :

movie1.swf opens a new window with :

on (release) {
image="’./movie2.html’";
getURL (“javascript:NewWindow1=window.open(”+image+",‘newWin1’,‘width=810,height=610,left=5,top=5,toolbar=No,location=Yes,scrollbars=No,status=No,resizable=No,fullscreen=No’); NewWindow.focus(); void(0);");
}

and movie2html contains movie2.SWF
the movie2.SWF has a dynmic text field called
test.text=ID

and now I want to get ID=2 defined in movie1 to movie2.swf.

I tried with : image="’./movie2.html?ID=2’"; => no result in movie2.

on (release) {
image="’./movie2.html?ID=2’";
getURL (“javascript:NewWindow1=window.open(”+image+",‘newWin1’,‘width=810,height=610,left=5,top=5,toolbar=No,location=Yes,scrollbars=No,status=No,resizable=No,fullscreen=No’); NewWindow.focus(); POST;");
}

=> no reult in movie2.html

has any suggestions?

thanks alot! :smiley: