Hello, I want to post variable from flash to asp. I have added on one button the action like
on (release) {
getURL(“variable.asp?screenx=_root.scx&screeny=_root.scy”,’’’_blank");
}
where scx and scy is the position of the textfield on the stage. And I can trace the value of scx and scy without any problem.
Then I have in the asp page for receiving the value
<%
dim xpos,ypos
xpos=Request.querystring(“screenx”);
ypos=Request.querystring(“screeny”);
%>
But when I use response.write to show the xpos and ypos, it only show _root.scx and _root.scy but not the values of them.
How should I modify the code then? THanks!