Hi there, I am working on an application for an advocacy group for people with learning difficulties. I have ran into a few issues though that I can’t really figure out.
http://speakupandlisten.co.uk/
If you go to the above link and make your way to the menu, you will see that a black arrow flashes when you hover over a button. Then when you click it, it moves the next page, however when you click the menu button to go back, the black arrow will still be flashing, instead of returning to its first button state.
The main menu is removed before it procedes to the next screen, like so:
public function confSubMenuOneScreen():void {
subMenuOneScreen = new SubMenuOne();
removeChild(mainmenu)
addChild(subMenuOneScreen)
currentScreen = subMenuOneScreen;
}
Could anyone shed some light on why this is happening?
Help would be appreciated.