# Actionscript 2.0 question

**URL:** https://forum.kirupa.com/t/actionscript-2-0-question/275852
**Category:** Uncategorized
**Created:** [November 19, 2008, 1:34pm UTC](https://forum.kirupa.com/t/actionscript-2-0-question/275852 "2008-11-19T13:34:19Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![TeddyRosso](https://avatars.discourse-cdn.com/v4/letter/t/f07891/32.png) [@TeddyRosso](https://forum.kirupa.com/u/TeddyRosso)
#### Post date: [November 19, 2008, 1:34pm UTC](https://forum.kirupa.com/t/actionscript-2-0-question/275852/1 "2008-11-19T13:34:19Z")

</div>

I’m making some slide boxes and I want the home\_box animations first  
frame to show in the box before they are animated. Also when you mouse over  
one of the boxes the others disappear, I want them to show permanently …

Might make sense if you see the source file first …  
[http://www.kalumus.no/boxflash2.rar](http://www.kalumus.no/boxflash2.rar)

Grateful for any help !  
Thanks …

box1.onRollOver = function() {

```
_root.attachMovie("home_box1","btn_01",99);
btn_01._x = 5;
btn_01._y = 31;

```

};

box1.onRollOut = function() {  
btn\_01.gotoAndPlay(“playout”);
