How do i play Songs in my web site

Hi All,
I am developing a web site in JSP. It is for uploading and listening songs online.
I don't know how to Play sound file in the web page
My Id - [email protected]
Thanks in advance.

Why do you need to uncheck them. This stops them from playing in any play list. If you just use the play and shuffle buttons to the right of the playlist Name ( Car in the example below) NOT the main one at the top. It will do what you want.

Similar Messages

  • Can't play videos on some web sites.

    Since the last update for Safari I been unable to play videos in some web sites.I checked Safari preferences, under extensions and than list is empty, so I don't have anything that needs updating. Also cleaned cookies, resetted safari, emptied cache and sitll, can't play the videos. No software updates are available and i havent removed anything from my computer (flash player or any other player).
    Any idea how to solve this problem? Is it because the new OS Lion, thant Safari changed settings?
    Running Mac OS 10.6.8

    Thank you so much i just Did that.
    Ps> just reading your post my computer crashed and i had to report that to apple too

  • Can I have music played automatically when my web site opens?

    I have gotten as far as placing an audio clip on my "about me" page but it seems to require hitting play in order to hear it. Is there a way to have the audio played automatically when the web site comes up? Also can you have it continue to all of the pages? Or is there some other stuff I am missing??
    Thanks!
    Z

    You'll find out all about this here...
    http://www.iwebformusicians.com/MusicPlayers/Players.html
    The xspf player has an autoresume function.....
    http://www.iwebformusicians.com/MusicPlayers/PlayListPlayer.html
    You can build one with a single, long compilation track and hide it in each page.
    Hiding...
    http://www.iwebformusicians.com/MusicPlayers/QT.html
    How to create a compilation at the bottom of this page ....
    http://www.iwebformusicians.com/AudioFiles/Edit.html

  • How do I use adobe on a web site in safari

    How do I use adobe on a web site in safari

    Read this:
    http://forums.adobe.com/docs/DOC-2532#safari

  • I can't play Pinochle on Yahoo web site

    I recently updated Firefox and I can no longer play pinochle on Yahoo web site.
    == URL of affected sites ==
    http://Yahoo.com

    Hello Frederick.
    You may be having a problem with your Flash plugin. Still, try a new (temporary) Firefox profile ([http://support.mozilla.com/en-US/kb/Managing+profiles managing profiles]) and see if it has the same issue. If it doesn't, it's possible that you are having a problem with some Firefox add-on that is hindering Flash's normal behavior. Have you tried disabling all add-ons (except Shockwave Flash), to see if it goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and themes and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.
    If the problem is not disappears when all add-ons are disabled, please tell me, so we can work from there.
    If the new profile has the same problem, it's a problem with Flash and you need to contact Adobe for support, since they are the ones who develop it.

  • How can I play songs on iTunes on my computer that I purchased on my iPhone?

    iTunes won't let me play songs on my computer that I have purchased on my iPhone. They are in the iTunes music library, but i am unable to play them. Can any one help? Thanks

    Alternatives for Help Resetting Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Customer Service: Contacting Apple for support in your
              country and ask to speak to Account Security.
    How to Manage your Apple ID: Manage My Apple ID

  • How can I play songs alphabetically and not shuffled?

    My new Ipod Nano only plays songs in shuffle mode, even when I turn the "shake to shuffle" option to "off"
    I just want to play them alphabetically, any suggestions?

    I just double-checked my Nano, which is also new, and with the Shake to Shuffle turned off, if I just start playing from the "Songs" option , it plays in alphabetical order. Is that what you are doing?

  • How can I play song intro in iTunes?

    iTunes used to have a feature to play song intros (12 seconds to be exact) of songs in a playlist or library.  I need that feature as useless as I thought it was.  I have 596 classical pieces (from 100 and 150, 200 collections) and I need to play first 10 seconds of each.  I am looking for a piece in particular that I know I have, but of course, looking through all means I'd need to do 596 double-clicks and I rather just listen through.  Not to mention some of those pieces are at least 18 minutes long.

    .MPC = Musepack
    See:
    [http://forums.macosxhints.com/archive/index.php/t-30453.html]
    [http://rails.wincent.com/wiki/ConvertingMPC_audio_files_toMP3]

  • How do I obtain data from a web site???

    I am trying to use information from a sports stats page to automate scoring on a fantasy football site I am developing. After a game the weeks games have completed, I want to be able to extract the data, passing yards, passing TD's, etc. I can pull in a web site, and get to the point where the QB stats start. My question is there a way to strip all the html tags and just be left with the players name and numbers(stats)? I skip down 366 lines to get to the example below. Was thinking maybe, to tokenize using > as the delimiiter, then tokenizing again to strip away the rest of the tag using < as the delimiter. Any suggestions are much appreciated, thanks.
    CODE
    import java.net.*;
    import java.io.*;
    public class WebRipper
    public static void main(String[] argv)
    int count = 0;
    try {
    // Create a URL for the desired page
    URL url = new URL("http://www.fftoday.com/stats/playerstats.php?Season=2006&GameWeek=1&PosID=10&Le agueID=1");
    // Read all the text returned by the server
    BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
    String str;
    while ((str = in.readLine()) != null)
    if(count > 366)
    System.out.println(str);
    }// end if
    count ++;
    }// end while
    in.close();
    }// end try
    catch (MalformedURLException e) {}
    catch (IOException e) {}
    }// end main
    }// end WebRipper
    OUTPUT(this is just a example of the first few lines of output)
    <TD CLASS="sort1" ALIGN="LEFT" BGCOLOR="#ffffff"> 1. Donovan McNabb</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">PHI</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">1</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">1</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">24</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">35</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">314</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">3</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">1</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">4</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">7</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">0</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#e0e0e0">28.4</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">28.4</TD>
    </TR>

    Here is the first string I would want to obtain, can you explain how I would get the player name, then all of his stats. Remember there is ~366 lines of text before you get to this point. Also what or where should I dump the info to?
    Example from the info below I want Donovan McNabb, then all of his stats, excluding all the tags.
    <TD CLASS="sort1" ALIGN="LEFT" BGCOLOR="#ffffff"> 1. Donovan McNabb</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">PHI</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">1</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">1</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">24</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">35</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">314</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">3</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">1</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">4</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">7</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">0</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#e0e0e0">28.4</TD>
    <TD CLASS="sort1" ALIGN="center" BGCOLOR="#ffffff">28.4</TD>
    </TR>
    Pattern p = Pattern.compile("(?<=\\>)[^<]+");
    Matcher matcher = p.matcher(yourwebinfo);
    while(matcher.find())
    yourinfow/ohtmlcode = matcher.group();
    Thanks.

  • How to find CSS page in my web site

    I made a web site in dreamweaver, but somehow forgot to open a page with CSS. How to find it and to insert in my web site?

    Alia2014 wrote:
    I made a web site in dreamweaver, but somehow forgot to open a page with CSS. How to find it and to insert in my web site?
    Most probably you didn't create a separate CSS file.  by default, DW puts any style you create at the head of the page.  Just scroll up the webpage in DW and you will see your styles if you have created any.  Styles have to be created by the user; They are not created automatically by DW.  I am sure you are aware of this.
    Good luck.

  • How do I convert an html design web site to CSS template and layout?

    Good Morning, All!
    How can I convert, apply, or change, efficiently, my html web pages into a CSS template so I don’t have to change each page every time I add something to the main page…also, I currently have two tables (I know, old-fashioned) one which holds my list of contents and links to the different sections (page) with information from the community on the website. The other table holds my text and pictures which I want to update daily. How can I change the format to a 2 column, liquid layout with a masthead area on top for logo and text with a box around it. Time was not available for me to learn all the details of my new Dreamweaver program so I did what I knew and uploaded it with all the boo-boos, inactive links and non-existant pages.
    Now I have the time to focus and want to get it done better so that it is easy to update with new text and features daily. (I am converting my printed newspaper to an online version after 17 plus years and trying to learn the new Adobe Premium Design Suite CS5 programs. What a trip this is at 61-years-old!
    My community and readership are looking forward to the web site according to a survey I took. They are very tolerant about my boo-boos while I learn the new software for the web design. I’ve let them know, through my newspaper and personally (I am very active in the community), that online is where I am going and all that I’ve spoken to, or who have sent emails, are very supportive and look forward to getting their news from my web site newspaper.)
    I am seeking some guidance...I know a little about a lot, but not a lot about anything...even though I've been working with computers since 1983.
    I thank you all in advance for whatever help you can give.
    Donna

    That's a good start.  You will want to fix these things -
    * change this -
    Don Lawton. Used with permission. <div></p>
    to this -
    Don Lawton. Used with permission.</p>
    * change this -
    </center>
    </P>
    <div align="center"><a href="mailto:
    to this -
    </center>
    <div align="center"><a href="mailto:
    * change this -
    <p>
      <center>
        <b><font size="+1">Webmistress: Donna Lee Hanlon<br />
          c/o www.Nahant.com &middot; PO Box 88 &middot; Nahant, MA 01908<br />
          Copyright 2002-12</font></b>
      </center>
    </p>
    to this -
    <p style="text-align:center;">
        <b><font size="+1">Webmistress: Donna Lee Hanlon<br />
          c/o www.Nahant.com &middot; PO Box 88 &middot; Nahant, MA 01908<br />
          Copyright 2002-12</font></b>
    </p>
    And now you will have a page that contains completely valid HTML.

  • How can I do to change the web site when I open a new tab.

    Dear Friends...
    I cant find information, how to changes the web site when I open a second tab. Example: when I open Firefox my home page is google and that is perfect but when I open a second tab, why appears yahoo as home page? I want to changes that and I cant find how to do it . Thanks

    The normal behavior is to open a blank tab, an add-on will be causing it to display Yahoo. One add-on that does this is the freeze net assistant, if you have that one you can uninstall it and it should revert to opening a blank tab.
    There are add-ons that let you specify what should open in a new tab, such as:
    * NewTabURL - https://addons.mozilla.org/firefox/addon/newtaburl
    * New Tab Homepage - https://addons.mozilla.org/firefox/addon/new-tab-homepage
    Another way of opening the home page in a new tab is to middle click on the home button in the navigation toolbar.

  • How to upload images to your own Web site?

    I recently bought a Creative WebCam NX Pro. Installation was fine, the product works great.
    The problem is that I want the cam to upload images to my own web site, www.fogwatch.com. This is basically a weather cam, with images uploading regularly.
    The problem is that the Creative software creates a new name for the image file every time it uploads a new image -- 0.jpg, 02.jpg, 03.jpg, etc. The problem is that the HTML code on my Web site is programmed to recognize only one file name for the Web cam image -- image.jpg. With my old Logitech cam, the software would overwrite the old image with the new image with the same file name, and every was fine.
    So, with the Creative software, I would have to change the file name in my HTML code every time the cam uploaded a new image?and that's impossible. I don't want to use the default Creative web page that it uploads images to as that doesn't fit in my site design.
    Is anyone using a Creative camera to upload images to their own Web site? How are you doing it's

    Bcasey,
    I spent some time working with Webcam monitor and have found the way to do what you are wanting. You need to set up your FTP settings, arrange for a continuous upload and then go over to the custom web page section. Put a checkmark in "upload custom webpage" and go to the section where it says how many pictures to display. Set this to and then remove the checkmark from "upload custom webpage". The program will now upload a single file called img.jpg updated at the interval you choose.
    Jeremy

  • How can I copy cookies about some web site and paste them into a program's header?

    You may know the programme called Teleport Ultra which allows us to download an entire web site and browse offline. There is a forum I want to download but it doesn't allow to see the pages without logging in. So I want to take the cookies after I log in to site, and put them to the programme. How can I do?
    PS: I have to re-create it like "cookie: name1=value1 name2=value2;" in the program

    *Cookie Exporter: https://addons.mozilla.org/firefox/addon/cookie-exporter/

  • How do I block a very specific web site regardless of popups, cookies, addons, defaults or ANYTHING else.

    I occassionally want to block certain web sites.
    it may be a bank account, blog site, whatever.
    I want these site blocked by mozilla regardless of any other setting.
    where do I do this in the options?
    I am not talking about cookies, popups, addons, or any related or unrelated issues.
    I want to be able to tell mozilla 'never go to this web site'.
    how do I do that?

    My Flash sites use a section and subSection structure, and
    within the site I use the numbers to display specific areas. But
    it's done internally. I have no code that looks at a query string
    attached to the URL so supplying the numbers to my sites will have
    no effect. The example you give clearly does read parameters passed
    in a query string so if you know the correct numbers (and the param
    names eg 'section') then you can do it.

Maybe you are looking for