# I suck

**URL:** https://forum.kirupa.com/t/i-suck/5557
**Category:** Uncategorized
**Created:** [September 15, 2002, 5:47pm UTC](https://forum.kirupa.com/t/i-suck/5557 "2002-09-15T17:47:07Z")
**Posts on this page:** 11
**Page:** 1

<div class="post-metadata">

### Author: ![KGBeast](https://avatars.discourse-cdn.com/v4/letter/k/c5a1d2/32.png) [@KGBeast](https://forum.kirupa.com/u/KGBeast)
#### Post date: [September 15, 2002, 5:47pm UTC](https://forum.kirupa.com/t/i-suck/5557/1 "2002-09-15T17:47:07Z")

</div>

does someone have some time to spare to help out  
a schmuk with FlashMX?

---

<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: [September 15, 2002, 5:54pm UTC](https://forum.kirupa.com/t/i-suck/5557/2 "2002-09-15T17:54:59Z")

</div>

Don’t put yourself down like that mate… What’s the problem…

---

<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: [September 15, 2002, 6:00pm UTC](https://forum.kirupa.com/t/i-suck/5557/3 "2002-09-15T18:00:58Z")

</div>

well,

its probably the most basic thing in Flash - and you’ll probably say go buy a book because its too much to explain…

but,

i havea button on my page that is triggers a sound when it is clicked. I also want this to load the next page.

do i use loadmovie &  
name each page a seperate .swf?

do i put each page on seperate scenes?

---

<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: [September 15, 2002, 6:05pm UTC](https://forum.kirupa.com/t/i-suck/5557/4 "2002-09-15T18:05:27Z")

</div>

The general opinion is that, having all your “pages” or parts of the movie in seperate scene means a bigger total file size. Although it keeps all the “movie” together.

If you have 15 scenes and a visitor only chooses to view 2 of them, they would have had to wait for the whole movie, i.e. all the scenes to load.

Whereas if you have each section as a seperate swf (seperate movie), only the movie that the user wants, is loaded when they request it. This keeps the main movies file size (the one that loads first) lower, and all the other individual swfs’ sizes lower too.

But it depends on the size of your site/movie.

---

<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: [September 15, 2002, 6:08pm UTC](https://forum.kirupa.com/t/i-suck/5557/5 "2002-09-15T18:08:41Z")

</div>

ok

from the explanation, i think i should have them on seperate  
scenes.

then, a button on scene 1 would load the next .swf on scene 2 using what command?

---

<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: [September 15, 2002, 6:11pm UTC](https://forum.kirupa.com/t/i-suck/5557/6 "2002-09-15T18:11:38Z")

</div>

You could have it as simple as:

[COLOR=blue]on (release) {  
gotoAndPlay(nextScene());  
}[/COLOR]

Or have

[COLOR=blue]on (release) {  
gotoAndPlay(“Scenename”, “framenumber”);  
}[/COLOR]

---

<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: [September 15, 2002, 6:13pm UTC](https://forum.kirupa.com/t/i-suck/5557/7 "2002-09-15T18:13:16Z")

</div>

ok

and i should place stops on blank layers?

---

<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: [September 15, 2002, 6:14pm UTC](https://forum.kirupa.com/t/i-suck/5557/8 "2002-09-15T18:14:48Z")

</div>

where do i place that command?

the instance?  
the “down” frame?  
the actual button?

---

<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: [September 15, 2002, 6:15pm UTC](https://forum.kirupa.com/t/i-suck/5557/9 "2002-09-15T18:15:48Z")

</div>

On each scene, it’s good practice to have a layer called, “Control”, or “Actions”, etc. to keep your actionscript on. On the first frame of each scene, in any layer -but tidier if you use the above example - put a [COLOR=blue]stop();[/COLOR]. This will prevent your movie from just playing through and looping.

---

<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: [September 15, 2002, 6:21pm UTC](https://forum.kirupa.com/t/i-suck/5557/10 "2002-09-15T18:21:53Z")

</div>

“Its…its…its aaaaaaaaalive”

thanks man.

got time for a couple other questions?

---

<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: [September 15, 2002, 6:25pm UTC](https://forum.kirupa.com/t/i-suck/5557/11 "2002-09-15T18:25:20Z")

</div>

Post your questions, if I’m not around, there’s many others who will help…
