98,809 Mesaj - 12,037 Konu - 70,683 Üye - Son üye: nezihh
İndirmeden Kaliteli FİLM İZLEMEK için Tıklayın!

Sitemizde online izlenebilen telif haklarını ihlâl eden Klipler ve online dinlenebilen Müzikler kaldırılmıştır.
Gördüğünüz durumda İletişim'e tıklayarak bildiriniz.
Sayfa: [1] 2 |   Aşağı git
 
Gönderen Konu: Sayfaniz devamli muzik...  (Okunma Sayısı 1429 defa)
0 Üye ve 1 Ziyaretçi konuyu incelemekte.
Tılsım
Co-admin [%75]
*

İtibarı : 702
Offline

Mesaj Sayısı: 3,307


edeb yâ hû















« : Temmuz 08, 2007, 11:58:10 ÖÖ »


Asagidaki scriptte adlari ve sarkilarin URL adreslerini degistriniz sadece :



Alıntı
<!-- start code provided by createblog.com -->
<OBJECT ID="Player" height="0" width="0" CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<PARAM NAME="uiMode" VALUE="invisible">
<PARAM NAME="Autostart" VALUE="False">
</object>

<FORM ID="form">

<SELECT ID="playlist" size="1">

<!-- Add song info that appears in drop down list here -->
<option value="0">Unchained Melody</option>
<option value="1">Don't make my brown eyes blue</option>
<option value="2">Longer</option>
<option value="3">Only You</option>
<option value="4">Leaving on a jet plain</option>
<option value="5">I will always love you</option>
<option value="6">I just called to say..</option>
<option value="7">Love me tender</option>
<option value="8">My heart will go on</option>
<option value="9">I can love you better</option>

</SELECT>
<BR>
<BUTTON ID="BackButton" onClick="Back(forms['form'].playlist);"> << </BUTTON>
<BUTTON ID="PlayPauseButton" onClick="PlayPause(forms['form'].playlist);"><FONT color="green">Play</FONT></BUTTON>
<BUTTON ID="NextButton" onClick="Next(forms['form'].playlist);"> >> </BUTTON>
<BUTTON ID="StopButton" onclick="Stop();"><FONT color="maroon">Stop</FONT></BUTTON>
<b><font size="3" color="black">Shuffle</font></b><INPUT TYPE=checkbox CHECKED ID="ShuffleSwitch" onclick="ToggleShuffle(this);" value="ON">
</FORM>
<comment ID="PlayHTML"><FONT color="green">  Play  </FONT></comment>
<comment ID="ShuffleOnHTML"><INPUT TYPE=checkbox CHECKED ID="ShuffleSwitch" onclick="ToggleShuffle(this);"></comment>
<comment ID="ShuffleOffHTML"><INPUT TYPE=checkbox UNCHECKED ID="ShuffleSwitch" onclick="ToggleShuffle(this);"></comment>


<script ID="Main" Language="JavaScript">

   var songs = new Array();

   //*******************************//
   //****** CHANGEABLE STUFF *******//
   //*******************************//
   
   var shuffle = false;  // false = shuffle off, true = shuffle on

   var autoStart = true;   // false = autoStart off, true = autoStart on
   
   var numberTracks = true;  // true = place track number in front of list items, false = no track numbers
   
   // Add song URLs here (make sure it matches up with the order you have for song info, and urls need quotes):
   songs[0]="http://www.angelfire.com/ok2/WildDancer/images/unchained2.wav";
   songs[1]="http://jacsplace.topcities.com/dontitmakemybrowneyesblue.wav";
   songs[2]="http://www.angelfire.com/on3/oceanangel/DanFogelbergLonger.wav";
   songs[3]="http://www.celebritydirect.org/notweb/music/pl-onlyyou.mp3";
   songs[4]="http://www.angelfire.com/on2/MoniqueM/images/LeavingOnAJetPlane.wav";
   songs[5]="http://www.angelfire.com/hi4/MoniqueM/images/alwaysloveyou.wav";
   songs[6]="http://www.geocities.com/poppage11/StevieWonderIJustCalledToSayILovedYou.wav";
   songs[7]="http://www.angelfire.com/oh2/MoniqueM/images/lovemetender.wav";
   songs[8]="http://www.angelfire.com/on3/MoniqueM/images/MyHeartWillGoOn.wav";
   songs[9]="http://www.geocities.com/mishy_erwin/DixieChicks_ICanLoveYouBetter.wav";

   
   //*******************************//
   //*******************************//

// Initializations //
with (document){
   var length = forms['form'].playlist.length;

   if(numberTracks){
  for (var i = 0; i < length; i++){
     forms['form'].playlist.options.innerHTML = (i+1) + " - " + forms['form'].playlist.options.innerHTML;
  }
   }
   
   if (shuffle) {
  var randsg = Math.floor(Math.random()*songs.length);
  Player.url = songs[randsg];
  forms['form'].playlist.options[randsg].selected = true;
  forms['form'].ShuffleSwitch.outerHTML = ShuffleOnHTML.innerHTML;
   }

   else {
  forms['form'].ShuffleSwitch.outerHTML = ShuffleOffHTML.innerHTML;
  Player.url = songs[0];
   }

   if(autoStart){
  var snum = forms['form'].playlist.selectedIndex;
  if(Player.url != songs[snum]){
     Player.url = songs[snum];
  }
  Player.controls.Play();
   }
}

// Functions //
// Discription: "PlayPause" will toggle playing and pausing if the same song is still selected,
//              otherwise it will load the newly selected song
function PlayPause(list) {
   var snum = list.selectedIndex;
   
   if((Player.url == songs[snum] && Player.url != "") && Player.playState != 1){
  if(Player.playState == 3){
     Player.controls.Pause();
  }
 
  else {
     Player.controls.Play();
  }
   }

   else {
  Player.url = songs[snum];
  Player.controls.Play();
   }
}

// Discription: "Next" will move to the next music file if shuffle is off
//              otherwise it will load a random song. Calls PlayPause to start music.
function Next(list) {
   var snum = list.selectedIndex;
   if (!shuffle) {
  if (snum == list.length-1) {
     snum = -1;
  }
  snum++;
   }
   
   else {
  var temp;
  do{
     temp = Math.floor(Math.random()*songs.length);
  } while(temp == snum);
  snum = temp;
   }
   
   list.options[snum].selected = true;
   PlayPause(list);
}

// Discription: "Back" does the same thing as "Next" but moves backwads
//              through the list. If shuffle is on then picks a random song.
function Back(list) {
   var snum = list.selectedIndex;
   if (!shuffle) {
  if (snum == 0){
     snum = list.length;
  }
  snum--;
   }
   
   else {
  var temp;
  do{
     temp = Math.floor(Math.random()*songs.length);
  } while(temp == snum);
  snum = temp;
   }
   
   list.options[snum].selected = true;
   PlayPause(list);
}

// Discription: Self explanitory.
function Stop(){
   Player.controls.Stop();
}

// Discription: Makes the shuffle flag the same as the status of the CheckBox
//    The status of the checkbox (true/false) indicates if the box is checked
function ToggleShuffle(CheckBox) {
   shuffle = CheckBox.status;
}

</SCRIPT>

<script ID="StateChangeHandler" Language = "JavaScript" For = "Player" Event = playStateChange(NewState)>

// Description: This is an interupt handler used to handle instances when the
//              state of the player changes to play or stop for example.

//STATE.innerText = NewState;

switch(NewState){
   case 8:  // Handles player after it just finishes playing through a song
  var num = document.forms['form'].playlist.selectedIndex;
   
  if (!shuffle){
     if(num == document.forms['form'].playlist.length-1){
    num = -1;
     }
 
     num++;
  }
  else {
     var temp;
     do{
    temp = Math.floor(Math.random()*songs.length);
     } while(temp == num);
     num = temp;
  }
   
  document.forms['form'].playlist.options[num].selected = true;
   
  PreviousState = NewState;
  break;

   case 1: // Handles player after it stops
  if(PreviousState == Cool{
     var num = document.forms['form'].playlist.selectedIndex;
     Player.settings.autoStart = true;
     Player.url = songs[num];
     PreviousState = NewState;
  }
 
  else if (PreviousState != 3 && PreviousState != 2){
     Player.controls.Play();
     Player.settings.autoStart = false;
  }
 
  else{
     forms['form'].PlayPauseButton.innerHTML = PlayHTML.innerHTML;
  }
  break;

   case 3: // Handles player after it starts to play
  PreviousState = NewState;
  forms['form'].PlayPauseButton.innerHTML = "Pause";
  shuffle = document.forms['form'].ShuffleSwitch.status;
  break;

   case 2: // Handles player after being paused
  PreviousState = NewState;
  forms['form'].PlayPauseButton.innerHTML = PlayHTML.innerHTML;
  break;

   default:
}

</SCRIPT>
<!-- end code provided by createblog.com -->


Logged

...Yare varmak hoştur ama yaren olmak başkadır başka...
-
Nymphetamine
Ziyaretçi
« Yanıtla #1 : Temmuz 23, 2007, 09:24:49 ÖÖ »

bilgiler için saol ...
Logged
p_kilicarslan
Master Üye [%28]
*****

İtibarı : 223
Offline

Mesaj Sayısı: 1,376


Alayına İsyan!!! انتفاضة لجميع!!!















« Yanıtla #2 : Ağustos 06, 2007, 05:11:06 ÖS »

Ellerine sağlık hocam!
madem konu müzikten açıldı bende basit bir kod yazayım
Bu sayfa açıldığında arkaplanda müzik çalması için

<bgsound src="dosyayolu.uzantı" loop="defa çaldır">

Kullanımı <body> tagları arasına yerleşiriyoruz.
örn:
<bgsound src="C:/Document..../nerdesin.wma" loop="5">
Logged
vidocq
Yeni Üye [%1]
*

İtibarı : 0
Offline

Mesaj Sayısı: 3















« Yanıtla #3 : Kasım 02, 2007, 10:06:11 ÖÖ »

TEŞEKKÜRLER EMEĞİNE SAGLIK
Logged
KingcobrA
Altın Üye [%10]
***

İtibarı : 16
Offline

Mesaj Sayısı: 58


R(-)d€/N(-) ! :-] !















« Yanıtla #4 : Kasım 02, 2007, 10:58:06 ÖÖ »

Teşekkürler Tılsım. Smiley
Logged

! kingcobra !
- TeknikPortaL.Com -
Matkap
Moderator [%50]
*

İtibarı : 1522
Offline

Mesaj Sayısı: 2,467


яσ¢к-мαткαρ















« Yanıtla #5 : Kasım 08, 2007, 09:21:53 ÖÖ »

eline sağlık tılsımm
Logged

OqUzHAn

                                                    мαткαρ
Sayfa: [1] 2 |   Yukarı git
 

 
Gitmek istediğiniz yer:  

Benzer Konular
Konu Başlığı Başlatan Yorum Okunma Sayısı Son Mesaj
msn de arkadaşlarınıza müzik dinletebilirsiniz MSN Messenger « 1 2 3 » wolqi 17 1580 Eylül 20, 2008, 11:51:32 ÖÖ
Gönderen: emre_yucel
Transfer Dosyamız...[DEVAMLI GÜNCELLENECEKTİR] Futbol « 1 2 » uA_40_41_35 6 996 Ocak 23, 2008, 01:37:14 ÖS
Gönderen: soul16
Techno Müzik nedir ? Techno Music Nymphetamine 5 1876 Haziran 24, 2008, 03:44:33 ÖÖ
Gönderen: loading_zone
Ah Şu Müzik Müzik Dünyası - Sohbet & Tartışma « 1 2 » waldoo 10 1112 Mart 12, 2008, 01:36:00 ÖÖ
Gönderen: leona
hangi müzik aleti Müzik Dünyası - Sohbet & Tartışma « 1 2 » ayşe tuğba 8 438 Kasım 05, 2008, 09:57:09 ÖS
Gönderen: ayanomi