hope i'm posting my flash 6 published swf question on the correct board.
on thE main stage i have many frames on with this in it:
Code:loadVariablesNum("page.html", 1);
message_array = output1.split(",");
message_length = message_array.length;
message.html=true;
message.htmlText += "<font color=\"#0000FF\" size=\"13\"><a href='"+ message_array +"' target='_blank'><b><u>"+ message_array +" </u></b></a></font><br><br>";
on the main stage i have a dynamic text field with instance named:
message
when i view the html on the web the message text box displays:
_level0.message
in the html of the page.html i have this JS script:
Code:var mess = location.href;
window.document.movie.SetVariable("message", mess);
What i'm trying to do is display the browser url in the "message" dynamic text box on the main stage, i am also using this message box in a form submission back to a server side page, so i have set the var properties of the box to message as well.
maybe there is an easier way to do this?
any suggestions appreciated, thanks!
on thE main stage i have many frames on with this in it:
Code:loadVariablesNum("page.html", 1);
message_array = output1.split(",");
message_length = message_array.length;
message.html=true;
message.htmlText += "<font color=\"#0000FF\" size=\"13\"><a href='"+ message_array +"' target='_blank'><b><u>"+ message_array +" </u></b></a></font><br><br>";
on the main stage i have a dynamic text field with instance named:
message
when i view the html on the web the message text box displays:
_level0.message
in the html of the page.html i have this JS script:
Code:var mess = location.href;
window.document.movie.SetVariable("message", mess);
What i'm trying to do is display the browser url in the "message" dynamic text box on the main stage, i am also using this message box in a form submission back to a server side page, so i have set the var properties of the box to message as well.
maybe there is an easier way to do this?
any suggestions appreciated, thanks!