#1 (permalink)  
Old 05-10-2008, 02:31 PM
Member
 
Join Date: May 2008
Posts: 30
Default Support Archive

I see this menu is attached as a movie clip. Is there a way – once you initiate the attachMovie to un-attach the movie clip (or make it disappear) when you want to?
Reply With Quote
  #2 (permalink)  
Old 05-10-2008, 02:33 PM
Super Moderator
 
Join Date: May 2008
Posts: 561
Send a message via Skype™ to Adrian
Default

You could remove the dynamically attached menu items using removeMovieClip mehod:

Code:
function removeMenu(){
    var a:Array = _global.gRoot.childNodes;
    for (var i in a) {
        var mc = _root["mmi"+i]);
        mc.removeMovieClip();
    }
}
Reply With Quote
  #3 (permalink)  
Old 05-10-2008, 02:35 PM
Member
 
Join Date: May 2008
Posts: 30
Default

Is it possible to have the drop downs flow over top of regular HTML content within Dreamweaver. The demo shows it flowing nicely over the Flash background, but I would like to resize the flash file right down to the menu dimensions.
Reply With Quote
  #4 (permalink)  
Old 05-10-2008, 02:36 PM
Super Moderator
 
Join Date: May 2008
Posts: 561
Send a message via Skype™ to Adrian
Default

That requires javascript coding aswel.You have to deal with the problem that on certain browsers flowing flash over html even if it has transparent areas, will disable anything that is html active under it (like hyperlinks, text selection, etc).
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.