Try this approach:
in the xml
Code:
<item label="Super Beatle" url="frame number" target="absolute movie clip path"></item>
like for example:
Code:
<item label="Super Beatle" url="5" target="_root.testmc.wheel"></item>
in the GenericMenuItem.as :
Code:
public function onRelease() {
var targetMC:MovieClip = eval(Node.attributes.target);
if (_url_ != "") {
targetMC.gotoAndStop(Number(_url_));
}
}