I would like to hide a button.
I'd like to pass a variable thru the url like so:
//test.swf?control=0;
control 1: being on, 0: off
if(_root.control =='1')
{
button._visible = true;
}
Can anyone explain why the button is visible when "test.swf?control=0;"
is passed thru the url.