# Buttons Active/Unactive on click

**URL:** https://forum.kirupa.com/t/buttons-active-unactive-on-click/317933
**Category:** flash
**Created:** [January 6, 2011, 10:26am UTC](https://forum.kirupa.com/t/buttons-active-unactive-on-click/317933 "2011-01-06T10:26:19Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![palsingh](https://avatars.discourse-cdn.com/v4/letter/p/da6949/32.png) [@palsingh](https://forum.kirupa.com/u/palsingh)
#### Post date: [January 6, 2011, 10:26am UTC](https://forum.kirupa.com/t/buttons-active-unactive-on-click/317933/1 "2011-01-06T10:26:19Z")

</div>

i have movie clip buttons on main timeline, i want that the buttons should be active (as they are on mouseOver) when click on them, and become back to normal when other button is clicked…

Help me guys

button AS2 is:

```auto

on (rollOver)
{
    gotoAndPlay(2);
}
on(rollOut)
{
    gotoAndPlay(12);
}
on(release)
{
    getURL("");
}

```
