Nenhuma postagem.
Nenhuma postagem.

'..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 }

GatoO e Gatah