# Opening Splash

**URL:** https://forum.kirupa.com/t/opening-splash/9341
**Category:** flash
**Created:** [December 10, 2002, 1:39am UTC](https://forum.kirupa.com/t/opening-splash/9341 "2002-12-10T01:39:33Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Palaecro](https://avatars.discourse-cdn.com/v4/letter/p/3d9bf3/32.png) [@Palaecro](https://forum.kirupa.com/u/Palaecro)
#### Post date: [December 10, 2002, 1:39am UTC](https://forum.kirupa.com/t/opening-splash/9341/1 "2002-12-10T01:39:33Z")

</div>

If I want to create an opening to my site as the result of a button (Ie. A splash page where the user has to click on a enter button) would I have to make that opening into a movie clip. How would I go about doing this. As in how I would assemble the movie clip into the main timeline.

The way I see it now I guess is that I would have to put this opening into a movie clip and create a button that tells the movie clip to play. Although after this opening movie loads I want it to go right into the actual site. I’m sure there must be a simple way to organize all this, but I’m still learning some flash basics so any help on this is greatly appreciated.

---

<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: [December 10, 2002, 1:48am UTC](https://forum.kirupa.com/t/opening-splash/9341/2 "2002-12-10T01:48:22Z")

</div>

What I would suggest is making a seperate HTML page, that is if you want animation in your splash. Otherwise, if its something like…  
[http://www.geocities.com/h4xx02/beta.html](http://www.geocities.com/h4xx02/beta.html)  
then, yes, it is a movie clip or a button. Post reply, and I’ll see what I can help you with 🙂

---

<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: [December 10, 2002, 1:51am UTC](https://forum.kirupa.com/t/opening-splash/9341/3 "2002-12-10T01:51:31Z")

</div>

Theres a couple ways to do what you want, I’ll list some possibilities and you can choose which is best for you.

1. Make a seperate movie with the intro or button and put that on a seperate html page to serve as your splash page. So when a user clicks on the button, it goes to another html page that contains your main movie. You can apply this action to the button:

```php
on(release) {
	getURL("yourmainpage.html", "_blank");
}

```

1. You can add another scene to your existing movie where you would place the button. The new scene would be infront of your main scene. So you can apply this action to your button:

```php
on(release) {
	nextScene();
}

```

I hope that helps. =)

---

<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: [December 10, 2002, 2:13am UTC](https://forum.kirupa.com/t/opening-splash/9341/4 "2002-12-10T02:13:31Z")

</div>

Thanks for the very prompt replies guys. Since the entire thing is going to be done in Flash MX I think I’ll go with your second suggestion electrongeek and put the opening Button/Splash into a separate scene. Thanks again.

---

<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: [December 10, 2002, 2:16am UTC](https://forum.kirupa.com/t/opening-splash/9341/5 "2002-12-10T02:16:34Z")

</div>

Oh one other thing, do you guys know of any tutorials that explains how to create that movement effect you guys have on your little flash animated signatures.

---

<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: [December 10, 2002, 2:28am UTC](https://forum.kirupa.com/t/opening-splash/9341/6 "2002-12-10T02:28:42Z")

</div>

Check the special effects section of this site for flash mx, heres the link:

[http://www.kirupa.com/developer/mx/specialfx.asp](http://www.kirupa.com/developer/mx/specialfx.asp)
