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

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?

  • Acrobat XI Pro is changing a series of yes / no questions into lists where you can only select one per column.  How do I get the software to look at each line independently as a yes / no question?

    Most of my document is fine.  However a few pages have a series of yes/no questions and the software is interpreting those questions as a list to check one from many.  I need it to look at each line independently.  How can I edit this form to fix this problem?

    I do not understand what you are trying to describe.  Can you post a screenshot: https://forums.adobe.com/thread/1070933
    Also, you posted in the forum for Acrobat.com online services; you'd have a much better chance to get a helpful reply if you ask in the Acrobat forum.

  • 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);

  • 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.

  • HT5004 i nedd itunes 64 file i don't know what to do with my  iphone4 has all it's data in this computer and i cant sync my iphone now cuz its need the itunes64 file please help me if you can thank you

    hello sir
    my system needs itunes64 file i don't know from where i should get this file cuz my iphone 4 is all the time synced with this computer all the back up are in this computer i dont want to lose it coz i did restore once so i dont have all the data in my phone i have it in itunes please help me with itunes 64
    thank you

    Back up all data to at least two different storage devices, if you haven't already done so. One backup is not enough to be safe. The backups can be made with Time Machine or with a mirroring tool such as "Carbon Copy Cloner." Preferably both.
    Boot into Recovery mode, launch Disk Utility, and erase the startup volume with the default options. This operation will destroy all data on the volume, so you had be better be sure of your backups. Quit Disk Utility and install OS X. When you reboot, you'll be prompted to go through the initial setup process. That’s when you transfer the data from one of your backups.
    Transfer only "Users" and "Settings" – not "Applications" or "Other files." Don't transfer the Guest account, if it was enabled on the old system. Test. If the problem is still there, the cause is external to the machine, or else you're dealing with a bug or a hardware fault.
    If the problem is resolved, reinstall your third-party software cautiously. Self-contained applications that install into the Applications folder by drag-and-drop or download from the App Store are safe. Anything that comes packaged as an installer or that prompts for an administrator password is suspect, and you must test thoroughly after reinstalling each such item to make sure you haven't restored the problem.

  • TS1368 please help me how to veriftied my apple ID cos's I can't get it. I'm living in Myanmar. How can I verifited my apple ID? Please help me if you can.

    Help me now.

    Alternatives for Help Resetting Security Questions and Rescue Mail
    Due to recent changes in how Apple handles this issue, the most successful
    option is #5, below.
         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.
    Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    How to Manage your Apple ID: Manage My Apple ID

  • PLEASE, HELP ME IF YOU CAN!!

    hi guys
    I am a window 7 user , photoshop element 9 tells me
    "Unable to continu e because of a hardware or system error. Sorry, but this error is unrecoverable! "
    I would appreciate any response or help on this problem!

    Well... what IS your hardware?
    How to ask a question http://forums.adobe.com/thread/416679
    Some specific information that is needed...
    Brand/Model Computer (or Brand/Model Motherboard if self-built)
    How much system memory you have installed, such as 2Gig or ???
    Operating System version, such as Win7 64bit Pro... or whatevevr
    -including your security settings, such as are YOU the Administrator
    -and have you tried to RIGHT click the program Icon and then select
    -the Run as Administrator option (for Windows, not sure about Mac)
    Your Firewall settings and brand of anti-virus are you running
    Brand/Model graphics card, sush as ATI "xxxx" or nVidia "xxxx"
    -or the brand/model graphics chip if on the motherboard
    -and the exact driver version for the above graphics card/chip
    -and how much video memory you have on your graphics card
    Brand/Model sound card, or sound "chip" name on Motherboard
    -and the exact driver version for the above sound card/chip
    Size(s) and configuration of your hard drive(s)... example below
    -and how much FREE space is available on each drive (in Windows
    -you RIGHT click the drive letter while using Windows Explorer
    -and then select the Properties option to see used/free space)
    While in Properties, be sure you have drive indexing set OFF
    -for the drive, and for all directories, to improve performance
    My 3 hard drives are configured as... (WD = Western Digital)
    1 - 320G WD Win7 64bit Pro and all programs
    2 - 320G WD Win7 swap file and video projects
    3 - 1T WD all video files... read and write
    Some/Much of the above are available by going to the Windows
    Control Panel and then the Hardware option (Win7 option name)
    OR Control Panel--System--Hardware Tab--Device Manager for WinXP
    And, finally, the EXACT type and size of file that is causing you problems
    -for pictures, that includes the camera used and the pixel dimensions

  • I am very dissapointed...help me if you can ,plz

    Hello my good ppl,
    i need your help,my ipod touch is very silent, by my standards..i mean you cant watch a movie in a bus, **** you cant listen to music sometimes either...if i turn max the volume still its not valid for all recordings...and..on max volume, you get distortions, so its not that quality either, although you hear some mp3`s well. My nano has waaaay better and louder sound, that is not what i expected when i purchased this touch , i was thinking of an upgrade, but i got a downgrade. My hearing is as good as anybodys, but i tested my friends opinions on that as well, and they all complained regarding volume. Is there anything i can do to make it louder, program, flash, firmware...anything....cos its of no use to me now as it is. Please ...i like it...but i will chuck it in a river:), if i cant resolve this prob.
    TY all in advace...
    yours Dex

    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

  • 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

  • DVD from Animations - Help please if you can

    We have an 3min animation sequence that needs to be put to DVD.
    Animation was created in Maya, it's a 3D building walkthrough, constant movement.
    It is supplied as AVI (video track is WRAW) 720x576 (for PAL)
    We have placed it on FCP sequence set to Animation, best, millions colours, keyframe every frame.
    Sent to compressor - 8Mbps CBR, best motion, GOP size =7 / Structure =IBP, closed.
    The resulting M2V looks fine in QT
    It also looks fine in DVDSP Simulator
    However the DVD created (from an image) both in Apple's DVD player and on set top players looks badly pixelated, grainy and flickery.
    Is there something in the make up of the animation that doesn't suit DVD playback? Why wouldn't we see it in the Simulator?
    Any help greatly appreciated.

    Thanks Colin,
    I have exported the supplied file as QT movies using different QT Codecs, DV PAL, Animation, Motion JPEG, also DV stream. If the option is there I have set the field order to Lower first. I have also imported the supplied AVI to FCP onto sequences with differing compression settings as above. All produce the same effect.
    I have exported the AVI from QT as an image sequence, once as is and once with the deinterlace ticked in movie properties and imported each image as a frame to FCP onto a DV PAL timeline, this you would think would work around any issue of field order and behave as the sequence settings dictate? I get the same result, the final DVD image looks fine in DVD Player, unless you UNTICK "deinterlace" (which is wierd in itself), then it flickers badly, as does a DVD written from the image.
    The best result I have had so far is following your instructions (thanks) in another post for 24fps NTSC, the final DVD was not flickering anywhere as badly but motion overall was a bit jittery. Is there a work around for animation like this with PAL do you know?
    Also - maybe this might be a clue?
    When I have the clip looking fine in FCP as a DV clip or image sequence on a DV timeline, with the play line stopped or running, the Canvas ONLY looks good at 100%, anything smaller or larger creates this striping moire effect on the image, visible even with the play line in stop.

Maybe you are looking for

  • [Beginner] Help! How to change the packet name for an jax-rpc example

    Hi I am new to the JWSDP, I tried to build and deploy the helloservice application (the example in tutorial), it works fine. But I want to change the packet name from helloservice to books, it returns error message during the building process. Here i

  • Gallery(help please!)

    I've made a photo galery like in flash semples "...\Macromedia\Flash 8\Samples and Tutorials\Samples\ActionScript\Galleries\gallery_tree.fla". The lables of fotos are loaded to the "Tree component" from the XML file. The question is if the label of p

  • Installing After Effects CS3   error --anyone know?

    Hey all -I have a MBP 17 2.33 and I have everything up to date on it and I was trying to install AF 8 the other day and it gave me an error "cannot intall AE because it has a conflicting problem with the following program(s)... After Effects 8 WHAT?

  • CS4 will not work with Snow Leopard

    Does anyone know what the problem is? I have been reading on other message boards about CS4 programs crashing. I can't even get mine to open. Does anyone know a fix or something that can help?

  • Is there a way to disable server invitations?

    I am currently setting up a new Snow Leopard Server - I was wondering if there is a way to stop server invitations from appearing on clients on my network? I actually don't want the network clients to "bind" to this server ever. We'll be using it for