To tentando botar uma especie de player pra funcionar,mas ele não roda
botei isso:
Tem umas ilusttraçoes....mas o que intereça mesmo é o que vermelho,não da erro,mas o video não roda
nem no F12 e nem no ctrl+enter
botei isso:
- Código:
//Variaveis de Conexão
[color=red]var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
video.attachVideo(ns);
ns.play("C:\Documents and Settings\Nilza\Desktop\Manolego\Flash\Player\video\System Of A Down - B.Y.O.B. (HD).flv");[/color]
//*Ações dos Botões
//*Botão Voltar
bt_voltar.onRelease = function () {
ns.seek(0)
}
//*Botão de Stop
bt_stop.onRelease = function () {
ns.seek(0)
ns.pause()
}
//*Botão Play Pause
play_pause.onRollOver = function() {
if(this._currentframe==1) this.gotoAndStop("pause_over") ;
else this.gotoAndStop("play_over");
}
play_pause.onRollOut = onReleaseOutside = function() {
if(this._currentframe==1) this.gotoAndStop("pause") ;
else this.gotoAndStop("play");
}
play_pause.onRelease = function() {
if (this._currentframe==10) {
this.gotoAndStop("play_over")
this._parent.pauseit();
}
else
{
this.gotoAndStop("pause_over")
this._parent.Unpauseit();
}
}
pauseit = function(){
ns.pause();
}
Unpauseit = function(){
ns.play();
}
Tem umas ilusttraçoes....mas o que intereça mesmo é o que vermelho,não da erro,mas o video não roda
nem no F12 e nem no ctrl+enter