I want to use Log4Fx to log button clicks from开发者_StackOverflow a state as i have a state based application with transitions. So on each button click I want to log which state was the user in while he clicked the button because the state change happens on a button click. Can someone suggest a code snippet?
I would think it would look something like:
<mx:LinkButton label=”Hello world again!” click=”logger.info("ButtonNameHere -- state: " + currentState);”/>
精彩评论