Link to home
Start Free TrialLog in
Avatar of wildbrookmedia
wildbrookmediaFlag for United States of America

asked on

Passing values in querystring of url...

I need to use variables passed in the query string of the page in my flash movie but am having a tough time implementing the code properly.  Is there no actionscript that allows you to have access to the query string directly?

It seems that you need to hard code values into the query string in most of the examples I have seen.  For instance they say you should do this:

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
  codebase="http://download.macromedia.com/"  
  WIDTH="250" HEIGHT="300" id="movie">
  <PARAM NAME=movie VALUE="movie.swf?myvar=variable1">
  <PARAM NAME=quality VALUE=high>
  <PARAM NAME=bgcolor VALUE=#FFFFFF>
  <EMBED src="movie.swf?myvar=variable1"
    quality=high bgcolor=#FFFFFF WIDTH="250" HEIGHT="250" NAME="flaMovie1"
    TYPE="application/x-shockwave-flash"
    PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
  </EMBED>
</OBJECT>

But this seems like it is hardcoding what the query string values are.  So if you visit the webpage with this swf embedded in it with this value:

www.mywebsite.com/movie.swf?myvar=differentValue

Than the movie wouldnt pick up the different value of myvar.  Or maybe I am missing something.  It also doesnt help that any time I change the movie and embed values in my object tab (ie from movie.swf to movie.swf?myvar=$value1) I get a security exception with flash player and it wont let me call the webservice from a different domain...
Avatar of Fern2
Fern2
Flag of Iceland image

Use this:
<PARAM NAME=FlashVars VALUE="myvar=variable&myvar1=variable1&myvar2=variable2">

Then when the movie loads you can trace the variables.

trace(myvar);
outout: variable
trace(myvar1);
outout: variable1
trace(myvar2);
outout: variable2
ASKER CERTIFIED SOLUTION
Avatar of Fern2
Fern2
Flag of Iceland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of wildbrookmedia

ASKER

I think your first post makes it so that the parameters are always the same values.  (ie the flash movie doesnt really look at the query string for the variables)

I will have to look into javascript I think...
thats my point, you can set the "flashvars" with javascript.

 
for those that browse this question later, the best javascript example I found was here:

http://www.noscope.com/journal/2003/12/query_string