play sounds, online

This is a discussion on "play sounds, online" within the JavaScript Forum section. This forum, and the thread "play sounds, online are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Apr 4th, 2008, 11:33
New Member
Join Date: Apr 2008
Location: kerman
Age: 18
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
play sounds, online

i will play sounds in webpage so i used <embed> and play or stop it with javascript . but i will can have more sounds an can go to next or previous sounds so i think i must use wmplayer in activexobject ...

i create it but have problem to work :
Code: Select all
<html>
<head>
<title>mehdi</title>
</head>

<body>

<script language=javascript>
    var objPlayer=null
    if(window.ActiveXObject)


        {
        wp = new ActiveXObject("WMPlayer.OCX.7");
    }

    else if (window.GeckoActiveXObject)


        {
        wp = new GeckoActiveXObject("WMPlayer.OCX.7");
    }
if (wp == null) alert ("wmplayer 10 not supported !!!");

wp.URL = "as.asx";

wp.controls.play();

//alert('aa');
</script>
</body>
</html>
so "as.asx" :
Code: Select all
<Asx Version = "3.0" > 
        
<Title > Top 2003</Title>
        
<Param Name = "AllowShuffle" Value = "yes" />


<Entry>

<Param Name = "AlbumID" Value = "Top 2003" />

<Param Name = "AlbumIDAlbumArtist" Value = "Top 2003*;*" />
<Title > Track 05</Title>
<Author > Nancy Ajram</Author>
        
<Param Name = "MediaType" Value = "audio" />
    
<Param Name = "RequestState" Value = "2" /><Title > Track 05</Title>

<Param Name = "WM/AlbumTitle" Value = "Top 2003" />
    
<Param Name = "Singer" Value = "Nancy Ajram" />

<Param Name = "WM/Track" Value = "5" />

<Param Name = "WM/TrackNumber" Value = "5" />

<Param Name = "Time" Value = "Undefined" />

<Ref href = "s2.mp3" />

</Entry>

<Entry>

<Param Name = "AlbumID" Value = "Top 2003" />

<Param Name = "AlbumIDAlbumArtist" Value = "Top 2003*;*" />
<Title > Track 05</Title>
<Author > Nancy Ajram</Author>
        
<Param Name = "MediaType" Value = "audio" />
    
<Param Name = "RequestState" Value = "2" /><Title > Track 05</Title>

<Param Name = "WM/AlbumTitle" Value = "Top 2003" />
    
<Param Name = "Singer" Value = "Nancy Ajram" />

<Param Name = "WM/Track" Value = "5" />

<Param Name = "WM/TrackNumber" Value = "5" />

<Param Name = "Time" Value = "Undefined" />

<Ref href = "s1.mp3" />

</Entry>

</Asx>
Note 1 : you must have two music with (s1,s2.mp3) name.
Note 2 : i will have some code for play music same as http://www.tinyplayer.shahkey.com

excuse for my poor english ...
Reply With Quote

  #2 (permalink)  
Old Apr 4th, 2008, 12:15
Reputable Member
Join Date: Mar 2008
Location: Chester, UK
Age: 17
Posts: 343
Thanks: 2
Thanked 19 Times in 19 Posts
Re: play sounds, online

that script is dependent on "media player 10"

So it doesn't work in my pc, i don't know how many people it will work for, so take that into consideration.

Just a point to consider.
Reply With Quote
  #3 (permalink)  
Old Apr 4th, 2008, 14:02
New Member
Join Date: Apr 2008
Location: kerman
Age: 18
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: play sounds, online

oh! no!!!
this code have problem so it can't play any thing.
i past it here to solve code problem(s) by another one !!@
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
free sounds ahwell Flash & Multimedia Forum 4 Nov 22nd, 2007 12:22
Working with sounds in MX 2004 Kevin Flash & Multimedia Forum 0 Nov 23rd, 2005 20:39
Mousever sounds? autumn_whispers2me Flash & Multimedia Forum 2 Nov 23rd, 2004 13:58
Sounds gwx03 Flash & Multimedia Forum 11 Nov 8th, 2003 08:05
Playing Audio Sounds djaccess Web Page Design 6 Sep 29th, 2003 12:03


All times are GMT. The time now is 22:49.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43