Dear Keano
One way to Export Firework Files (in your case 'a button that fly out' - I believe this to be a popup menu) is to export it as a HTML file.
The second step is to open this HTML file in Dreamweaver. This file is separate from you Template file.
You'll need to know how to read JavaScript for the next step. See
In your Template File insert a Layer
(Insert>Layout Objects>Layer)
In code format (in dreamweaver), the layer should read read as follows.
<div id="Layer1"></div>
Simply seperate the javascript code, it should look like this:
<div id="Layer1">
</div>
Now go to the other Dreamweaver file (the one you exported as a HTML file from Fireworks) and select the the java script code for the popup menu. If your unsure just copy all the scripts between and including the codes below:
<script language ="JavaScript">
(lots of code should be here- lines and lines of it
</script>
Now Paste it in the Layer you inserted in your Template.
It should look something like:
<div id="Layer1">
<script language ="JavaScript">
(lots of code should be here- lines and lines of it
</script>
</div>
Go back to the design view in Dreamweaver and adjust where you want the popup menu to be.
Hope this helps
David Ghazawy @