# attachMovie

**URL:** https://forum.kirupa.com/t/attachmovie/167923
**Category:** Uncategorized
**Created:** [November 2, 2005, 2:21pm UTC](https://forum.kirupa.com/t/attachmovie/167923 "2005-11-02T14:21:43Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![kritikal](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/kritikal/32/1699_2.png) [@kritikal](https://forum.kirupa.com/u/kritikal)
#### Post date: [November 2, 2005, 2:21pm UTC](https://forum.kirupa.com/t/attachmovie/167923/1 "2005-11-02T14:21:43Z")

</div>

hey guys,

is it possible to to change the value of the alpha setting of an attachedMovie

I have

```auto

function attachBk (thisBk, nextBk):Void {
    if (thisBk == undefined) {
        this.attachMovie(nextBk,"bkHolder1", this.getNextHighestDepth());
    }
    else {
        this.attachMovie(nextBk,"bkHolder2", this.getNextHighestDepth());
        this.attachMovie(thisBk,"bkHolder1", this.getNextHighestDepth());
    }
}

```

When I click a button I want bkHolder1 to fade out but so far I haven’t had any success, I tried doing bkHolder1.\_alpha = 0 just to see if it would affect it’s property but it didn’t.

any help would be greatly appreciated
