Hi guys,
Any help on this would be REALLY appreciated!
I have a flash movie reading from an xml file to load a client's portfolio images/details etc.
The flash movie is embedded in a HTML page - the Folio page
However from the home page I want to be able to click on one project and jump to the Folio page, pass in a variable relating to that particular Project and show that one only.
I was wondering was there a way for flash to read from the URL string such that when the user clicks on the project on the home page the url might be:
/Folio.html?projectNumber=5
any way to do something like this?
Any help on this would be REALLY appreciated!
I have a flash movie reading from an xml file to load a client's portfolio images/details etc.
The flash movie is embedded in a HTML page - the Folio page
However from the home page I want to be able to click on one project and jump to the Folio page, pass in a variable relating to that particular Project and show that one only.
I was wondering was there a way for flash to read from the URL string such that when the user clicks on the project on the home page the url might be:
/Folio.html?projectNumber=5
any way to do something like this?
-
Re: Flash Variables from QueryString URL
Fri, April 18, 2008 - 2:59 PMNot directly. You'd have to use some serverside technology as a proxy, that takes that querystring variable and passes it to the swf through the embed code.
On the other hand, you can append it directly to the swf: folio.swf?projectNumber=5
-
-
Re: Flash Variables from QueryString URL
Mon, April 21, 2008 - 2:51 AMThanks!
I've used javascript to read the URL instead and then passed in the variable that way!
thanks for you help
-