# Simple ActionScript Not Working - CONFUSED why!

**URL:** https://forum.kirupa.com/t/simple-actionscript-not-working-confused-why/323023
**Category:** Uncategorized
**Created:** [June 14, 2011, 6:34am UTC](https://forum.kirupa.com/t/simple-actionscript-not-working-confused-why/323023 "2011-06-14T06:34:00Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![BUroKHUli](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/burokhuli/32/190_2.png) [@BUroKHUli](https://forum.kirupa.com/u/BUroKHUli)
#### Post date: [June 14, 2011, 6:34am UTC](https://forum.kirupa.com/t/simple-actionscript-not-working-confused-why/323023/1 "2011-06-14T06:34:00Z")

</div>

At first, I thought I was rusty, but I’m beginning to get paranoid because even the simplest AS is not working. I’d like to think that I am RUSTY and all that but why is this happening? Is there any new thing in flash that I need to know? Obsolete AS? Now I’m really really frustrated and confused on how to make even the basic of basics work.

```php
stop();
btn_about.onRelease = function() {
	gotoAndStop("about");
};

```

I have to replace the NAME LABEL (about) to the actual framerate?

```php
stop();
btn_about.onRelease = function() {
	gotoAndStop(101);
};

```
