Archive for February 7th, 2010
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; |
1 | stage.stageFocusRect = false; |