hello all-
i’m running into what seems to be a simple syntax issue i hope someone can help with. i have a querystring passing a var to my .swf. this var is getting into the movie fine and i can output it in a text box, but i’m having problems “rebuilding it” into my new getUrl. here’s what i have:
on (release) {
getURL("index.cfm?searchtype=" & _root.searchtype & "");
}
what i’m looking to see interpreted by the browser is:
on (release) {
getURL("index.cfm?searchtype=OH");
}
(where the value of _root.searchtype is “OH”)
the action i’m seeing now is the file going to http://mysite.com/0 (where the swf is in the root directory of the site - when i want to see [url=“http://mysite.com/index.cfm?searchtype=OH”]http://mysite.com/index.cfm?searchtype=OH)
thanks much in advance,
nk