cioè se faccio 2 script separati al di fuori del ciclo:
Codice PHP:
<script>
$f("[b]player1[/b]", "http://www.****.com/script/flowplayer-3.0.7.swf", {
// this will enable pseudostreaming support
plugins: {
pseudo: { url: 'http://www.****.com/script/flowplayer.pseudostreaming-3.1.1.swf' },
controls:null
},
// clip properties
clip: {
// these two settings will make the first frame visible
autoPlay: false,
autoBuffering: true,
// locate a good looking first frame with the start parameter
start: 62,
// make this clip use pseudostreaming plugin with provider property
provider: 'pseudo'
}, play:null
});
</script>
<script>
$f("[b]player2[/b]", "http://www.****.com/script/flowplayer-3.0.7.swf", {
// this will enable pseudostreaming support
plugins: {
pseudo: { url: 'http://www.****.com/script/flowplayer.pseudostreaming-3.1.1.swf' },
controls:null
},
// clip properties
clip: {
// these two settings will make the first frame visible
autoPlay: false,
autoBuffering: true,
// locate a good looking first frame with the start parameter
start: 62,
// make this clip use pseudostreaming plugin with provider property
provider: 'pseudo'
}, play:null
});
</script>
funziona tutto..
se invece metto il tutto nel ciclo non funziona quello che devo fare
sembra quasi che non me li stampi correttamente!