Incredible Drop Down Menu Solution With CSS Only

Disable all button events in AS3

In old AS2 days, whe use a simple big button in the top of the scene to avoid user iteraction while by example posting data and waiting result from server.

In AS3 is more simple:

1
2
3
4
// Disable all button events
stage.mouseChildren = false;
// Also Disable tab events
stage.tabEnabled = false;

Avoiding the yellow focus rectangle

1
stage.stageFocusRect = false;