I'm working on another small app, my sister and brother in law wanted this program, and I used to have a working version in purely MSaccess, but over time it's become pretty crap compared to what I can create with Flash. I ran into a snag though. I really want to incorporate a few of the built in components because filesize is not an issue. For instance, I wish to use the menubar, but it adds a whopping 200k to the file size (or was it 20?). Either way, I've run into a snag. I can create a menubar and populate it with all the necessary options at author-time, but the help files fail to show a way to generate an action when a option is pressed with the mouse. Currently in the xml I use:

PHP Code:
<menuitem label="Close Record" /> 
Which, in AS, is the equivalent of saying:

PHP Code:
f.addMenuItem({label:"Close Record"}); 
Now I already had a thread in the Actionscript forum, but 40 views later, I was the only reply, bumping it back to the top, and after it got pushed off the front page again, I gave up. Anyhow, is there some way to point each button to a function? Is there anything that describes exactly what is broadcasted when a menu item is released?