So I’m trying to pass x,y variable of a movie clip to another page.
My code works when I test movie from Flash, but when it is live up on my site it doesn’t pass the x,y variables.
Please help.
So I’m trying to pass x,y variable of a movie clip to another page.
My code works when I test movie from Flash, but when it is live up on my site it doesn’t pass the x,y variables.
Please help.
sry, above my head
Claudio,
I followed your link and onto other links but didn’t find anything that would address the above. Thanks anyways.
i dont quiet get how you’re trying to acheive sending the vars
Ahmed did you download the fla file?
I am trying to send the vars via url variables.
Does that make anymore sense?
what’s supposed to happen after they’re sent? where are they gonna go?
They are sent via URL string to another page.
I’m going to mess with the data received from the URL with ServerSide Scripts.
When you test movie from your machine, does it add on the url parameters to the new window it creates?
yup
Ok same for me, but when I put the file up on “The World Wide Web” it jsut opens a new page and drops the variables after the ?.. any ideas why?
use this AS instead:
function sendData(){
lv = new LoadVars();
lv.clip1x=word1clip._x;
lv.clip1y =word1clip._y;
lv.send("http://www.ethanmedia.com/test.htm", "_blank", "GET");
}
submit_btn.onPress = sendData
Whoo it works now.
was it not working just because the target wasn’t specified?
Again much appreciated.
it wasn’t working cause you were using ‘‘POST’’
:: Copyright KIRUPA 2024 //--