CodeVerge.Net Beta
Login Idy
Register Password
  Forgot?
   Explore    Item Entry    Profile    Invite   History    Resources   SiteMap  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML




Zone: > newsgroup > asp.net forum > general_asp.net.master_pages_themes_and_navigation_controls Tags:
Item Type: NewsGroup Date Entered: 1/11/2007 7:50:07 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 12 Views: 7 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
13 Items, 1 Pages 1 |< << Go >> >|
barryman9000
Asp.Net User
Menu Control & Flash swf in FireFox1/11/2007 7:50:07 PM

0/0

I have a Menu control that is linked to the web.sitemap file.  On one of my pages, I have a big flash movie.  Using FireFox, when I hover over a menu link, the dynamic menus look like they're behind the flash movie, and are only partially visible.  It works fine with IE7 though. 

Has anyone encountered this problem before?  Any suggestions?

tfsmag
Asp.Net User
Re: Menu Control & Flash swf in FireFox1/12/2007 5:11:23 PM

0/0

if you're using CSS you can set the z-index of the menu to a higher value than that of the content.

.menucss

{

 z-index:100;

}

.pagecontent

{

z-index:1;

}

 

then set the cssclass of the menu control to cssclass="menucss" and the container for your swf to (i'm assuming you're using a div or a table)

<div class="pagecontent">your swf goes here</div>

or

<table class="pagecontent"><tr><td>swf goes here</td></tr></table> 


------------------------------------------------
Jeff Turner (simpleModus)

Don't forget to mark the correct answer for your
question to help out future visitors!
barryman9000
Asp.Net User
Re: Menu Control & Flash swf in FireFox1/12/2007 8:03:18 PM

0/0

Thanks for the suggestion, but I can't seem to get it to work.  Does it matter that I'm using the swfObject to load my Flash movie?

<

div style="z-index:1">

<script type="text/javascript">

var so = new SWFObject("flash/movie.swf", "mymovie", "765", "600", "7", "#FFFFFF");

so.write(

"flashcontent");

</script>

</div>
docluv
Asp.Net User
Re: Menu Control & Flash swf in FireFox1/12/2007 9:01:24 PM

0/0

I think this is either a bug in the FireFox rendering engine or with Flash Iteself. I have this same issue on one of my sites. I was able to correct it, but I cannot recall what I did. This is the site, you are welcome to viewsource and see if there was anything I did.

http://www.premierehomesinc.com/

The flash was created using Swishzone. But I have seen this issue on a number of sites, it has nothing to do with .NET.


Chris Love
tfsmag
Asp.Net User
Re: Menu Control & Flash swf in FireFox1/12/2007 11:01:54 PM

0/0

You're missing the ";" in your style attribute, try copying and pasting this and see if it works. 

 

<div style="z-index:1;">

<script type="text/javascript">

var so = new SWFObject("flash/movie.swf", "mymovie", "765", "600", "7", "#FFFFFF");

so.write("flashcontent");

</script>

</div>


------------------------------------------------
Jeff Turner (simpleModus)

Don't forget to mark the correct answer for your
question to help out future visitors!
barryman9000
Asp.Net User
Re: Menu Control & Flash swf in FireFox1/16/2007 4:27:50 PM

0/0

Thanks, but adding the ";" didn't do it.  And thanks DocLuv, but I couldn't see anything specific in your code.  I'm guessing it has something to do with the swfObject.

Any other suggestions?

catapultic
Asp.Net User
Re: Menu Control & Flash swf in FireFox1/16/2007 4:32:21 PM

0/0

In the <object> tag of your flash movie, try explicitly setting the z-index to a value less than the one of your menu.

 

This is a very common problem, though, and I don't remember how to fix it either :( 

barryman9000
Asp.Net User
Re: Menu Control & Flash swf in FireFox1/16/2007 5:11:08 PM

0/0

Thanks for the reply but, I think that's one of the problems.  I'm not using <object> tags, I'm using a swfObject. 

<

script type="text/javascript" src="flash/swfobject.js"></script>

 

<div id="flashcontent">

This text is replaced by the Flash movie.

</div>

<div style="z-index:1;">

<script type="text/javascript">

var so = new SWFObject("flash/campusMap2.swf", "mymovie", "765", "600", "7", "#FFFFFF");

so.write(

"flashcontent");

</script>
Zhao Ji Ma - MS
Asp.Net User
Re: Menu Control & Flash swf in FireFox1/23/2007 8:51:39 AM

0/0

Try this:

param name="wmode" value="transparent"

Zhao Ji Ma
Sincerely,
Microsoft Online Community Support

?Please remember to click ?Mark as Answer? on the post that helps you, and to click ?Unmark as Answer? if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ?
barryman9000
Asp.Net User
Re: Menu Control & Flash swf in FireFox1/23/2007 9:35:27 PM

0/0

Thanks for the suggestion, but I'm not using an <object> tag, I'm using a swfObject to load my Flash movie.
Zhao Ji Ma - MS
Asp.Net User
Re: Menu Control &amp; Flash swf in FireFox1/24/2007 1:47:59 AM

0/0

Try this: 
   var so = new SWFObject("movie.swf", "mymovie", "200", "100%", "7", "#336699");
   so.addParam("wmode", "transparent");
   so.write("flashcontent");

Zhao Ji Ma
Sincerely,
Microsoft Online Community Support

?Please remember to click ?Mark as Answer? on the post that helps you, and to click ?Unmark as Answer? if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ?
barryman9000
Asp.Net User
Re: Menu Control &amp; Flash swf in FireFox1/24/2007 6:41:33 PM

0/0

That's did it!  Thank you so much, that one was really becoming a pain
xb90
Asp.Net User
Re: Menu Control & Flash swf in FireFox9/26/2007 6:19:00 AM

0/0

This worked for me with a shockwave-flash embedded object.

THANK YOU!!! 

13 Items, 1 Pages 1 |< << Go >> >|



Search This Site:





Other Resources:
GetURL & IE Problem -- not refreshing linked page - macromedia.flash ... Maximum fla/swf size. Flash disappears in Firefox Mac?? how come? ... Adding dynamic Controls. Menu SelectedItem Problem. novell support netware 6x storage-media ...
FLV player for Mac - SWF & FLV Player for Mac OS - Free FLV Flash Player SWF & FLV Player is a free and smart Flash movie Player. It can playback files with plenty of bonus features and provides handy movie controls.
3d-Rotation-Menu | HTML Authoring Download | PC World ... its templates gallery, you can build Flash menu and Web sites in minutes with ... Would Like to Set Firefox to Open Automatically... Started on Fri Aug 08 ...
Flash Movie Extractor Scout 1.91 Free Software Download. Save flash ... ... videos and flash games extracted from Internet Explorer, Mozilla Firefox and Opera browsers. ... 1 Cool Menu FX Tool - Java 1.4 Animated expandable Java ...
Allows you to create Web menu/navigation Popup menu web control for ASP with support for IE, Firefox, Opera and others. ... coalesys webmenu for jsp - Cool Flash SWF Maker is easy converts your Flash swf ...
Audio & Multimedia Freeware - Flash Movie Player 1.3 - Flash Movie ... Flash Movie Player free download, review. Flash Movie Player is a standalone player for Shockwave Flash (SWF) animations, based on Macromedia Flash Player plug-in
Flash tools and utilitys, Flash Development, Flash Movies, Create ... Create an association in the folders options control panel. ... How do I disable the right click menu in my SWF Flash File? Relations: Jugglor->General ...
RSS Feed for http://www.epicsoft.net Flash control working with javascript menu. Flash Detection Issue ... flash &amp; visual studio 2003. epicFlashControl. Atlas &quot;AJAX&quot; + flash control ...
SWF Opener 1.3 Free Software Download. SWF files (Flash movies) player SWF Opener lets you control playback, set scale modes, ... such as your desktop, the Start menu, My Documents, and Favorites, and stores them in its local...
Flash Halloween Costume Dress-Up Doll II: Controls & Scripting ... doll work by setting up the menu and learning how to hide and unhide the various parts when their menu elements ... an SWF in a Web Page Flash Basic Walk ...
 
All Times Are GMT