Hi, Im having some problem in the Flash, I need the user to roll over all the buttons on a particular page before they can proceed to the next page, how can I do it?

I want a message pop out saying that ''' Roll over "go" button before proceed''' and the "go" button will be highlighted red.

Does anyone have any idea how to do it??

Thank you.

Assuming it is in AS3, basically, addEventListener to each of the buttons and listen for MouseEvent.MOUSE_OVER.

then use the handler to set a global flag to indicate that button has been rolled over.

Finally, check that the flag matches the required flag value before you allow the user to proceed.

otherwise, use AS3 to draw a dialog box (and TextField) and then use this.addChild(dialogname) and this.removeChild(dialogname) to show and hide the dialog.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.