# Flash movies + Fireworks/Dreamweaver

**URL:** https://forum.kirupa.com/t/flash-movies-fireworks-dreamweaver/15008
**Category:** flash
**Created:** [March 5, 2003, 6:13am UTC](https://forum.kirupa.com/t/flash-movies-fireworks-dreamweaver/15008 "2003-03-05T06:13:37Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![RussianBeer](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/russianbeer/32/152_2.png) [@RussianBeer](https://forum.kirupa.com/u/RussianBeer)
#### Post date: [March 5, 2003, 6:13am UTC](https://forum.kirupa.com/t/flash-movies-fireworks-dreamweaver/15008/1 "2003-03-05T06:13:37Z")

</div>

## Hi there, I created a website in Fireworks, and I want to add a few flash animations I made… It seems to me that I can’t import flash movies in to Fireworks, right? So I exported them both to Dreamweaver… But what I want to do is to make the flash animations appear _over_ my fireworks websit, but dreamweaver just shoves it underneath… how can I fix this? Thanks

The Drunken Koala

---

<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 5, 2003, 7:00am UTC](https://forum.kirupa.com/t/flash-movies-fireworks-dreamweaver/15008/2 "2003-03-05T07:00:59Z")

</div>

CSS Level 2 using layers and positions

---

<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 5, 2003, 9:20am UTC](https://forum.kirupa.com/t/flash-movies-fireworks-dreamweaver/15008/3 "2003-03-05T09:20:10Z")

</div>

Can you elaborate a little more?

---

<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 5, 2003, 10:11am UTC](https://forum.kirupa.com/t/flash-movies-fireworks-dreamweaver/15008/4 "2003-03-05T10:11:06Z")

</div>

In Dreamweaver you can create layers in your HTML. These layers can sit over other content, so you can place Flash movies over image backgrounds etc.

You can also alter the properties of these layers, making them invisible if you so wished.

---

<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 5, 2003, 4:11pm UTC](https://forum.kirupa.com/t/flash-movies-fireworks-dreamweaver/15008/5 "2003-03-05T16:11:08Z")

</div>

if you’ve never done CSS before, its the standard to make pages look pritty well the HTML is for content

ex.

[COLOR=deeppink].main {[/COLOR]  
[COLOR=darkblue]position[/COLOR][COLOR=deeppink]:[/COLOR] [COLOR=blue]absolute[/COLOR][COLOR=deeppink];[/COLOR]  
[COLOR=darkblue]left[/COLOR][COLOR=deeppink]:[/COLOR] [COLOR=blue]5px[/COLOR][COLOR=deeppink];[/COLOR]  
[COLOR=darkblue]top[/COLOR][COLOR=deeppink]:[/COLOR] [COLOR=blue]50px[/COLOR][COLOR=deeppink];[/COLOR]  
[COLOR=darkblue]z-index[/COLOR][COLOR=deeppink]:[/COLOR] [COLOR=blue]2[/COLOR][COLOR=deeppink];[/COLOR]  
[COLOR=deeppink]}[/COLOR]

thats a small ex of it where u could probly guess move it from the left 5px and down 50px and the z-index changes the layer order

check it out --\>[W3C Schools for CSS(http://www.w3schools.com/css/](http://www.w3schools.com/css/))
