have you thought about using a ajax/spry menu as its and it can be done by using the javascript css
Main Topics
Browse All TopicsHi all,
Newbie flash user here :)
I am creating a website and have decided to create my navigation bar using adobe flash cs4. In doing so, i opted to use movie clips so i can animate the buttons during mouse events, and not the typical on-off states when using the button symbol (much like when using fireworks).
To animate the buttons on mouse rollover and rollout, I used the AS 2.0 code as follows.
First off, how will I be able to integrate my flash navigation bar onto dreamweaver cs4 so it will link to the appropriate pages on my site? And as a side question, is there a way for me to achieve smooth animation (like tweens on movie clips) while using the button symbol?
Thanks!
Note: i have attached the flash movie if you would want to see the effect i am after. and since ee does not have the ability to upload .fla files, i changed the extension to .png. Just revert the extension to .fla or .swf to view the movie
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Thanks for the replies!
IanTh, thanks for the input but I have not used ajax/spry nor javascript before.. its only been a few weeks since i first opened dreamweaver and flash :) if you could help me do achieve my nav bar goal easier with those you mentioned, it would really be appreciated :)
Graphixer, I was able to use the code you provided, thank you very much. But I can't seem to find a way to integrate my flash file onto my dreamweaver file (unlike with a fireworks file, i can use the Insert >> Image objects >> fireworks html).
Any ideas? Thanks! :)
have a look at my last web design and look ate the menu
http://www.up2youmobiles.c
the code for that is
<div id="menu">
<ul id="MenuBar1" class="MenuBarHorizontal">
<li><a href="../index.html">Home</a
<li><a href="../contactus.html">Co
<li><a href="../phonerepair.html"
<li><a href="../phoneunlock.html"
</ul>
but its really simple you just create a div for the menu I would do that in a template ( thats why they are ../ because its a template )as its not going to change really between pages then insert spry menu bar and say horizontal then in the properties panel for that spry widget or in code view you can change it to whatever you need
ocamporuss, can I make the assumption that you're publishing to SWF before trying to bring it in to Dreamweaver, and not just trying to import the FLA?
Importing an SWF into Dreamweaver should be just as easy as it is to import an image (see image below). If all else fails, you could always try dragging-and-dropping the SWF file into the Dreamweaver layout.
Hi guys, thanks for all the help!
IanTh, thanks for the input, but i was not able to get the effects i got while using flash. i will try to study sprys/ajax on a later date, just have to finish my current project.
And to Graphixer, thanks a lot for your input! i was able to do what i wanted to with your help \m/ :D
Business Accounts
Answer for Membership
by: GraphixerPosted on 2009-07-03 at 15:22:25ID: 24774749
I'd probably do something like this:
tc, etc.
b1.onRelease = function() {
getURL("/");
}
b2.onRelease = function() {
getURL("/services/");
}
...e
This should work on buttons and movie clips (but not graphics). Let me know if that doesn't work, or if you had something else in mind.