i want to show when a button has been clicked on (visited), by changing the colour (or just another pictogram). How can i do this? (for an example, go http://03.asterisk.be/?03 --> you see the small icons, once visited, they turn blue). How can i do this? Is it just a simple actionscript?
when I click a MC, you see it has been clicked (see the actionscript in the post above). So no problem untill now.
The MC is placed on scene 1, but when i click on that MC it should go to a labeled frame (called “lampe”). So actually it should work just like a button. I tried it with this script:
on (press) {
this.gotoAndStop("b");
}
on (release) {
gotoAndPlay("lampe");
}
but it won’t work. Problem is that i want to give this MC some button-behaviours… How can i solve this? I just want a button that shows that it has been visited and that links to another frame…
it’s driving me crazy! When i click some other MC’s and then that specific MC multiple times, it sometimes works, but mostly not. (and it doesn’t stay in the clicked-status, you can turn it on and off).