One small detail I forgot to mention... you'll need to use the code I listed above in a frame AFTER the accordion has been placed on the stage.
----OR----
You can also set up a doLater function like:
Code:
function setCursor():Void {
myAcc._header0.useHandCursor = true;
};
myAcc.doLater(this, "setCursor")
Basically the accordion takes a frame to initialize. The doLater function will get called as soon as the accordion is ready to hear it. the doLater function accepts 2 parameters doLater(target:MovieClip, function:String). Just pass in the timline that your fucntion you want called (in this example
this, since our timeline for the function is the same as the accordion), and the name of the function (in this example
"setCursor").
Hope that helps,
-Dave