# 1st Flash Site... HELP! :)

**URL:** https://forum.kirupa.com/t/1st-flash-site-help/34671
**Category:** Uncategorized
**Created:** [November 5, 2003, 2:07am UTC](https://forum.kirupa.com/t/1st-flash-site-help/34671 "2003-11-05T02:07:26Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![LindseyMichele](https://avatars.discourse-cdn.com/v4/letter/l/9fc348/32.png) [@LindseyMichele](https://forum.kirupa.com/u/LindseyMichele)
#### Post date: [November 5, 2003, 2:07am UTC](https://forum.kirupa.com/t/1st-flash-site-help/34671/1 "2003-11-05T02:07:26Z")

</div>

Hey there! I’m new to [kirupa.com](http://kirupa.com), and to Flash, and I need some help. I found a menu (maybe it’s from here?), and I’m just getting started with AS. When I code one of the buttons to load a movie, all of them do it. How can I code them so that each button loads a different movie??

Here’s the website: [http://www.cloud9vip.com](http://www.cloud9vip.com)

Here’s the AS for the buttons:

nox\_txt.autoSize=“center”;  
nox\_txt.text=myText;  
this.\_alpha=30;  
smallSize=100;  
bigSize=200;  
speed=4;  
reSize=function(mysize,alp){  
this.onEnterFrame=function(){  
this.\_alpha+=(alp-this.\_alpha)/speed;  
this.\_xscale+=(mysize-this.\_xscale)/speed;  
this.\_yscale=this.\_xscale  
}  
}  
this.onRollOver=function(){  
reSize(bigSize,100);  
}  
this.onRollOut=function(){  
reSize(smallSize,30);  
}

this.onRelease=function(){  
\_root.contents.loadMovie(“aboutus.swf”);  
}

Thanks in advance!! :ne:

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [November 5, 2003, 3:10am UTC](https://forum.kirupa.com/t/1st-flash-site-help/34671/2 "2003-11-05T03:10:45Z")

</div>

convert each button into a different symbol (movie clip)… thats it

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [November 5, 2003, 8:21am UTC](https://forum.kirupa.com/t/1st-flash-site-help/34671/3 "2003-11-05T08:21:28Z")

</div>

Thank you! I couldn’t get it to work at first, but I see what I did wrong.
