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!
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!