Xspf player installation- help needed DESPERATELY

I've been trying for over 2 months to install the xspf player on my iWeb site.
This is the URL:
http://www.innerspheresmusic.com/Audio_4.html
which shows what I haven't managed !
I just checked on a Windows PC and the page is blank- not even a blue rectangle. In iWeb, it looks exactly the same as this page viewed on a mac; ie. the player hasn't properly established itself either.
This is the HTML code I used:
<object type=”application/x-shockwave-flash” width=”400” height=”170” quality=”high” bgcolor=”#FFFFFF”
data=”http://www.innerspheresmusic.com/webmusic/xspf_player.swf?
playlisturl=http://www.innerspheresmusic.com/webmusic/playlist.xspf&autoplay=1&volumelevel=50&timedisplay=1” />
<param name=”movie”
value=”http://www.innerspheresmusic.com/webmusic/xspf_player.swf?
playlisturl=http://www.innerspheresmusic.com/webmusic/playlist.xspf&autoplay=1&volumelevel=50&timedisplay=1” />
<param name=”bgcolor” value=”#FFFFFF” />
</object>
PLEASE can someone help, or I'll need a brain transplant soon !
Thanks,
SeaDream.

Can't really help, but, if it is any consolation, it works very well on my machine (using Firefox)
hmm...
(goes to test)
Okay, good news, works in Safari, works in Opera. Songs load very quickly too!
Doesn't work in... Internet Explorer. Go figure...
BTW very nice site, matches the music well (my first impression). And both somehow match your nickname.
(...and since everyone's a critic ) Your music sounds very clean and quite delicate. I'm going to listen more intently to it later on. Souunds and looks like a nice job, Kay!
regards, Erik.

Similar Messages

  • OS X installation: help needed

    This week Yahoo changed their browswer requirements, forcing me to upgrade my Safari from 1.0.3 to 2.0. I found the Apple online download for that and was computer-notified that I need at least OSX 10.4.2 to be able to use Safari 2.0. I currently am running OSX 10.2.8. I found the download for 10.4.7 PPC at Apple and made a partial installation until the dreaded "This computer will not support this software" came up. I went back and found OSX 10.4.2 on page 6 and loaded this earlier version and the same thing happened. According to the specs listed, there shouldn't be a problem with "Latest Firmware". Upgrading to the latest G5 Intel is not an option.
    Anyone have any ideas?

    Hi Teacher Tom! And Welcome To Discussions!
    Joaquim, Axl & JMVP have posted excellent advice[..snip..].
    But if you do choose to upgrade to Tiger,
    Tiger is available for purchase at The Apple Store (U.S.).
    A Full Retail Version of the Tiger Install DVD, can be purchased rather inexpensively, at some online Apple retailers, Amazon, eBay, AppleRescue, etc.
    Be sure not to purchase grey, upgrade or machine specific CDs or DVDs.
    More info here Tip: Using OS X Install CDs/DVDs On Multiple Macs
    Once Tiger is installed, you can use the e 10.4.7 Combo Update, to upgrade to the most current version.
    Tiger System Requirements
    Additionally,
    "Tiger ships on a DVD, but if your Mac doesn’t have a built-in DVD-ROM player, you’ll need CD media. When you buy Mac OS X Tiger, you qualify to purchase Tiger CDs for only $9.95."
    Download The order Form Here. Media Exchange Program
    Shop Carefully, Examine All Documention, And Good Luck!
    ali b

  • Installation help needed

    I'm struggling to install the new Flash Player 10 on my OLPC
    XO laptop. I have downloaded the program OK but I'm really lost
    when it comes to installing it. Rigt now I cannot get video or
    sound on my laptop from YouTube or web sites. Can anyone please
    give me some simple eay to follow steps that would help me to
    install this program. I'm hoping that there will be another OLPC XO
    user out there who has more gifts in this area than I have. I will
    greatly appreciate any help. Thanks!
    PS - Another possibility is a lead to another site that might
    offer specialty help in things like this - I've tried the OLPC site
    but the Wiki stuff is very complicated!
    Maurice20-29

    The "unix executable file" just indicates the flag for the file, but it doesn't mean it's going to run, even less to install.
    There are several possibilities:
    You got an incorrect download, and it's actually a windows program.
    Your download is corrupted.
    The install file, for some reason, is missing its right file extensions, such as .dmg, .pkg
    You got the file from a disk burned with Roxio or other burning utility, which could cause such trouble with file extensions.
    You can try opening Applications/Utilities/Installer, and select the path to the file, but I don't think it will work.
    Some apps like Macromedia Dreamweaver MX used to show like that, and used their own flash installer.
    I think you'll have to contact the software developer.
    Good Luck.

  • Flash Player install help needed; no sound.

    I have installed Flash Player 3 times -- followed instructions - checked volume controls - but still no sound; only have video.  It is the latest version. Help would be much appreciated.

    Thank you for the guidance for what added info is needed to help solve these kinds of problems.  I'm a first-time user of tech forums.  I do believe I solved my problem by unistalling a previous version of Flash Player.  I finally did get sound.  Much appreciate. Bill

  • HELP needed Desperately

    I am very new to programming and I have been trying very hard to get these working. I really need help.
    First I have two buttons; one is a JButton which I intend to click and save data to a file. See Code:
    private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // I DON'T know how write the code that can use jButton3 to save to
    // the hard drive HELP PLEASE.
    Question two
    I am trying to use another JButton to send an email to my email address from within Java Please see code: below.
    private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
    public void postMail( String recipients[ ], String subject,
    String message , String from) throws MessagingException{
    boolean debug = false;
    //Set the host smtp address
    Properties props = new Properties();
    props.put("mail.smtp.host", "[email protected]");
    // create some properties and get the default Session
    Session session = Session.getDefaultInstance(props, null);
    session.setDebug(debug);
    // create a message
    Message msg = new MimeMessage(session);
    // set the from and to address
    InternetAddress addressFrom = new InternetAddress(from);
    msg.setFrom(addressFrom);
    InternetAddress[] addressTo = new InternetAddress[recipients.length];
    for (int i = 0; i < recipients.length; i++)
    addressTo[i] = new InternetAddress(recipients);
    msg.setRecipients(Message.RecipientType.TO, addressTo);
    msg.addHeader("MyHeaderName", "myHeaderValue");
    // Setting the Subject and Content Type
    msg.setSubject("subject");
    msg.setContent(message, "text/plain");
    Transport.send(msg);
    public void postMail( String recipients[ ], String subject,
    String message , String from) throws MessagingException{
    boolean debug = false;
    Set the host smtp address
    Properties props = new Properties();
    props.put("mail.smtp.host", "[email protected]");
    //create some properties and get the default Session
    Session session = Session.getDefaultInstance(props, null);
    session.setDebug(debug);
    // create a message
    Message msg = new MimeMessage(session);
    // set the from and to address
    InternetAddress addressFrom = new InternetAddress(from);
    msg.setFrom(addressFrom);
    InternetAddress[] addressTo = new InternetAddress[recipients.length];
    for (int i = 0; i < recipients.length; i++)
    addressTo[i] = new InternetAddress(recipients[i]);
    msg.setRecipients(Message.RecipientType.TO, addressTo);
    // Optional : You can also set your custom headers in the Email if you Want
    msg.addHeader("MyHeaderName", "myHeaderValue");
    //Setting the Subject and Content Type
    msg.setSubject("subject");
    msg.setContent(message, "text/plain");
    Transport.send(msg);
    HELP PLEASE

    What does sending e-mail have to do with a JButton? Why do you have all this code in an action method? Can you ever envision where you'd want to send e-mail in a context other than a JButton? If the answer is yes, you should move that e-mail code out into a separate class where you can test it and let any other class that needs it just instantiate an instance and call its methods.
    %

  • ARGH HELP NEEDED DESPERATELY

    I've just found out my processor is 2.33 GHz (top of the line when i got my mac back in march 2007) and i need a 2.5 to install leopard, problem is i already have the discs its tell me its ot possible to install leopard. is there a way around this with out upgrading my processor and is that even possible?

    Where are you getting this 2.5 GHz number from?
    Here's the requirements for Leopard:
    Apple states the following basic Leopard system requirements, although, for some specific applications and actions (such as iChat backdrops) an Intel processor is required:[51]
    * Processor must be any Intel, PowerPC G5 or G4 (867 MHz and faster)
    * DVD drive (for installation of the operating system)
    * At least 512 MB of RAM (additional RAM (1 GB) is recommended for development purposes)
    * At least 9 GB of disk space available.
    ~Lyssa

  • VCM installation help needed on SQL DB and Reporting server

    Hi All,
    I'm new to VCM and now i got stuck at the SQL DB and Report server portion.
    I'm running the vcm server on VM and the SQL is a physical server, both are sitting on the same LAN.
    I have create the SQL DB but VCM just fail to validate the DB and report server.
    I login to VCM using a Domain account for installation, and i tried to testing the DB using ODBC from the window, result fail.
    Error message as attach.
    I'm now totally lost on SQL portion.
    My Question:
    Is there any configuration needed on SQL DB?
    How to get the reporting server to working?
    What port is needed to it all working??
    VCM server Ms Win2012.
    SQL version 2012.
    Many thanks to all who reply.

    Hi Simonhoo79,
    For SSRS,   first check whether the report server link is accessible from your browser : "http://s01-fes-vcm1:80/ReportServer" . If you continue to get 404 error there also, then you need to reconfigure you report server first before proceeding to vcm installation. Follow the steps on below link on how to reconfigure report server using report services configuration Manager for 404 error.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/75910bcb-a879-4eb7-9757-acc45201fa3a/can-not-connect-to-reportserver-http-404-file-not-found?forum=sqlexpress
    For SQL server ODBC connection,
    Dont create ODBC connection for SQL Native Client. Create ODBC connection for SQL Server.
    1. Open ODBC Data Source Administrator
    2. Click User DSN tab and Click Add button.
    3. Select SQL server and click finish
    4. Give name and description and Give the SQL server name (with instance name if your using named instance) or IP in the Server text box.
    5. Click Next and select either Windows authentication or sql authentication based on your SQL server authentication mode and click next.
    6. If the details given are correct then it will proceed further and  check "Change the dafault database to" to your VCM database
    7. Click next and finish and try test data source.
    VCM 5.7.2 and below will support installation only on windows server 2008 R2  and it doesn't support windows server 2012  but it support both 2008 and 2012 sql servers.

  • Photoshop Elements 10 and Inspiration Browser installation help needed.

    Photoshop Elements 10 said delete Inspiration Browser, then reinstall.Keep getting "download error". Was able to install Adobe AIR. Now what do I do?

      If you are using the welcome screen try updating directly from the Organizer but first open your web browser and make sure you are logged in to Photoshop.com on-line.
    Then launch Photoshop Elements Organizer
    On the menu bar click Help >> Elements Inspiration Browser
    Enter your ID and password
    In the installation dialog click Install

  • GPIB-232CT-A Installation Help Needed

    I work in our company's Calibration Lab. We calibrate a lot of our instruments via GPIB using Fluke's MetCal software.
    We have some instruments that have either GPIB or RS232 comm ports, but not both.
    We would like to be able to use the MetCal software to calibrate these RS232 instruments as well as the GPIB units.
    We recently purchased a GPIB-232CT-A, because NI's sales rep said it would work for this application.
    I have spent quite a few hours trying to get this GPIB-232CT-A to interface between the GPIB computer and the RS232 instrument....to no avail.
    Any "Tech Tips" out there???
    I would have liked to have been able to take with someone at NI but, it from what I can see on the website, phone assistance with purchased products comes at a premium.

    Hello,
    The GPIB-232CT-A is basically a string repeater from one interface to another (depending on the mode it's in). Here are two great documents which should give you all the information you need:
    1. Helpful Hints for Using the GPIB-232CT-A
    http://zone.ni.com/devzone/conceptd.nsf/webmain/58763F72C7830BB786256804005D8B77?opendocument
    2. Using a GPIB-232CT-A or a GPIB-485CT-A in G Mode
    http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/862567530005f09c862564df005a468a?OpenDocument
    Repost if you are still having trouble!
    Best Regards,
    JLS
    Best,
    JLS
    Sixclear

  • Bt Player Mod help needed

    Hi,
    I currently have YV with Bt Player (I have a retail box). I contacted Bt about 20 days ago to cancel but have since changed my mind. I rang up to cancel the cancel but have had a number of answers.
    Some reps have said the account shows no record of the cancel where as others have said they have stopped it. Could a mod check my account and give me a clear answer.
    Thanks
    Ben

    About five days
    Life | 1967 Plus Radio | 1000 Classical Hits | Kafka's World
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Helpful Post?
    If a post has been helpful, say thanks by clicking the ratings star.

  • Install problems - help needed desperately for new Java user

    I have been trying to install Java SE Development Kit 6 - Version 1.6.0_13. Initially I could not get the javac process to work no matter what I tried. After uninstalling and reinstalling numerous times I now have it so that my javac will rewrite my file from a .java to a .class file. Now when I try to execute my Hello.class file I am getting an error message....
    Error occurred during initialization of VM
    java/lang/NoClassDefFoundError: java/lang/Object
    Can anyone please help me fix this? I was really anxious to learn programming but all of these setbacks are really frustrating. I have basic books to help when I am up and running but nothing helps you with problems with installations.
    Please help!!!

    Enigmafae wrote:
    Thank you so much. Worked like a charm! I also installed from Explorer instead of Firefox. Maybe the Firefox installations were incompatible with my XP Environment????Worked fine for me... but I downloaded and then installed... I did NOT "run" the install over the network.
    I don't care I'm just so thrilled it worked. Now I can get to learning the actual programming that I have been trying to get to.
    Thx again for your help!I love it when a plan comes together.
    ~~ Hannibal.

  • EMac Fan Noise - Zalman FanMate 2 Installation Help Needed

    Hello everyone,
    I'm after some help on how to install a Zalman FanMate 2 to my eMac to reduce the fan speed and therefore noise.
    I purchased a Zalman FanMate after reading a previous thread on the discussion board on how to reduce fan noise. There was helpful info and links on the discussion, however the installation instructions (which included switching and soldering some wires) related to installation of the discontinued FanMate 1. The FanMate 2 I had purchased has slightly different wiring. Unfortunately the link on the discussion for installation of FanMate 2 is broken, and I can only seem to find conflicting instructions on the web on which wires to solder to which.
    So, here's how the wires are currently arranged if the FanMate 2 is plugged into the eMac:
    FanMate (F) to eMac Fan (M): Yellow>Red, Red>Black, Black>Yellow
    FanMate (M) to eMac Power (F): Black>Green, Red>Black, White>Yellow
    Having already unsuccessfully tried one suggested rewiring combination (the first FanMate 2 popped and gave an exhausted puff of smoke), I'm a little cautious and would really appreciate some sound advice before I do some serious damage.
    Many thanks in advance, folks.
    Best wishes,
    Ewan

    Hello Jon,
    I don't thnk that model of fan drive is compatible.
    If it looks different. I'd take it back.
    There are fan add-ons and software that can tweak this issue(I went with software).
    There is an article here: http://www.lbodnar.dsl.pipex.com/eMac/eMac-upgrade.html
    Scroll down and you'll see the guy did similar to you with the Zalman.

  • New Installation Help Needed - Connection Timeout

    New to the home and Verizon service from a combination modem/router. In Airport Utility, chose to connect to a wireless network and add AE in order to extend my current network (the issue is distance to an important computer). The utility seems to run okay and there is a green light at the end of the routine. I have tried every combination available and either continue to get the Connection Timeout or cannot see the network at all.
    Any suggestions?
    I tried adding in my old Linksys router and while the network name appears an error message is always given that the user is not connected to the internet.

    josephchatham, Welcome to the discussion area!
    To extend the wireless network created by the Verizon base station you will need to connect the AirPort Express (AX) via Ethernet. The AX can not wirelessly extend the network created by that base station.

  • Solaris 10 Installation - Help Needed Please

    Hi,
    I have just downloaded a copy of Solaris 10 and I cannot get it to install on my system.
    At the moment I am using the GUI to try and install the OS. I can get past the part where you select the language 0 for english.... It then thinks about it for a bit and display the error message "No Disks Found, make sure they are cabled and connected". I then get put into the terminal window.
    My system spec is as follows:
    Asus A7N8X-E Deluxe motherboard
    Maxtor Diamondmax Plus 9 160GB Serial ATA150 Hard Disk.
    LG CD Burner
    LG DVD Burner
    XP installed on half the hard disk. Nothing on the other partition.
    I don't really know what I am doing wrong, so any advice would be gratefully recieved. This is the first time I have tried to install Solaris so it doesn't matter how basic the instructions are. I could do with keeping the XP installation, but it is not essential.
    Is it possible to get Solaris to dual boot?

    Refer to this link in the Solaris 10 documentation:
    http://docs.sun.com/app/docs/doc/816-5177/6mbbc4g3d?a=view
    Follow it for more info on setting up SATA support. As for dual booting, it should be possible with something like grub.

  • Adapter Help needed desperately

    Dear All,
    I am attempting to create a new Adapter with integration 2.1 and am hitting a
    brick wall when attempting to create the WAR/JAR/RAR files needed before deployment
    (I think !!!). Has anyone got an example out there of what I need -
    Kind regards
    Tony

    Dear Tony,
    Have you read the ADK guide? See
    http://edocs/wlintegration/v2_1/devadapt/index.htm
    Best regards,
    Timothy Potter
    Senior Software Engineer
    eCommerce Server Division
    BEA Systems, Inc.
    "Chris Stead" <[email protected]> wrote in message
    news:[email protected]..
    Tony,
    There are several sample adapters that ship with WLI 2.1. You can findthem in your
    $WLI_HOME\adapters directory. Specifically, they are the DBMS, EMAIL andSAMPLE
    adapters. We use the ant utility to build and package our adapters. Youwill want to
    look at the build.xml for each adapter to see what we do to package theadapter for
    WLS.
    $WLI_HOME\adpaters\dbms\project\build.xml
    $WLI_HOME\adpaters\email\project\build.xml
    $WLI_HOME\adpaters\sample\project\build.xml
    Cheers,
    Chris
    Tony MAy wrote:
    Dear All,
    I am attempting to create a new Adapter with integration 2.1 and am
    hitting a
    brick wall when attempting to create the WAR/JAR/RAR files needed beforedeployment
    (I think !!!). Has anyone got an example out there of what I need -
    Kind regards
    Tony

Maybe you are looking for

  • Will not boot after disabling onboard sound

    I am trying to install an SB Audigy2 ZS sound card but each time I disable the onboard sound card, I cannot boot my system. It will not boot to CD either.  I have tried disabling with SB Audigy2 ZS card installed and without the card installed. I am

  • REPORT-TOTAL GR VALUE FOR DOC TYPES MONTHWISE

    Dear Experts, Please help me out for finding how to see the total value of GR for doc types NB and the Assets monthwise..

  • IMAP server times out, Why?

    For 6 days now I have been having a problem acesssing my sites and email accounts. Finally the hosting company has found that it is the number of email accounts (49) trying to access the IMAP mail server at the same time? I have disable automatic "ch

  • Need an Urgent Help....

    Hi, I want to read and write to an xml file using jsp.I want to do this by DOM parsers. How to do this. Should i require a bean?... If so are there any beans available for free.....? Can any one give a java code for a simple xml file.. <?xml version

  • CSV to JDBC

    I have a CSV file with multiply records I am trying to insert into an Oracle database.  I have been able to sucessfully insert only the first record from the file into the table.  Does anyone have any idea on why only the first record is getting inse