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

**URL:** https://forum.kirupa.com/t/1st-flash-site-help/93811
**Category:** Uncategorized
**Created:** [November 5, 2003, 2:07am UTC](https://forum.kirupa.com/t/1st-flash-site-help/93811 "2003-11-05T02:07:26Z")
**Posts on this page:** 1
**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/93811/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:
