Ugh. help me if you can!  Proplem w/  front-row.  no music on slideshow

forgive me if this is a small problem that I should be able to resolve on my own.
When using Front Row to access a slideshow, the music that I added to the show doesn't play! Yet, when I launch the show from iPhoto, it plays. This happens on only one particular slideshow. ..I did delete the "plist" for iPhoto, but this didn't fix it (this was a sort of "fix all" tip that I found using the help menu.)
Any suggestions? Front Row is pretty cool - I'd hate to not be able to use it.
Thanks in advance.

Yes, thank you, i realised that headphones with noise canceling are something i must get....but, i cant belive that the same headphones with touch and nano produce such dramatic different experience...i can hardly belive that nano has better what..sound procesor, amplifier than touch...it shouldent be that way.
i am thinking it must have something to do with ..say latest regulations regarding volume imput in some countries or what, and i thought that it must be the program that cansels it..or so..since i have wireless on this thing.
Message was edited by: ljut123

Similar Messages

  • I'm getting this problem when trying to update my iphone 3gs it says that the iphone software could not be contacted and I went on youtube got some advise to go into my hard drive to fix the error I have nothing in my host file please help me if you can

    I'm getting this problem when trying to update my iphone 3gs it says that the iphone software could not be contacted and I went on youtube got some advise to go into my hard drive to fix the error I have nothing in my host file please help me if you can this is all new to me.

    Read this: iOS 4: Updating your device to iOS 5 or later
    ... oh I think it is a 3gs or a 3
    This makes a difference. What does it say in Settings > General > About?

  • I would like to know, on the ringtone page, where you can select songs out of your music library, is there a way to remove a song from the list after its selected? I would thin there would be a way to "delete" the songs from the list. (Clock app)

    I would like to know, on the ringtone page, where you can select songs out of your music library, is there a way to remove a song from the list after its selected? I would thin there would be a way to "delete" the songs from the list. (Clock app)
    Let me explain:
    In the clock app for ios 6.0.2 I am a little confused. It allows you to go into your music library, and create a ringtone using any songs you choose. However, I cannot find a way to remove a song from this list, just like I cannot delete one of the preset ringtones (which I'm not trying to do, but just as an example)
    Thanks for your time! If you need more information just ask.
    (I believe both my iPod and iTunes are up to date)

    I believe you just are able to delete them from iTunes.
    Hope it will be helpful

  • I have updated to IOS 7.1 my music has disappeared and my boyfriend has put his iPod music onto my iPod those also were gone I'd like to know how to get it back if there is anything you can tell me to get my music to pop back up that would be great.

    I have updated to IOS 7.1 my music has disappeared and my boyfriend has put his iPod music onto my iPod those also were gone I'd like to know how to get it back if there is anything you can tell me to get my music to pop back up that would be great.

    You can only sync with one computer/iTunes library. If you sync with another iTunes library/computer the media from the iPod will be deleted and replaced with the media on the second computer.
    If you want to change syncing computers then:
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        

  • Where can I download front row?

    where can I download front row in the apple.com I can't find it..can someone teach me?!

    Front Row is bundled in the Mac OS X installers and updaters instead of being available as a standalone product. If you don't have it on your computer, perform a custom installation of it or use Pacifist, and then run the Mac OS X 10.5.7 combo updater.
    (44074)

  • How/where can I find front row?

    How/where can I find Front Row? I had it earlier...it might have disappeared when I downloaded OS X Lion.....?
    Hope someone can answer me!

    Front Row is no longer part of Lion. But there's some good news: Install Front Row on Lion

  • Got a problem with my Chatting-Room program, please help me if you can.

    There is one bug in the code (should be just one), but I couldn't find it, I even recoded the whole thing, after I recoded the code, the same problem seems still there. I just can't find where the problem is. So I hope someone here can help me, thank you very much.
    First, I made a Server and a Client. Server has 5 classes, and Client has 2 classes. My intention is that all the clients(running on other computers) will connect to the server (which is my laptop), and then they can communicate with each other. For example, if person A typed "Hello", person B and person C's computers will receive this message and display it.
    The problem is that several clients can connect to the server (My laptop), but if one person type something, other people won't receive the message, it's blank on their screens. Maybe there is a problem when server receiving the message. So this is the problem I want to solve.
    I have the code down there, here is a brife description what each class mainly does.
    First class of Server is for connecting client, this class is named Server. Everytime a client is connected, the Server class calls the second class to store the client's information (which is its IP address), the second class is named People.
    Third class is named Receiver, it is for receiving the massage from any one of the clients, then stores the message to a static field variable in Fourth class, fourth class is named Saying.
    Fifth class of Server is named Sender, it is for sending the massage to the client, that message is the one that stored in Saying.
    The First class of client is named Client, it prints any message that the server send to it.
    The Second class of client is named SendFromClient, it wait for user to type something, and then send the message to the server, so server's Receiver class hopefully will get it and store it to the field variable in the Saying class.
    Here is all the codes:
    Server Class:
    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class Server
         public static void main(String[] args)
              /*port number*/
              final int port = 41333;
              /*welcome messages:*/
              System.out.println("This is FriendlyJ 1.0 running");
              System.out.println("Listening on ports 41333");
              try
                   /*Clear the ArrayList*/
                   People clear = new People();
                   clear.IPs.clear();
                   /*Create a server socket that will accept any connection on this port*/
                   ServerSocket ss = new ServerSocket(port);
                   /*keep getting clients*/
                   while(true)
                        /*connect with one client at a time*/
                        Socket s = ss.accept();
                        PrintWriter out = new PrintWriter(s.getOutputStream(),true);
                        Scanner in = new Scanner(s.getInputStream());
                        /*indicate one establish of connection*/
                        System.out.println("One connection estabolished!");
                        /*two classes, one foe receiving, one for sending*/
                        Receiver receive = new Receiver(in);
                        Thread ty = new Thread(receive);
                        Sender send = new Sender(out, s);
                        Thread yt = new Thread(send);
                        ty.start();
                        yt.start();
                        /*add IP to ArrayList*/
                        clear.storing(s.getInetAddress().toString());
                        out.println("There are " + clear.IPs.size() + " people online;");
                        System.out.println("Connected to " + s.getInetAddress().toString());
              catch (Exception e)
                   System.out.println("System exception");
    }People Class:
    import java.util.*;
    public class People
         ArrayList<String> IPs = new ArrayList<String>();
         /*A method for storing IPs*/
         public void storing(String IP)
              IPs.add(IP);
    }Receiver Class:
    import java.util.*;
    public class Receiver implements Runnable
         final private Scanner in;
         /*Constructor to get the scanner*/
         public Receiver(Scanner abc)
              in = abc;
         public void run()
              Saying say = new Saying();
              try
                   while(true)
                        /*waiting for input from client, then give it to Saying*/
                        say.setSaying(in.nextLine());
              catch (Exception e)
                   e.printStackTrace();
    }Saying Class:
    public class Saying
         static String saying = "";
         public void setSaying(String a)
              saying = a;
         public String getSaying()
              return saying;
         public void resetSaying()
              saying = "";
         public int getlength()
              return saying.length();
    }Sender Class:
    import java.io.*;
    import java.net.*;
    public class Sender implements Runnable
         final private PrintWriter out;
         final private Socket s;
         public Sender(PrintWriter abcd, Socket abcde)
              out = abcd;
              s = abcde;
         public void run()
              out.println("Feel free to chat.");
              int count;
              Saying says = new Saying();
              try
              while(!s.isClosed())
                   count = says.getlength();
                   if(count>0)
                        out.println(says.getSaying());
                        says.resetSaying();
              /*disconnect with the client*/
              s.close();
              System.out.println("Connection with " + s.getInetAddress().toString() + " is closed.");
              catch (IOException e)
                   System.out.println("Network error!");
    }Client Class:
    import java.util.*;
    import java.net.*;
    import java.io.*;
    public class Client
         public static void main(String[] args)
              Socket sc;
              System.out.println("Welcome to FriendlyJ IM program");
              System.out.println("Connecting to the server...");
              int port = 41333;
              /*A variable for storing IP address of Server*/
              InetAddress ip;
              try
                   ip = InetAddress.getByName("192.168.1.68");
                   sc = new Socket(ip, port);
                   System.out.println("Connected with Server");
                   Scanner in = new Scanner(sc.getInputStream());
                   PrintWriter out = new PrintWriter(sc.getOutputStream());
                   /*a thread for sending message to the server*/
                   sendFromClient sendin = new sendFromClient(out);
                   Thread sending = new Thread(sendin);
                   sending.start();
                   /*display welcome message*/
                   System.out.println(in.nextLine());
                   /*displaying how many people are online now*/
                   System.out.println(in.nextLine());
                   while(true)
                        /*print out the message sent by the server*/
                        System.out.println(in.nextLine());
              catch(UnknownHostException e)
                   System.out.println("Couldn't find the host!");
              catch(IOException e)
                   System.out.println("Network error!");
              catch (Exception e)
                   e.printStackTrace();
    }SendFromClient Class:
    import java.io.*;
    import java.util.*;
    public class sendFromClient implements Runnable
         private PrintWriter send;
         public sendFromClient(PrintWriter sendto)
              send = sendto;
         public void run()
              Scanner sc = new Scanner(System.in);
              while(true)
                   /*get a message, then send to the server*/
                   send.println(sc.nextLine());
    That's all, thank you for helping!
    Edited by: stdioJ on Oct 31, 2007 3:58 PM

    Hi pgeuens ,
    I tried it ...but it didn't work for me.
    I changed my .jsp like this
    <%@ page language="java" %>
    <%@ taglib uri="/tags/struts-html" prefix="html"%>
    <html:form action="Registration.do">
    UserName:<html:text property="username"/><br>
    enter password:<htnl:password property="password1"/><br>
    re-enter password:<html:password property="password2"/><br>
    <html:submit value="Register"/>
    </html:form>And i changed that web.xml like..
    <taglib>
        <taglib-uri>/tags/struts-html</taglib-uri>
        <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
      </taglib>Now I am getting an error like ......."File "/WEB-INF/struts-html.tld"not found.
    Hi Ashish
    I didn't find struts-form.tld in WEB-INF folder.But all the remaining file all there.
    Again I downloaded that struts1.2.9 ...in that also i couldn't find struts-form.tld file(except this remaining are there).
    Please tell me, if there any other ways....
    Thanks,
    kona.

  • For my iphone 4S, people can hear me sometimes but i can't hear them. I am having a hard time making phone calls. Please help me if you can.

    I can't hear my callers but i hear them sometimes. It makes some weird cracking sound.

    Apple just announced new products.  It is ALWAYS busy this time of year.  You just have to deal with it.
    Alternatively, you can contact Apple Support and get assistance that way.  Worst case scenario, they'll require a $19 fee to troubleshoot your device over the phone, which is refunded if it turns out you have a hardware issue.
    Try them at https://getsupport.apple.com or 1-800-MYAPPLE and see if they can help.
    But also try this:
    Basic Troubleshooting Steps when all else fails
    Quit the App by opening multi-tasking bar, holding down the icon for the App for about 3-5 seconds, and then tap the red circle with the white minus sign.
    Relaunch the App and try again.
    Restart the device. http://support.apple.com/kb/ht1430
    Reset the device. (Same article as above.)
    Restore from backup. http://support.apple.com/kb/ht1766 (If you don't have a backup, make one now, then skip to the next step.)
    Restore as new device. http://support.apple.com/kb/HT4137  For this step, do not re-download ANYTHING, and do not sign into your Apple ID.
    Test the issue after each step.  If the last one does not resolve the issue, it is likely a hardware problem.

  • I need help please if you can aid me in my quest to write this code

    I am trying really hard to accomplish this and my head hurts from trying mulitple ideas on the right code.A lottery requires that you select six different numbers from the integers 1 to 49. Write a Java program that will do this for you and generate five sets of six numbers as a result.
    Details:
    For generating random numbers you can use the random() static method of class Math. It returns a double so you will need to cast it as an integer. If you set the range to 49, you can generate a random number between 1 and 49 through:
    number = (int) ( range * Math.random() ) + 1;
    Note that you need 5 sets of numbers and in each set you have should have six different numbers. There should not be duplicate numbers within each set. Of course the same number can occur in multiple sets, but within the same set of 6 numbers it should only occur once, if at all.
    Here is an example of a valid set of numbers: 5, 41, 3, 9, 22, 30
    Here is an example of an invalid set of numbers: 15, 8, 19, 33, 8, 21
    It is invalid because the number 8 appears twice.
    This is the dilema the code I have so far (I know it is not much) is import java.util.Scanner;
    import java.util.Random;
    public class Lottery
    public static void main(String[] args)
              int[] numbers = new int[6];
    number = (int) (range 49 Math.random() ) + 1;
    am I on the right track totally wrong or???? Please help me and god bless

    Tinkerbell... wrote:
    Navy_Coder wrote:
    Tinkerbell... wrote:
    Navy_Coder wrote:
    Yeahhhhh, don't do that...Why not?because you butchered an otherwise simple process by the whole generic list with 50 numbers and sorting mess.
    java.util.Random. <-- learn how to use it.Well, please explain how you would better do it using java.util.Random then?
    Random r = new Random();
    int[] vals = new int[6];
    for(int i = 0; i < vals.length; i++ )
        vals[i] = (r.nextInt(49) + 1);

  • A question.. help me if you can

    sorry guys can you help me?.. can i transfer my movies from my computer to my itunes library? i wanna tranfer them to my iphone..

    CineXPlayer HD
    tt2

  • I can't belive it. You have to help me.. you can. but you don't want to. i did what you said to me. I call the police. but i need to localizate with you help. PLEASE. I'M BEGGING YOU.

    This ipod means a lot to me. Not because it's an apple ipod, because my mom bought me with all her money.
    I know this is not your problem, but i NEED to find it. Only you can't help me.
    I know i'm not a important customer but at least try to do something .
    I don't know who is answering this message, i hope if someone read this message, can help.
    You CAN do it.. but you don't want to.
    I'm just telling you, to try to find it. Because the APP doesn't work to ipod's.
    at least, you should to get better your apps.
    PLEASE, HELP ME

    Sorry but the only help you have is the local police.
    Change your iTunes (Apple ID) password along with any other password that was stored in the iPod.  If any passwords are associated with credit cards, contact the CC company and get your card replaced (with a new number).  If any passwords are associated with your bank or any savings institution, contact them also and discuss approprate action with them.
    The "Find my..." function is pretty much useless if the device is in the hands of a thief.  All that is necessary is for the thief to connect to any computer with iTunes and "Restore as new."
    The only real protection you have is with the personal information on the device rather than the physical device itself.  This requires action before the device is lost/stolen.  Something as small as an iPod should have a strong 8-digit (or longer) password AND be configured for automatic wipe in the event of ten consecutive incorrect password entries.

  • Motherboard not geting past MSI logo display - please help me if you can

    Hello all
    I have recently purchased a motherboard kit from a very respected retailer so all my components are compatible. It consisted of an MSI KT4V motherboard, an AMD Sempron 2600, a stick of 256MB DIMM, and a heatsink. I have installed them all as best to my knowledge but on booting up for the first time all I am getting is what looks to be an MSI logo screen. I have changed the jumper switches and tried other things but I am unable to get to the BIOS or anything.
    Has anyone else had this problem or does anyone know of any methods I could take to try and resolve it ?
    Thanks

    Hello again.
    First can I just say thanks to everyone who has posted a reply to me here. I have brought my motherboard manual in for any specifications that is needed, unfortunately my power supply is back at my flat but it came with a chassis I bought from a different company. I know it's 400w if that's any consolation.
    Please understand that I am unable to get anywhere near BIOS - literally as soon as I power it up the power light comes on, you can hear the hard drives whirring, the DVD ROM spins, etc. but almost instantly an MSI logo is displayed on the screen and from there I can;t do anything. I am not given the chance to do anything before. Hitting Del does nothing, in fact the keyboard doesn;t even light up at all when I switch my computer on, almost as if it doesn;t recognise it or it doesn;t get as far as reading it or something. Surely there can;t be a problem with my graphics card as I'm guessing I wouldn't be able to see the dreaded MSI logo. I reseated most stuff like the RAM and swapped IDE cables etc. and that seems fine. I am really getting sick of seeing that infernal MSI logo screen !!

  • Help me if you can

    my c d wont do anything
    HL-DT-ST DVDRW  GS23N:
      Firmware Revision:          SB03
      Interconnect:          ATAPI
      Burn Support:          Yes (Apple Shipping Drive)
      Cache:          2048 KB
      Reads DVD:          Yes
      CD-Write:          -R, -RW
      DVD-Write:          -R, -R DL, -RW, +R, +R DL, +RW
      Write Strategies:          CD-TAO, CD-SAO, CD-Raw, DVD-DAO
      Media:          To show the available burn speeds, insert a disc and choose View > Refresh

    Hello cheebdragon86,
    It sounds like you are having trouble with the optical drive on your MacBook Pro.  I found an article with steps you can take to troubleshoot various issues that may come up.  I recommend reviewing this article:
    Apple Computers: Troubleshooting the slot-loading SuperDrive
    http://support.apple.com/kb/HT2801
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Why use a wait timer when you can "wait for front panel activity"?

    Why does everyone:
    1) Wire a stop button to the while loop conditional terminal and add a wait for 100 ms (or so) timer to the loop.
    When they could:
    2) Wire the stop button to the while loop conditional terminal AND to "Wait for front panel activity" VI as described in the VI's help file?
    Thanks!
    Adam

    That's just a matter of habit. In previous LV versions, the wait for front panel activity was not available.
    And of course, now you can use the Event structure, that offers better possibilities...Message Edité par chilly charly le 06-25-2006 04:11 AM
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

  • You can download individual tracks and delete music with itunes match on

    You can delete music with itunes match on:
    settings - general - use - music - all music
    in the right corner above you can click on edit and choose delete.
    You can also download individual tracks:
    click on the "cloud download" icon in an album. It displays the icons to start downloading. You can tap on stop of the songs you don't want to download and then those songs won't be downloaded.

    unfortunately the delete method deletes all the music you downloaded, not possible to delete individual tracks

Maybe you are looking for