Click to See Complete Forum and Search --> : passing a variable in flash


jerryr125
06-12-2010, 06:04 AM
Hi - we are working on a small flash program that will pass a variable using a flash input field. We would simply like the value that is entered t be concatenate to the end of a URL string.

The program is here :
http://www.webdesignsbyjr.com/coletest/qt12.html

when you enter the value 'weaver' and press enter it should go to :
http://smoochphotography.smugmug.com/Proofs/Weaver

Instead it is going to :
http://smoochphotography.smugmug.com/proofs/?steve=weaver&input=

The action code is :

on (keyPress "<enter>") {
var input = "";
getURL("http://smoochphotography.smugmug.com/proofs/"+input, "_self", "GET");
}


Any thoughts/ideas would be appreciated - jerryr