What it sounds like you want is a Static Method that relates to the Class Thumbs
but not the instance of the class. This is a way they can be accessed [Edited after seeing what Avi wrote, yes this does create coupling :( ]. As long as there are all in the same package, this should work
In Menu
public function buttonClicks(event:MouseEvent):void {
Thumbs.showTheThumbs();
}
In Thumbs
public static function showTheThumbs():voud{
TheDoSomethingFunction();
}
phwd
2010-06-30 16:36:30