How can i hold a spot in a clip, let the audio continue for a moment and then resume the clip and audio together?

how can i hold a spot in a clip, let the audio continue for a moment and then resume the clip and audio together?

you want to use the retiming tool. you can select what you want to hold, then use the "Hold" command (shift-H) to create a single frame of a default duration, which you can then change to whatever length you want by dragging the retiming handle.
Here's the page in the help manual that describes the hold feature in detail:
http://help.apple.com/finalcutpro/mac/10.0/#ver4c2173c9

Similar Messages

  • How do I pause a download at night and then resume the same the next morning without starting it afresh download?

    If I start a download of some large files and f0r some reason say, I've to go out and thus have to turn off my PC while the download is still on. How can I resume the download, the other day from where I left rather than starting it all over again from 0%?

    If you pause a download before closing Firefox then Firefox should resume the download on the next start provided that the server supports resuming.
    You can set the pref browser.download.manager.quitBehavior to 2 on the about:config page.<br />
    That will make Firefox ask for confirmation if you want to cancel the download if you close Firefox.
    See:
    * http://kb.mozillazine.org/browser.download.manager.quitBehavior
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold(user set).
    *Preferences can be reset to the default or changed via the right-click context menu.

  • How can I hold values in a variable

    I am looking for someone to point me in the right direction - I'm somewhat new to Java, but am a dinosaur from the mainframe, and sometimes get frustrated at the amount of effort I need to go through to do something that would have been simple on the mainframe...
    I have a Swing based GUI application that I am trying to write - it uses Swing components to build a GUI interface and present data to the user. This data comes from a flat file that is XML based. The structure is as follows:
    "Main" class (establishes the GUI, etc.)
    |
    Specific class (establishes a specific page in the GUI; there are many of these)
    |
    XML Reader class - uses parsing functions to read the file; stores data into an array
    The problem is that I make an initial call to the method that parses the XML file and builds the data in the array. I can see this through my debugging tool; it is confirmed in tracing messages I have built into the program.
    I then return to the specific class, and it wants to do specific things to build the GUI pages, based on customer input. So for example, I may want to go and get information on the third record in the XML file - I pass back an index value, and it should return information. Unfortunately, the array is now empty when I return to extract the values.
    How can I hold the values in the array so that I can return and extract (and ultimately update) the values when I need them. There are initially about 25 different arrays - some Integer, Some Strings, and some String buffers. I have seen an indication that I could implmenet Serializable to do this, but it seems that this is a lot of I/O - parsing the data, then serializing it back to disk, and then reading it back every time I want to access it. I have thought about doing it through a data base, but I don't have a DBMS available currently, and this is possibly beyond my level at the moment.
    I appreciate any suggestions that you might have.
    Jerry

    The xml file that I have is something that I
    established my self. It follows the standard xml
    conventions, just straight <tag field="xyz" /> stuff.
    About as fancy as it gets is to have free form text
    t lines where I need to capture the information in a
    String buffer out of the parser. The format of the
    tag is like this:
    <comments>
    multiple lines of text
    follow...
    </comments>In that case, depending on your utilization of the data(if this is not intended to carry data around different systems) you can just serialize it to the file and after retrieve it using XMLEncoder and XMLDecoder from java.bean package.(Have a look on the javadocs for J2SE)
    If your XML is intended to be passed around different systems, you can use JAXB to bind the document to a object model, instead of parsing it yourself.
    I sem to be having issues with passing control
    between classes - As I understand it, values that you
    establish in one class must be passed along to the
    caller - there doesn't seem to be a conceopt like a
    "data section" where data can be stored for access by
    all classes that need access to it. Gosling fobid it!!!!!
    Or is there, and
    I just haven't discovered it yet.No you won't, happily there is no such a thing, once you got the hang of OO principles and design, you will see that this is not only dangerous as it adds too much complexity to the system for those mantainig the code.
    If you want data to be acessed througout the system, uniquely, there are means to do that, like Singleton pattern(GoF, 127) and Common Object Registry pattern(Software Architeture Design Patterns in Java, 423)
    But I think this is not the solution to tyour problem, as far as I understand, you get data from your XML file, that seems to have a structure repeating over the file, and you want to display it to your user.
    The firsting I would advise is to not use arrays as carriers for your data. Instead use objects that represent your data stored in collections, for example, if you have a xml file like this:
    <people>
       <person>
             <name>Jeff</name>
             <age>6</age>
       </person>
       <person>
             <name>Rage</name>
             <age>36</age>
       </person>
       <person>
             <name>Rene</name>
             <age>666</age>
       </person>
    </people>Then, have a class that hold the data for person:
    * @(#)Person.java     v1.0     02/03/2005
    import java.io.Serializable;
    * Class that stands for a person data.
    * @author Notivago     02/03/2005
    * @version 1.0
    public class Person implements Serializable {
         * The class implements java.io.Serializable, as it is
         * required for the class to be a java bean.
         * The proper way to have classes offering its data
         * to the external world is by having get/set methods
         * that handle acess to internal fields.
         * Never make the class fields public.
         * The age of the person this class represents
        private int age;
         * The name of the person this class stands for.
        private String name;
         * Vanilla constructor for the class, as required for classes to be
         * java beans. Initializes the class with age 0 and a empty name.
        public Person() {
            super();
            age = 0;
            name = "";
         * Convenience constructor that allows your bean to be created
         * with age and name set.
         * @param age
         * @param name
        public Person(int age, String name) {
            this.age = age;
            this.name = name;
         * Acessor for the age of the person.
         * @return
         *           The age.
        int getAge() {
            return age;
         * Mutator for the age of the person.
         * @param age
         *           The age to set.
        void setAge(int age) {
            this.age = age;
         * Acessor for the name of the person. 
         * @return
         *           The name of the person.
        String getName() {
            return name;
         * Mutator for the name of the person.
         * @param name
         *           The name of the person.
        void setName(String name) {
            this.name = name;
    }Get the data from the XML document, with JAXB for example, and for each person found, create and populate a bean with the data, store the bean in the colection and pass it to the user interface to be displayed. (Look at the java.util documentation)
    If you are into doing GUI, you will want to have a look in the MVC pattern, Model 2 pattern and the Swing "Separable Model" Architeture, so you learn how to make reusable decoupled GUIs. (search for MVC and Model 2 and look at the "How to use Swing Components" Documentation)
    On using swing, you can get the collection of beans and bind it to lists, tables or any other presentation form you would want. Look at the swing tutorial on how to use data model to boost your GUI.(Look at "how to use swing documentation")
    http://java.sun.com/docs/books/tutorial/uiswing/components/index.html
    But here goes 2 cents of opinion, start by the basic tutorials:
    http://java.sun.com/docs/books/tutorial/
    especially the ones on Object Orientation:
    the way things are done in Mainframe if very different as they are done on a OO language, before learning the language, you will have to learn a new mindset, so after reading the basic tutorials, it would be good you search for some good books that focus on OO thinking, a good one that does that and teaches java at the same time is:
    Head First Java
    It is a good and funny reading.
    Head First Design Patterns
    Also have a lot of good insights on OO and it comes with some patterns as a bonus.
    I understand you see this all as overcomplicated, bu once you get the hang of it, you will see that there this only another way to see things and the stability and reusability attained is worth of the effort.
    May the code be with you.

  • How can I remove a person's face from a photo and then replace the spot with a person's face from another photo?

    How can I remove a person's face from a photo and then replace the spot with a person's face from another photo?

    In Editor, go to the expert tab.
    Open picture B, the one you wish to select the "replacement" face from to add to another picture.
    Use one of the selection tools, e.g. selection brush, lasso tool, to select the face. You will see an outline ("marching ants") once the selection is complete
    Go to Edit menu>copy to copy the selection to the clipboard
    Open picture A, then go to Edit>paste
    Use the move tool to position the face from picture B to cover the face on A
    In the layers palette you should see picture A as the background layer, and face B on a separate layer

  • How can I hold the public IP on a specific profile on the asa 5510

    Hi Guys
    How can I hold the public IP on my cisco client VPN NAT session so nobody else can use it? I have a cisco asas 5510
    inside is 172.10.20.86
    public 166.245.192.90
    Did I need to call my ISP?
    thanks

    sorry
    I willl like to lock or reserve the public IP  address from a NAT session on the ASA vpn.
    that way a sepcific profile and public IP can be use all the time. I know how on the inside IP but not on the public IP.
    it make sense

  • How can I hold data stored in an object?

    Hi everyone!
    I have a problem with a Java-Program that I am trying to write for university.
    The program is the following:
    import java.io.*;
    public class Ergasia4
    {     public static void main (String args[])throws IOException
         {     int i,epilogi;
              boolean first1=true, first2=true, first3=true, first4=true;
              Ptisi A3510,A3511,A3512,A3513;
              A3510 = new Ptisi();
              A3511 = new Ptisi();
              A3512 = new Ptisi();
              A3513 = new Ptisi();
              i=0;
              for(;;)
              {     do     
                   {     if (i==1) System.out.println ("Lathos epilogi");
                        System.out.println ("EPILOGI PTISIS");
                        System.out.println ("1. Ptisi A3510, ATH-SKG");
                        System.out.println ("2. Ptisi A3511, SKG-ATH");
                        System.out.println ("3. Ptisi A3512, ATH-SKG");
                        System.out.println ("4. Ptisi A3513, SKG-ATH");
                        System.out.println ("0. Exodos");
                        System.out.print ("Epilogi: ");
                        epilogi=my.readInt();
                        System.out.println ();
                        i=1;
                   while ((epilogi!=0)&&(epilogi!=1)&&(epilogi!=2)&&(epilogi!=3)&&(epilogi!=4));
                   if (epilogi==0) break;
                   else
                   {     switch (epilogi)
                        {     case 1: System.out.println("Ptisi A3510, ATH-SKG"); A3510.menu(first1); break;
                             case 2: System.out.println("Ptisi A3511, SKG-ATH"); A3511.menu(first2); break;
                             case 3: System.out.println("Ptisi A3512, ATH-SKG"); A3512.menu(first3); break;
                             case 4: System.out.println("Ptisi A3513, SKG-ATH"); A3513.menu(first4); break;
                             default : break;
    class Ptisi
    {     int epilogi,i;
         private boolean availiability[];
         private long telephones[];
         public void menu (boolean a) throws IOException     
         {     if (a==true) arxikopoiisi(availiability);
              a=false;
              for (;;)
              {     do
                   {     if (i==1) System.out.println ("Lathos epilogi");
                        System.out.println ("1. Kratisi thesewn");
                        System.out.println ("2. Akyrwsi kratisis");
                        System.out.println ("3. Emfanisi sygentrwtikwn stoixeiwn");
                        System.out.println ("0. Exodos");
                        System.out.print ("Epilogi: ");
                        epilogi=my.readInt();
                        System.out.println ();
                        i=1;
                   while ((epilogi!=0)&&(epilogi!=1)&&(epilogi!=2)&&(epilogi!=3));
                   if (epilogi==1)
                   {     kratisi(availiability,telephones);
                        i=0;
                   else if (epilogi==2)
                   {     akyrwsi(availiability,telephones);
                        i=0;
                   else if (epilogi==3)
                   {     emfanisi(availiability);
                        i=0;
                   else if (epilogi==0) break;
         public static void kratisi (boolean availiability[],long telephones[]) throws IOException
         {     int theseis;
              long tilefwno;
              int j,i=0,x=-1;
              boolean k=false;
              i=0;
              do
              {     if (i==1) System.out.println ("Arithmos ektos oriwn");
                   System.out.println ("Poses theseis theleis na kratiseis ?");
                   System.out.print ("Theseis: ");     
                   theseis=my.readInt ();
                   System.out.println ();
                   i=1;
              while ((theseis<0)||(theseis>36));
              for (i=0;i<availiability.length;i++)
              {     if (availiability==true)
                   {     for (j=i;j<=(i+theseis);j++)
                        {     if (availiability[j]==false)
                             {     break;
                             else if (j==(i+theseis))
                             {     x=i;
                                  break;
                   if (x>-1) break;
              if (x>-1);
              {     i=0;
                   do
                   {     if (i==1) System.out.println ("Lathos arithmos tilefwnou");
                        System.out.println ("Eisagete ton arithmo tilefwnou");
                        System.out.print ("Arithmos: ");     
                        tilefwno=my.readInt ();
                        System.out.println ();
                        i=1;
                   while (tilefwno<0);
              if (x>-1)
              {     for (i=x;i<(x+theseis);i++)
                   {     availiability[i]=false; telephones[i]=tilefwno;
                   System.out.println("I kratisi "+theseis+" thesewn egine epityxws");
                   System.out.println();
              else System.out.println("Den yparxoun "+theseis+" diathesimes synexomenes theseis");
         public static void akyrwsi (boolean availiability[],long telephones[]) throws IOException
         {     int i,thesi,plithos,x=-1;
              i=0;
              do
              {     if (i==1) System.out.println ("Arithmos ektos oriwn");
                   System.out.println ("Dwse tin prwti thesi tis akyrwsis");
                   System.out.print ("Prwti thesi: ");     
                   thesi=my.readInt ();
                   i=1;
              while ((thesi<0)||(thesi>36));
              i=0;
              do
              {     if (i==1) System.out.println ("Arithmos ektos oriwn");
                   System.out.println ("Poses theseis theleis na akyrwseis ?");
                   System.out.print ("Prwti thesi: "+thesi+" Theseis: ");     
                   plithos=my.readInt ();
                   System.out.println ();
                   i=1;
              while ((plithos<0)||(plithos>36-thesi));
              for (i=thesi;i<=(thesi+plithos-1);i++)
              {     if (availiability[i]==true)
                   {     break;
                   else if (i==(thesi+plithos-1))
                   {     x=i;
                        break;
              if (x>-1)
              {     for (i=thesi;i<(thesi+plithos);i++)
                   {     availiability[i]=true; telephones[i]=0;
                   System.out.println ("I akyrwsi egine epityxws");
                   System.out.println ();
              else
              {     System.out.println ("I epilegmenes theseis einai kenes");
         public static void emfanisi (boolean availiability []) throws IOException
         {     char seatmap[][]=new char [10][10];
              int k,i,j,plirotita=0;
              for (i=0;i<availiability.length;i++)
              {     if (availiability[i]==false) plirotita++;
              plirotita=plirotita*100/36;
              System.out.println("Plirotita :"+plirotita+"%");
              i=0;               
              for (j=0;j<4;j++)
              {     for (k=0;k<9;k++)
                   {     if (availiability[i]==false) seatmap[j][k]='X';
                        else seatmap[j][k]='_';
                        i++;
              for (j=0;j<4;j++)
              {     for (k=0;k<9;k++)
                   {     System.out.print (seatmap[j][k]+" ");
                        if ((k+1)%4==0) System.out.println();
         public void arxikopoiisi (boolean availiability[])
         {     int i;
              for (i=0;i<availiability.length;i++)
              {     availiability[i]=true;
    So, this program is supposed to simulate an airline's reservations system.
    There are four flights, numbered 510-513, each with an aircraft of 36 seats (9 rows of 4 seats each).
    On class "Ptisi" there are 5 classes, which do the following:
    a. class "menu" shows a menu, where the user can select if he wants to make a reservation, a cancellation or if he wants to view the seat map.
    b. class "kratisi" performs a reservation.
    c. class "akyrwsi" performs a cancellation.
    d. class "emfanisi" shows the seat map.
    e. class "arxikopoiisi" initializes the array "availability[36], making it all "true".
    Class "Ergasia4" is supposed to create four objects, A3510-A3513, for each of the 4 flights. Then there is a menu for the user to select between the four flights. Depending on the choice of the user, the program must show the menu for one of the four available flights, as programmed on class "Ptisi" and then perform the action(s) requested by the user. On both menus, "0" exits.
    So, what is my problem?
    Well, when I run the program, if I select a flight, then all actions are performed without a problem, I can make a reservation, cancel some seats or view the seat map. The problem comes when I exit a flight, then work on another flight and then return on the original one. All seat reservations are gone!
    Can anybody help me solve this problem?
    Thank you in advance,
    philimonas
    P.S. If you think it would be helpful, I can omit the code of the functions that work!

    Thanks for your help, doremifasollatido!!
    So, the code now looks as follows (I am posting a "smaller" version of it)
    import java.io.*;
    public class Ergasia4
    {     public static void main (String args[])throws IOException
         {     int epilogi;
              boolean secondTry;
              Ptisi A3510,A3511,A3512,A3513;
              A3510 = new Ptisi();
              A3511 = new Ptisi();
              A3512 = new Ptisi();
              A3513 = new Ptisi();
              secondTry=false;
              for(;;)
              {     do     
                   {     if (secondTry)
                        {     System.out.println ("Lathos epilogi");
                        System.out.println ("EPILOGI PTISIS");
                        System.out.println ("1. Ptisi A3510, ATH-SKG");
                        System.out.println ("2. Ptisi A3511, SKG-ATH");
                        System.out.println ("3. Ptisi A3512, ATH-SKG");
                        System.out.println ("4. Ptisi A3513, SKG-ATH");
                        System.out.println ("0. Exodos");
                        System.out.print ("Epilogi: ");
                        epilogi=my.readInt();
                        System.out.println ();
                        secondTry=true;
                   while ((epilogi<0) || (epilogi>4));
                   if (epilogi==0) break;
                   else
                   {     switch (epilogi)
                        {     case 1:
                             {     System.out.println("Ptisi A3510, ATH-SKG");
                                  A3510.menu();
                                  secondTry=false;
                                  break;
                             case 2:
                             {     System.out.println("Ptisi A3511, SKG-ATH");
                                  A3511.menu();
                                  secondTry=false;
                                  break;
                             case 3:
                             {     System.out.println("Ptisi A3512, ATH-SKG");
                                  A3512.menu();
                                  secondTry=false;
                                  break;
                             case 4:
                             {     System.out.println("Ptisi A3513, SKG-ATH");
                                  A3513.menu();
                                  secondTry=false;
                                  break;
                             default : break;
    class Ptisi
         private boolean availability[];
         private long telephones[];
         public Ptisi()
         {     availability = new boolean[36]; // Do you do this somewhere?
                 arxikopoiisi();
         //Displays the menu for action-selection     
         public void menu () throws IOException     
         {      //Variables
                 //Shows the menu
         //Method to reserve seats
         public void kratisi () throws IOException
         {     //Variables
              //Asks the number of seats to be booked and checks for input errors          
              //Finds, if available, the first seat of the booking
              //Asks for the telephone number to be used at the booking, if a booking is to be made
                    if (x>-1);
              {     i=0;
                   do
                   {     if (i==1) System.out.println ("Lathos arithmos tilefwnou");
                        System.out.println ("Eisagete ton arithmo tilefwnou");
                        System.out.print ("Arithmos: ");     
                        tilefwno=my.readInt ();
                        System.out.println ();
                        i=1;
                   while (tilefwno<0);
              //Performs the booking, or displays an error message
                    if (x>-1)
              {     for (i=x;i<(x+theseis);i++)
                   {     availability=false; telephones[i]=tilefwno;
                   System.out.println("I kratisi "+theseis+" thesewn egine epityxws");
                   System.out.println();
              else System.out.println("Den yparxoun "+theseis+" diathesimes synexomenes theseis");
         //Method to make a cancellation
         public void akyrwsi () throws IOException
         {     //Variables
              //Asks for the first seat of the cancellation and checks for input errors
              //Asks for the total seats to be canceled and checks for input errors
              //Checks if the seats to be canceled are really booked
              //Performs the cancellation, or displays an error message
         //Method to display the % of occupancy and the seatmap
         public void emfanisi () throws IOException
         {     //Variables
              //Calculates the % of occupancy          
              //Displays of the % of occupancy
              //Creation of the seatmap
              //Display of the seatmap
    //Method to initialize the array "arxikopoiisi", giving it "true" as a value
         public void arxikopoiisi ()
         {     for (int i=0;i<availability.length;i++)
              {     availability[i]=true;
    My problem now is an exception in thread "main" java.lang.NullPointerException at this line:
    {     availability=false; telephones[i]=tilefwno;
    Any more ideas?
    Regards,
    philimonas

  • How can CS2 not recognize spot colours in an imported .eps file?

    Hello
    I am using InDesign 4.05 on OSX10.4.11. I have been using InDesign since 1.52 and have always regarded the program as exceptionally bug-free apart from lately as I use CS2 more and more. I am reluctant to upgrade to CS3 just yet.
    I am pretty sure I have never seen this behaviour before. If I import an eps of a logo which only consists of two spot colours, the colours are added to the swatches but show as CMYK. Of course if I preflight it then wrongly shows that the doc is CMYK only. If I then create a PDF and then check the PDF in seps view in Acrobat, the colours are showing as CMYK???? I have checked and rechecked the logo with the spot colours in it in Illustrator CS. They are 100% definitely showing as spot. If someone else told me this I would not have believed them - please tell me I am not going mad. What could cause this?
    ps. I have another piece of extremely odd behaviour too, which I will do as a separate post.

    propage,
    I have no trouble at all placing that EPS in CS2. Both spot colours show up.
    I distilled it and checked in Acrobat, too.
    The only problem is that the lower right yellow bit is *not* a spot colour in Ai.
    The detail that the colour names are added to the swatches when you import the EPS indicates that the spots are in there.
    That leaves only the conclusion that something is wrong woth your Id document e.g. there are process-swatches of the same name before you place the eps.
    >I take it I should abandon eps and move to ai?
    Buko would certainly and definitely say so. That's why I quoted him ;)
    Most of the rest of us think there are special workflows where working with eps still makes sense but the are rather few and when only Ai and Id are involved Ai is almost always the better choice.

  • I'm trying to edit a talking head video and want to find an straightforward way to mark a spot at the end of a statement and then cut the clip at that point. Can you help? thanks.

    I'm trying to edit a talking head video and want to find an straightforward way to mark a spot at the end of a statement made by the subject and then cut the clip at that point. Can you help? Thanks.

    I don't know how to mark a clip the way you want without adding an audio clip and putting in markers and then splitting the clip. You would think that hitting M would be the logical way to do things, but...
    But, one can just click before the place one wants to edit, hit the spacebar and hit it again when the exact place is reached. Then go to the clip menu and click split clip. That works, but one really needs to keep the cursor out of both the timeline and the event browser, or the place in the timeline gets changed..
    Are you really still using iMovie 08? That drove me nuts...a year later iMovie 09 came out with some needed improvements, and iMovie 11 with its audio adjustments is even better.
    Personally, I edit iMovie with kind of a meat axe. I grab whole chunks of video and put it into the project, then edit the ends to get the frame I want. I got too frustrated otherwise.
    Hugh

  • HT5554 I have the iPhone 5 and I keep getting a no sim card message. I have had my phone for over a year now so I know I have a sim card. How can I fix this because it doesn't let me get calls now.

    I have the iPhone 5 and I keep getting a no sim card message. I have had my phone for over a year now so I know I have a sim card. How can I fix this because it doesn't let me get calls now.

    Try resetting the phone. Hold the home and power lock button until the Apple logo appears.If that does not work, turn the phone off and take the SIM out and then put it back in.
    If that still does not work, you may have a defective SIM, in which case you will need a new one from your carrier.

  • Last week I've install Mac OS X Mountain Lion and then after the installation finish my IMAC start up in verbose mode. How can I turn off this mode and start my IMAC normally. I've try to key in the code "sudo nvram boot-args=" in terminal also.

    Last week I've install Mac OS X Mountain Lion and then after the installation finish my IMAC start up in verbose mode. How can I turn off this mode and start my IMAC normally. I've try to key in the code "sudo nvram boot-args=" in terminal also.
    Thank you for all of your answer.

    I've seen it mentioned on here that a PRAM reset may solve it:
    Reset PRAM
    Shut down the computer.
    Locate the following keys on the keyboard: Command, Option, P and R.
    You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.

  • How can i save my individual playlist on itunes on my external hard drive because i want to buy a laptop and install itunes and move all my music and playlist thats on my desktop to my laptop and almost all my music is from a bunch of cd's i own

    how can i save my individual playlist on itunes on my external hard drive because i want to buy a laptop and install itunes and move all my music and playlist thats on my desktop to my laptop and almost all of my music is from a bunch of cds i own

    Hello ryane84
    The easiest and most efficient way to copy your music is to follow the steps under the External drive section. Make sure that you have organized the iTunes library first before you copy it over. Then put the copied iTunes folder in the same Music folder on your computer.
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/ht4527
    Regards,
    -Norm G.

  • How can i change my icloud account on my iphone, when its asking for me to sign in and ive forgot my password

    how can i change my icloud account on my iphone, when its asking for me to sign in and ive forgot my password.

    Yes, of course, just sign up for a new account:
    iPhone, iPad: Settings > Mail, Calendar, Contacts > iCloud > choose that you want free @me.com address during the process.

  • HT4145 How can I use an Airport Extreme to act as a Range Extender for an Alcatel One Touch Y800Z WiFi modem/router? I get a message saying it cannot be extended. Thank you. Arup

    How can I use an Airport Extreme to act as a Range Extender for an Alcatel One Touch Y800Z WiFi modem/router? As we live in a rural area and our landline broadband speeds are awful, I have moved on to a 3G provider in the UK (EE/Orange) and set up the wireless modem which is working very well with an iMac. I have an Airport Extreme base station which was previously connected with an Ethernet cable to the landline router, and two Airport Express stations as Range Extenders. I would now like to use the Airport Extreme and the two Express stations to extend the range of the Alcatel WiFi device. I have tried automatic and manual set up with the Airport Utility but at the crucial step for selecting a network to extend, although the WiFi device is recognised, I get a message saying it cannot be extended.
    Thank you for any help you can provide.
    Arup

    This is a problem with a lot of cheap end wifi hotspot like devices.. sometimes you can just swap the sim out to a real 3G wireless router.. that is a better approach IMHO than wireless repeater ever will be.
    In the meantime..
    Have a go with the suggestion.. place the express as wireless bridge. With a computer connected to the wifi from alcatel unit.. (I am amazed Alcatel still are in domestic market.. I thought they sold out). Set the express to join the wifi.. you do this in the airport utility.. old one is easy.. but in v6 you have to trust to luck so to speak and hope the auto setup works.. tell us if you have trouble.
    With the Express bridging.. you can then plug it by ethernet into the TC.. which will be in router bridge..
    ie
    You can then run the connection from wireless or ethernet on the TC.. and it will relay back to the alcatel for internet.. all a bit dodgy but who knows.. it may give you what you need.
    Wireless repeater is never particularly reliable in my experience. I would avoid it if possible.

  • I have a linksys WRT54G router that we use as a base. I want to use Airplay using Airport Express and hook up my stereo to it. How can i set up my Airport express without a PC/laptop? I just downloaded Airport utility on my iphone and ipad,will that work?

    I have a linksys WRT54G router that we use as a base. I want to use Airplay using Airport Express and hook up my stereo to it. How can i set up my Airport express without a PC/laptop? I just downloaded Airport utility on my iphone and ipad,will that work? And one more thing about the setup, the linksys router shich acts as a base is in a different room as the airport express which i wanted to use for airplay. So I'm hoping to hook up the Airport express via wireless signal. If i can set it up, can someone pls help me out by posting detailed instructions. Thanks so much!

    The first message that AirPort Utility will display during the auto setup will be that the Express will be confgured to "extend" the network. When AirPort Utility analyzes the network further, and sees that the Express cannot "extend" the 3rd party network, the next message will indicate that the Express is being configured to "join" the wireless network.
    Once the Express is configured, if you later go into AirPort Utility to check the settings under the Wireless tab, you will see that the Wireless Mode is indeed "Join a wireless network".

  • How can i connect iphone to itunes.. i want to restore because my finger mistakes that click Reset all content and setting.. so iphone are empty.. all foto and data lost, right.. how can i use my iphone again..

    how can i connect iphone to itunes.. i want to restore because my finger mistakes that click Reset all content and setting.. so iphone are empty.. all foto and data lost, right.. how can i use my iphone again.

    Yes, try to restore your iPhone from iTunes or iCloud backup.
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    Tell us the result if you will try.
    <Link Edited By Host>

Maybe you are looking for