# This Should Be Easy

**URL:** https://forum.kirupa.com/t/this-should-be-easy/45341
**Category:** flash
**Created:** [March 13, 2004, 11:01am UTC](https://forum.kirupa.com/t/this-should-be-easy/45341 "2004-03-13T11:01:27Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Mannequin](https://avatars.discourse-cdn.com/v4/letter/m/5f8ce5/32.png) [@Mannequin](https://forum.kirupa.com/u/Mannequin)
#### Post date: [March 13, 2004, 11:01am UTC](https://forum.kirupa.com/t/this-should-be-easy/45341/1 "2004-03-13T11:01:27Z")

</div>

This should be so easy ☹  
What the hell is wrong with me? I’m starting to question my sanity…

Anyway, I’m using loadMovie() and then trying to go to a specific frame within it:

```auto
_root.loadMusic.loadMovie("song.swf");

```

Then there’s a “Play” and “Stop” button. Let’s look at the Stop button. (Assume the above song has fully loaded.) Here’s my actionscript:

```auto
// songClip is a movie clip within song.swf

on(release) {
     _root.loadMusic.songClip.gotoAndStop(_currentFrame);
}

```

When I replace “currentFrame” with a number, say 10, it doesn’t work either. This should be so simple but I just don’t get 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: [March 13, 2004, 4:44pm UTC](https://forum.kirupa.com/t/this-should-be-easy/45341/2 "2004-03-13T16:44:30Z")

</div>

hey,  
you can load your Movie into a level like loadMovieNum (“audio.swf” , 10). and then target your movie as you would a level :

```auto

_level10.gotoAndStop(_currentFrame);

```

remember in the movie that you’re putting on \_level 10 you need to have a song imported as streaming sound and don’t forget to extend frames in that movie - just add blank frames untill you see the end of sound. A streaming sound will only play while there are frames for it to play on.

---

<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: [March 13, 2004, 4:59pm UTC](https://forum.kirupa.com/t/this-should-be-easy/45341/3 "2004-03-13T16:59:08Z")

</div>

And I think you want \_currentframe not \_currentFrame…not positive, but fairly certain.

Adam

---

<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: [March 13, 2004, 5:48pm UTC](https://forum.kirupa.com/t/this-should-be-easy/45341/4 "2004-03-13T17:48:45Z")

</div>

> \*Originally posted by Adam14 \*  
> \*\*And I think you want \_currentframe not \_currentFrame…not positive, but fairly certain.

Adam \*\*  
fairly right.
