Help Accordion enabled problem

Greetings!

Have you ever used the Accordion component?
I don’t get why the enabled property doesn’t seem to work. If it works, post a 2, 3 lines of code , cause I just don’t get it

I’ve use the example from Help->Components Language Reference->Accordion:

import mx.core.View;
my_acc.createChild(View, “shippingAddress”, {label: “Shipping Address”});
my_acc.createChild(View, “billingAddress”, {label: “Billing Address”});
my_acc.createChild(View, “payment”, {label: “Payment”});
my_acc.enabled = false;
trace(my_acc.enabled);//Output:false !!! ?!! !!

Of course I used an Accordion in the scene with the instance name of “my_acc”.

I’ve tried the code only aproach( with the Accordion component in the library)…and still nothing:

import mx.core.View;
import mx.containers.Accordion;

var my_acc:Accordion = this.createClassObject(Accordion,“my_acc”,0);
my_acc.createChild(View, “shippingAddress”, {label: “Shipping Address”});
my_acc.createChild(View, “billingAddress”, {label: “Billing Address”});
my_acc.createChild(View, “payment”, {label: “Payment”});
my_acc.enabled = false;
trace(my_acc.enabled);//Output:false !!! ?!! !!

I don’t get it! How can I disable it or stop it from getting user input
I’ve tried:

my_acc.getChildAt(0).enabled = false;

…and nothing !!!
I’m freakin’ out! I just don’t get it!
Need Help!