You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Not working in IE7 - check my code here Created Aug 21, 2009

This thread is solved

Views: 2122     Replies: 1     Last reply Aug 21, 2009  
You must login first before you can use this feature

XVanish

Posts: 2

Registered:
Aug 21, 2009

Not working in IE7 - check my code here

Posted: Aug 21, 2009

Hi all!

I've already saw a few topics about not working in Internet Explorer 7 but no solution so far, or maybe I didn't found it?

My code it's working fine in Firefox, Google Chrome, Opera but in IE 7 it's not showing the player... it shows the "frame" of the player and if I click on it it's downloading my video file.

I've already tried the solution with object wmode="transparent" width=" but still nothing. Here is my code, can someone please find the problem?:

I use flowplayer and flowplayer.controls 3.1.2 and content is 3.1.0.

index.php:
----------
Head section:
<script language="JavaScript" type="text/javascript" src="module/flowplayer/flowplayer.js"></script>
<script language="JavaScript" type="text/javascript" src="module/flowplayer/script_flowplayer.js"></script>

script_flowplayer.js:
---------------------
flowplayer("player", "module/flowplayer/flowplayer.swf",{
clip: {
autoPlay: false,
autoBuffering: true
},
onLoad: function() {
this.setVolume(25);
},
playlist: [
{
url: 'src/sample1.flv',
title: 'Filmulet "sample" nunta - Trailer 1',
details: {
date: '08/21/2009',
creator: 'Roland Studio',
subject: ['sample', 'trailer', 'filmat', 'nunta']
}
},
{
url: 'src/sample2.flv',
title: 'Filmulet "sample" nunta - Trailer 2',
details: {
date: '08/21/2009',
creator: 'Roland Studio',
subject: ['sample', 'trailer', 'filmat', 'nunta']
}
},
],
plugins: {
controls: {
url: 'module/flowplayer/flowplayer.controls.swf',
playlist: true,
backgroundColor: '#000000',
stop: 'true',
tooltips: {
buttons: true,
play: 'porneste vizualizarea',
pause: 'pauza vizualizare',
stop: 'opreste vizualizarea',
previous: 'inapoi',
next: 'inainte',
mute: 'fara sunet',
unmute: 'cu sunet',
fullscreen: 'vizualizeaza pe tot ecranul',
}
},
content: {
url: 'module/flowplayer/flowplayer.content.swf',
height: 22,
padding:2,
backgroundColor: '#112233',
opacity: 0.8,
autoHide: 'yes',
html: '<p>Roland Studio - Montaje video - Trailere',
style: {
p: {
fontSize: 11,
fontFamily: 'verdana',
fontWeight: 'bold',
color: '#FFFFE5',
textAlign: 'center'
}
}
}

}
});

galerie.php:
-----------
Here, in this page, I've inserted the player in one of the tables:

<table>
<tr>

<td class="td_galerie_mijloc_stanga">

<p align="center">
href="src/sample1.flv"
style="display:block;width:400px;height:300px;"
id="player">

</p>

</td>

...

</tr>
</table>

Thank you!

XVanish

Posts: 2

Registered:
Aug 21, 2009

FOUND the problem!

Posted: Aug 21, 2009

Reply to: Not working in IE7 - check my code here, from XVanish
Well,

When you want to do something wright make sure u check and double check and EVEN triple check your code :D

Adding a third file in my playlist I found a comma that was not suposed to remain there.

playlist [ {url1}, {url2}, <--- HERE WAS THE PROBLEM ]

So... IT DOES WORK PERFECTLY IN ALL THE MAJOR BROWSERS, at least for me it does. Have fun!