PUBLICIDADE
Mural de Recados
Mural de Recados
Estatisticas do Site
site da radio hits df
Mural de Recados
Tecnologia do Blogger.
SEGUIDORES
RELOGIO
Contador
Lançamento.
BUSCAR
VISITAS
Lançamento.
................
Kesha - Your Love Is My Drug......
Ne-Yo - Beautiful Monster..................
Nx Zero - Só Rezo....................
Justin Bieber - Somebody To Love
Train - Hey Soul Sister.................
Black Eyed Peas - Rock That Body
Shakira - lo hecho está hecho....
B.O.B & Hayley Wiliams - Airplanes
Hevo 84 - Minha Vida É Você
PARCEIROS
'..CAXOTAO DE FOGO....--'.
function stream()
{ System.security.allowDomain(" IP DA RADIO ");
myRadio = new String(" IP DA RADIO ;");
mySound = new Sound();
mySound.loadSound(myRadio, true);
mySound.start();
} // End of the function
function clearBuffer()
{ mySound.stop(); delete mySound; stream();
} // End of the function
timerinProgress = false;
musicOn = true;
offonText = "OFF";
System.security.allowDomain(" IP DA RADIO ");
myRadio = new String(" IP DA RADIO ;");
mySound = new Sound();
mySound.loadSound(myRadio, true);
mySound.start();
var vol = 80;
_root.onEnterFrame = function ()
{ _root.mySound.setVolume(vol);
};
var intervalID = setInterval(clearBuffer, 1200000);
--
Action Script do link do botão:
on (press) {
getURL(" LINK DO SITE ","_blank")
}
--
Action Script do botão play:
on (release)
{
function stream()
{
System.security.allowDomain(" IP DA RADIO ");
myRadio = new String(" IP DA RADIO ;");
mySound = new Sound();
mySound.loadSound(myRadio, true);
mySound.start();
} // End of the function
function clearBuffer()
{
mySound.stop();
delete mySound;
stream();
} // End of the function
stream();
var intervalID = setInterval(clearBuffer, 1200000);
timerinProgress = false;
musicOn = true;
}
--
Action Script do botão stop:
on (release) { mySound.stop(); mySound.close(); _root.timerinProgress = true; _root.musicOn = false; _root.clearInterval(intervalID);
}
--
Action Script do botão mais(+):
on (release)
{ if (_root.vol == 100) { _root.vol = _root.vol - 0; } else { _root.vol = _root.vol + 10; } // end if
}
--
Action Script do botão menos(-):
on (release)
{ if (_root.vol == 0) { _root.vol = _root.vol + 0; } else { _root.vol = _root.vol - 10; } // end if
}