View Full Version : radio buttons not working in firefox
rondog
November 4th, 2008, 01:05 PM
For some reason when I test my app in firefox 2(flash player 9) or 3(flash player 10) the radio buttons do not show up. They work fine in internet explorer however. Anyone have this problem??
rondog
November 4th, 2008, 01:53 PM
I noticed if I place them on the stage, they show up. I am adding them dynamically from the library through a loop if that makes a difference.
rondog
November 4th, 2008, 02:39 PM
Ok I made a really basic dumbed down version of what I am doing. Can anyone tell me if they can see these radio buttons: http://dopserv1.com/Untitled-1.swf
I noticed in firefox and safari you can see the radios appear for a split second and then disappear. The radios are now not working in internet explorer either. Here is my code for this basic example..Can anyone tell what is going on here???
import fl.controls.RadioButton;
import fl.controls.RadioButtonGroup;
var group:RadioButtonGroup = new RadioButtonGroup("groupname");
for (var i:int = 0; i < 4; i++)
{
var rb:RadioButton = new RadioButton();
rb.group = group;
rb.y = i * 25;
rb.setSize(800,25);
rb.value = i;
rb.label = i + ". option " + i;
addChild(rb);
}
These radio buttons show up just fine when I am testing locally.
creatify
November 4th, 2008, 03:34 PM
Your code works fine for me on mac safari and FF?
Could you have, not sure if this is even possible, an AS2 radio button component in your library vs. the AS3 component?
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.