Hi,
I want a user to make a selection from a (multi-select) listbox and then upon hitting a button, I want to have the action script URL say this:
http://www.gosomeplace.com?lb=the selected listbox values
Thanks in advance!
-Jim
Printable View
Hi,
I want a user to make a selection from a (multi-select) listbox and then upon hitting a button, I want to have the action script URL say this:
http://www.gosomeplace.com?lb=the selected listbox values
Thanks in advance!
-Jim
If you want the choices of your users to be added to the url use this:
In the onChange property of your listbox
PHP Code:_root.myVariable = "http://www.gosomeplace.com?lb=" + getValues();
Then in your button actions put this: (I just tried it)
PHP Code:on(press){
getURL(_root.myVariable);
}