Ask a Question related to Macromedia Flash Ad Development, Design and Development.
-
mjpawlowsky #1
Limiting variables passed in getURL
Is there a way to limit the variables that get passed into the URL when using
getURL?
Basically I have this:
getURL(_root.clickTAG, "_top", "GET");
that ends up being:
[url]http://www.pricecanada.com/search.asp?clickTAG=http%3A%2F%2Fwww%2Epricecanada %2E[/url]
com%2Fsearch%2Easp&myReturnKey=%5Bobject+Object%5D &andor=AND&search=mp3
Even the clickTAG var is being passed! I do need to pass a value coming from
an inputBox in the SWF but that would be it.
Thanks,
Mike
mjpawlowsky Guest
-
Using ASP Passed Variables in Flash
I am trying to take variables passed from an ASP page or just plain txt file MIME formated. I know my variables are getting to the flash movie... -
PASSING VARIABLES WITH getURL
Hopefully, this is a simple answers. Need to pass variables to a .cfm page in another frame using getURL. getURL("frame2.cfm","bottom","POST") ... -
CFGRID variables not passed
Hi there all I have a problem we have an NT4 server with CF5 installed and a website that has a cfgrid that selects users from the database to... -
Controlling Sent Variables in getURL
is there a way to control sent variables using getURL. Ive tried putting them into the second set, but it doesn't seem to work...... -
Array of passed variables
I have a search page within an application I'm developing. The search page could have over a dozen variables passed to it, not through a POST or... -
!lurk #2
Re: Limiting variables passed in getURL
I hate this too. Unfortunately, I don't think there is a way around
this. I haven't tried, but you might be able to get away with calling
geturl() from the movieclip that has all the variables. Of course this
means you'll have to move your input box there as well.
Otherwise, you've got to do it all by hand.
geturl(clickTAG + "?inputbox=" + textbox, "_top");
It's not pretty, but if you don't have a ton of variables, it's not too
tough.
!lurk Guest
-
jht1900 #3
Re: Limiting variables passed in getURL
Create an empty movie clip, add the variables you want to pass to it, and issue a getURL on it.
jht1900 Guest
-
David Stiller #4
Re: Limiting variables passed in getURL
jht1900,
Well said. Alternatively, use the LoadVars class, which requires> Create an empty movie clip, add the variables you want to
> pass to it, and issue a getURL on it.
instantiation (and therefore a pristine object of its own).
David
stiller (at) quip (dot) net
"Luck is the residue of good design."
David Stiller Guest
-
stephan.k #5
Re: Limiting variables passed in getURL
David's suggestion works great. It took me a while to figure it out. Here's
an example...
sendLV = new LoadVars();
sendLV.g = "hello";
sendLV.send("phpfile.php","POST");
Good luck
stephan
stephan.k Guest



Reply With Quote

