PDA

View Full Version : passing variables


dramarc
09-27-2002, 10:29 PM
Hi!
WHen I try to pass variables from a .swf file to a .asp page, ehrer the values will be displayed, I can only show variables containing numbers!

IN detail: I 2 textinput boxes,"name" and "number"

I pass the to the asp file using a button with the script:

_root.allinfo.getURL("my.asp",_blank,get)

(allinfo is an MC containing the values from the textboxes)

anyway the I catch the values in my asp page, only number is shown!
it can't show letters!
why!

/anders

zoomfreddy
09-28-2002, 09:03 AM
you can force flash to pass you vars like this:

getURL("my.asp?name="+_root.allinfo.name+"&number="+_root.allinfo.number,_blank,get);



:cool: