473,657 Members | 2,585 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Div layer goes behind quicktime player in IE

1 New Member
I am facing this problem of DIV layer going behind the quick time player in IE 7 browser. It works good in Firefox. HTML code that i am using is below. Is some IE specific code required here? Any help is appreciated.

Expand|Select|Wrap|Line Numbers
  1. <html>
  2. <head>
  3. <title>Sample Page</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
  5. <style type="text/css">
  6. <!--
  7. #overlay{position:absolute; left:100px; top: 100px; padding: 5px; background: rgb(220, 233, 240) none repeat scroll 0%; z-index: 1;}
  8.  
  9. #player{position: absolute;
  10.     left: 200px; top: 80px; background: rgb(45, 114, 157) none repeat scroll 0%; overflow: hidden; width: 480px; height: 295px; font-size: 1px;z-index:0;
  11. }
  12.  
  13. -->
  14. </style>    
  15. <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
  16. <!--
  17. // these are the scripts that are called in the links.
  18.  
  19. var texttop = 100;
  20. var textleft = 100;
  21.  
  22. function move(amount)
  23. {
  24.     var x = document.getElementById('overlay');
  25.     texttop += amount;
  26.     x.style.top = texttop;
  27. }
  28.  
  29. function hmove(amount)
  30. {
  31.     var x = document.getElementById('overlay');
  32.     textleft += amount;
  33.     x.style.left = textleft;
  34. }
  35. // -->
  36. </SCRIPT></head>
  37.  
  38. <body>
  39. <div id="player">
  40.     <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" 
  41.         codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=7,3,0,0" id="movieName2"  
  42.         height="295" width="480">
  43.         <param name="src" value="somemovie480.mov">
  44.         <object data="somemovie480.mov" type="video/quicktime" 
  45.         height="295" width="480">
  46.         <param name="wmode" value="transparent">
  47.         <param name="autoplay" value="true">
  48.         <param name="controller" value="false">
  49.         </object>
  50.         <param name="autoplay" value="true">
  51.         <param name="saveembedtags" value="true">
  52.         </object>
  53.  
  54. </div>
  55.  
  56. <div id="overlay">Overlay</div>
  57.  
  58. <br>
  59. Move div <A CLASS="page" HREF="javascript:move(50);">50 pixels down</A>.<BR>
  60. Move div <A CLASS="page" HREF="javascript:move(-50);">50 pixels up</A>.<BR>
  61. Move div <A CLASS="page" HREF="javascript:hmove(-50);">50 pixels left</A>.<BR>
  62. Move div <A CLASS="page" HREF="javascript:hmove(50);">50 pixels right</A>.<BR>
  63.  
  64.  
  65. </body>
  66. </html>
  67.  
  68.  
Feb 1 '08 #1
1 2466
acoder
16,027 Recognized Expert Moderator MVP
See if this recent thread is any help.
Feb 1 '08 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

2
1252
by: Paul Sellis | last post by:
Hi, I need to make an "on demand" QuickTime movie from a menu. So I would like to be able to keep the Quicktime movie player 'open' throughout this presentation, and clicking on the various links updates the current movie without the need to reload the whole webpage What would be the best solution ? Thank you for your help !
7
5930
by: Sean | last post by:
Hi I've written an HTML page that has a link to an MPG file, to be burned onto a "Demo CD". The MPG file is quite big - 500MB. On my computer, it works fine - clicking the link opens up Windows Media Player, which starts showing the video. But on another computer, the link opens up a new browser page, and shows the video as an embedded QuickTime video. The problem is (I think this might be QuickTime's fault) that it takes about 5...
2
9023
by: Vanga Sasidhar | last post by:
Already posted the same message but the date and time of my machine was set back. and it was listed under the old date. Thats why I am posting the same message again. Please accept this. ------------------------------------------------------------------------------------ Hi All, I have some AVI files and i want to create a program which will open an AVI file from the hard disk at runtime and run that Video. But here i want
3
5370
by: ghassett | last post by:
Hello, When I have a Quicktime object embedded in my web page, and I use Javascript to set its URL, the clip always starts playing immediately, even if I have the player's autoplay property set to false. Here is a code snippet: <EMBED width="100%" height="100%" TYPE="video/quicktime" PLUGINSPAGE="www.apple.com/quicktime/download"
0
1400
by: Heidi V.Hundåla | last post by:
Hi! I have a Windows Forms Application, which I am making in Visual Studio 2005, hence I am using the 2.0 framework. I want to include a Quicktime player/plugin in order to play 3gp-files. Anyone know how to do this? I have tried to add this (frequently referenced on the Internet) QuickTime Control 2.0 to the Toolbox, but I can't find it anywhere, so this one
0
1087
by: Al_C | last post by:
Am stuck for now with a .mov file that they want to show. So I need to use Quicktime control and have it installed on my computer. Anyway, having gone through all this I can get it to play. The app calls from one form to do a showdialog() of another form that uses the movie control. The movie plays out ..... But when I close out the parent form I keep getting a memory error. Header says f40: Movie.exe application error then it...
22
2687
by: Michael Levin | last post by:
I have a very simple page, which shows 3 Quicktime movies in a table. I think I'm using just standard simple HTML. In Netscape or Safari on a Mac, they look fine. In Internet Explorer on a PC, the bottom of the movies are cut off (size issues with the table cells). Could someone look at the html here http://server.drmichaellevin.org/worm_supplement.html and tell me why this is different on different platforms?
0
1847
by: rwelti | last post by:
I'm hoping you might have a pointer on a very simple question: When I embed .mov or .mp4 files using Quicktime Player for any Windows browser, I see an annoying white empty box with a blue "QT" logo briefly before the movie starts, no matter that it is in the browser cache ( I can see it ) and that Quicktime has been given a HUGE cache of its own via Player preferences. How can I get the movies to appear instantly, like they do on a...
1
2120
by: josephChiaWY | last post by:
Hi all, Recently, i have met a problem in playing the selected video in the embedded quicktime player. I am creating a video gallery for people to view their .mov file on quicktime player. Below are parts of my code: if($ext=="mov"){ echo "<object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width=320 height=240 standby='Data is loading...' codebase='http://www.apple.com/qtactivex/qtplugin.cab'> <param name=src...
0
8397
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8310
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8827
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8605
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7333
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6167
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4315
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2731
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1957
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.