# Problem w/ tutorial posted at Kirupa

**URL:** https://forum.kirupa.com/t/problem-w-tutorial-posted-at-kirupa/216872
**Category:** flash
**Created:** [February 21, 2007, 5:34am UTC](https://forum.kirupa.com/t/problem-w-tutorial-posted-at-kirupa/216872 "2007-02-21T05:34:18Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![divspace](https://avatars.discourse-cdn.com/v4/letter/d/f17d59/32.png) [@divspace](https://forum.kirupa.com/u/divspace)
#### Post date: [February 21, 2007, 5:34am UTC](https://forum.kirupa.com/t/problem-w-tutorial-posted-at-kirupa/216872/1 "2007-02-21T05:34:18Z")

</div>

i used this tutorial:  
[http://www.kirupa.com/developer/mx2004/transitions.htm](http://www.kirupa.com/developer/mx2004/transitions.htm)  
(\*\* [FONT=Verdana][SIZE=4][COLOR=#003366]Transitions [/COLOR][/SIZE][/FONT] \*\*[FONT=Verdana][SIZE=4][COLOR=#003366]Between External SWFs)

[/COLOR][/SIZE][/FONT]i have a simple problem…this tutorial tells u to use Button symbols for the navigation

well i wanted to use MovieClip Symbols as my buttons but when i paste the actionscript on the movieclip…nothing happens

this will only work on a Button symbol and not a MovieClip symbol

```auto
on (release){
    if (_root.currMovie == undefined) {
        _root.currMovie = "3";
        container.loadMovie("3.swf");
    } else if (_root.currMovie != "3") {
        if (container._currentframe>= container.midframe) {
            _root.currMovie = "3";
            container.play();
        }
    }
}

```

what do i need to do to modify the actionscript to get it to work???

-thnx

[FONT=Verdana][SIZE=4][COLOR=#003366]  
[/COLOR][/SIZE][/FONT]
