I’ve had one of the weirdest problems last week when a friend reported that our newly designed navigation menu created in Flex was not working on her MacBook.
Basically, I had a couple of moving Flex Canvas’s where I attached mouse click events.
private function homeClicked(evt:MouseEvent):void {
getURL('/');
}
private function updatesClicked(evt:MouseEvent):void {
getURL('/category/updates');
}
private function [...]
