I am using garage band for the first time.  I dragged and dropped a song from itunes into the program and I want to extend the length of the song by repeating the first 28 measures.  I can't figure it out.  Please help

I am using garage band for the first time.  I dragged and dropped a song from itunes into the program and I want to extend the length of the song by repeating the first 28 measures.  I can't figure it out.  Please help.  I have spent several hours trying to figure it out on my own but have not been successful.  It seems like an easy task.  Can anyone help?

dewin1or wrote:
I want to extend the length of the song by repeating the first 28 measures.
split the region at the 28th measure
http://www.bulletsandbones.com/GB/GBFAQ.html#split
(Let the page FULLY load. The link to your answer is at the top of your screen)
then select only the first region and option-drag it to the end of the song

Similar Messages

  • I can't drag and drop any music from iTunes into the iPad tab on the left it just come up with a red cross ? Help !

    I just up loaded a load of music onto my computer and then when I press ctrl and s and try to drag the album tag over the iPad one it just comes up with a red cross and won't let me drop anything in it !

    You will need to Sync your iPad and all Music/Albums Selected will transfer over from iTunes..
    iOS: Syncing your data with iTunes
    http://support.apple.com/kb/HT1386

  • HT201303 please someone help!!! i can,t remember my securety questions or how to reset them or change them nomatter what i do i can,t figure it out please help!!!!!

    please help!!!! i can,t remember my security questions no matter what i do i can,t change them or reset them somebody please help me!!!!

    Frequently asked questions about Apple ID - http://support.apple.com/kb/HE37 --> Can I change the answers to the security questions for my Apple ID?  --> Yes. You can change the answers to the security questions provided when you originally signed up for your Apple ID. Go to My Apple ID (http://appleid.apple.com/) and click Manage your account.
    Forgotten security questions - https://discussions.apple.com/message/18402551  and https://discussions.apple.com/message/18625296
    More involved forgotten question issues - https://discussions.apple.com/thread/3961813

  • Logical Error, can't figure it out, please help

    This is a bank application which has 3 classes: Bank, BankApp, and BankAccount. Everything works fine except for when I want to print out the last N transactions. It only prints out the last transaction, so for example if 3 transactions were made and I want to print out the last 2, it only prints out the 3rd or last one. Here are the 3 classes
    Basically, BankApp holds the main method and when the user wants to see the last N transactions, it calls printTransactionInfo which in turn calls getTransactionInfo. Thanks for the help
    package support;
    public class BankAccount {
         private static int accountNumber = -1;
         private String customerName;
         private double balance = 0.0f;
         private double[] transactions = new double[1000];
         private int transactionCount = 0;
         public BankAccount(String customername, double openingbalance)
              customerName = customername;
              balance = openingbalance;
              accountNumber++;
         public int getAccountNumber()
              return accountNumber;
         public String getAccountInfo()
              return "Account number: " + accountNumber + "\n" + "Customer name: " + customerName + "\n" + "Balance: " + balance + "\n";
         public String getTransactionInfo(int lastNTransactions)
                        String transInfo = new String();
                        while(transactionCount > lastNTransactions)
                             transInfo = transactions[lastNTransactions++] + "\n";
                        return transInfo;
         public void withdraw(double amount)
              if(amount > balance)
                   System.out.println("The withdrawal amount exceeds the balance\n");
              else
                        balance = balance - amount;
                        transactions[transactionCount] = -1 * amount;
                        transactionCount++;
         public void deposit(double amount)
              balance = balance + amount;
              transactions[transactionCount] = amount;
              transactionCount++;
    package main;
    import support.BankAccount;
    public class Bank {
         private BankAccount[] accounts;
         private static int accountCount = 0;
         public Bank(int accountCapacity)
              accounts = new BankAccount[25];
         public int openNewAccount(String customerName, double openingBalance)
              BankAccount baccount = new BankAccount(customerName,openingBalance);
              int accNum = baccount.getAccountNumber();
              accounts[accountCount++] = baccount;
              return accNum;
         public void withdrawFrom(int accountNum, double amount)
              int accNum;
              accNum = findAccount(accountNum);
              if(accNum == -1)
                   System.out.println("Account number does not exist\n");
              else
                   accounts[accountNum].withdraw(amount);
         public void depositTo(int accountNum, double amount)
              int accNum;
              accNum = findAccount(accountNum);
              if(accNum == -1)
                   System.out.println("Account number does not exist\n");
              else
                   accounts[accountNum].deposit(amount);
         public void printAccountInfo(int accountNum)
              int accNum;
              accNum = findAccount(accountNum);
              if(accNum == -1)
                   System.out.println("Account number does not exist\n");
              else
                   System.out.println(accounts[accNum].getAccountInfo());
         public void printAccountInfo(int accountNum, int lastNTransactions)
              int accNum;
              accNum = findAccount(accountNum);
              if(accNum == -1)
                   System.out.println("Account number does not exist\n");
              else
                   System.out.println(accounts[accountNum].getAccountInfo());
                   System.out.println(accounts[accountNum].getTransactionInfo(lastNTransactions));
         public int findAccount(int accountNum)
              int i;
              for(i = 0; i < accountCount; i++)
                   if(accounts[i] == accounts[accountNum])
                        return i;
                   return -1;
    package mystuff;
    import java.io.*;
    import main.Bank;
    public class BankApp {
         public static void main(String args[]) throws IOException
              Bank b = new Bank(25);
              int menuChoice = 0;
              int accNum;
              String name = new String();
              double bal;
              double amt;
              int trans;
              BufferedReader keyboard = new BufferedReader(new InputStreamReader(System.in));
              while(menuChoice!=6)
              System.out.println("1)open a new bank account");
              System.out.println("2)deposit to a bank account");
              System.out.println("3)withdraw from a bank account");
              System.out.println("4)print short account info");
              System.out.println("5)print detailed account info including last transactions");
              System.out.println("6)quit");
                   menuChoice = Integer.parseInt(keyboard.readLine());
                   switch(menuChoice)
                   case 1:
                   System.out.println("What is the name");
                   name = keyboard.readLine();
                   System.out.println("What is the opening balance");
                   bal = Double.parseDouble(keyboard.readLine());
                   b.openNewAccount(name,bal);
                   break;
                   case 2:
                   System.out.println("What is the account number");
                   accNum = Integer.parseInt(keyboard.readLine());
                   System.out.println("What is the deposit amount");
                   amt = Double.parseDouble(keyboard.readLine());
                   b.depositTo(accNum,amt);
                   break;
                   case 3:
                   System.out.println("What is the account number");
                   accNum = Integer.parseInt(keyboard.readLine());
                   System.out.println("What is the withdrawal amount");
                   amt = Double.parseDouble(keyboard.readLine());
                   b.withdrawFrom(accNum,amt);
                   break;
                   case 4:
                   System.out.println("What is the account number");
                   accNum = Integer.parseInt(keyboard.readLine());
                   b.printAccountInfo(accNum);
                   break;
                   case 5:
                   System.out.println("What is the account number");
                   accNum = Integer.parseInt(keyboard.readLine());
                   System.out.println("How many Transactions");
                   trans = Integer.parseInt(keyboard.readLine());
                   b.printAccountInfo(accNum,trans);
                   break;
                   case 6:
                   System.exit(0);
    }

    public String getTransactionInfo(int lastNTransactions)
    String transInfo = new String();
    while(transactionCount > lastNTransactions)
    transInfo = transactions[lastNTransactions++] + "\n";
    return transInfo;You will not get more than one transaction because in
    transInfo = transactions[lastNTransactions++] + "\n";
    transinfo is replaced with a new value every time instead of values getting added to it.
    By the way the routine will not do what you want it to do anyway, but for a different reason,
    but you will see that when you corrected the first error.
    regards
    SH

  • HT1725 When I download a song from iTunes into my library, it often says it has downloaded, charges me for it, and on the song in my library shows the full playing time. However, when I play the song, at around halfway through it skips to the next song?

    When I download a song from iTunes into my library, it often says it has downloaded, charges me for it, and on the song in my library shows the full playing time. However, when I play the song, at around halfway through it skips to the next song?
    i'm just wondering:
    a) why it does this
    and b) how to stop it doing this, because it still charges me for the song :/

    If your country's iTunes Store allows you to redownload purchased tracks, I'd delete your current copies of the dodgy tracks and try redownloading fresh copies. For instructions, see the following document:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Otherwise, I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the items that are not playing properly. If you can't see "Report a Problem" next to the items, click the "Report a problem" button. Now click the "Report a Problem" links next to the items.

  • My Imovie continues to shut down every time i File-Import- then it pops up with everything i can import and right before im about to click on something it quits. I can't use my imovie until i figure this out, please help!

    My Imovie continues to shut down every time i File-Import- then it pops up with everything i can import and right before im about to click on something it quits. I can't use my imovie until i figure this out, please help!

    Thanks so much Meg. Unfortunately, iTunes is the program I use to perform syncing. I don't really have other outside options. It is also the location of the backup I would use to restore my phone, and my only way to reclaim important data. I am concerned that, since the last backup occurred when the "other" bar was only moderately huge (around 29G I think), that a backup would replicate the problem back onto my phone. 
    My contacts, etc. are all in address book and the calendar app on my Mac.  As far as I know, iTunes is the way to get them back, but iTunes is where the problem is. 
    Any thoughts on this?

  • HT203175 I downloaded two videos from itunes into Media Go and I can't play or transfer them to my Walkman. Please help. I'm new at this and haven't a clue as to what I should do. Is Media Go the wrong place to put the videos? Thanks. Earl G.

    I downloaded two videos from itunes into Media Go and I can't play or transfer them to my Walkman. Please help. I'm new at this and haven't a clue as to what I should do. Is Media Go the wrong place to put the videos? Thanks. Earl G.

    I was able to transfer songs, but not the videos. You, too? Earl. G.

  • I just want to edit songs from itunes into a soundtrack for a slideshow but GB won't let me save it as an archive so the end result is very tinny. Help!

    I just want to edit songs from itunes into a soundtrack for a slideshow but GB won't let me save it as an archive so the end result is very tinny. Help!

    to Itunes as a compressed file
    Try to save to iTunes uncompressed - if you uncheck the "compress" option, the file will be exported in aiff-format, CD quality. The file size will be larger, but your slideshow will have a better soundtrack.

  • I downloaded several cds to my external hard drive in .mp3 format. Later, I copied them to iTunes. The songs only play when the external hard drive is plugged in. I tried to load the songs from iTunes to my iPhone and the songs don't play.

    I downloaded several cds to my external hard drive in .mp3 format. Later, I copied them to iTunes. The songs only play when the external hard drive is plugged in. I tried to load the songs from iTunes to my iPhone and the songs don't play. I thought iTunes allowed me to transfer music to my iPhone and play it. What am I doing wrong?

    Hi skoorb1,
    When adding music to iTunes, you can set it to either make a local copy of the file, or simply point to the original location of the file (for example, on an external hard drive). If it is set to do the latter, it will not be able to play or transfer those files when the external hard drive is not plugged in. You may find the following article helpful:
    iTunes: About the Add to Library, Import, and Convert functions
    http://support.apple.com/kb/ht1347
    Regards,
    - Brenden

  • I downloaded and bought a movie from iTunes on my iPad and now want the same movie on my MacBook Pro but its not offering me to download it, it giving me the options of buying it which I already did. How I get the movie onto my MacBook?

    I downloaded and bought a movie from iTunes on my iPad and now want the same movie on my MacBook Pro but its not offering me to download it, it giving me the options of buying it which I already did. How I get the movie onto my MacBook?

    You can connect the iPad to your Mac's iTunes and do File > Devices > Transfer Purchases, that should copy it over to the Movies part of your library.
    Depending upon what country that you are in, and whether the film studio allows it, you might also be able to re-download it on your Mac via the Purchased link under Quicklinks on the right-hand side of the iTunes store home page.

  • I recently purchased songs from itunes via my pc and I dont know how to get them onto my iphone? When I click the sync button it says I will lose all the music currently on my iphone.. Help :(

    I recently purchased songs from itunes via my pc and I dont know how to get them onto my iphone? When I click the sync button it says I will lose all the music currently on my iphone.. Help

    If you're syncing with a different iTunes library than the one you previously synced with, then there is no way around it. You're gonna loose the old data. The only way round it would be to make sure that all the music files on your iPhone is also in your iTunes library. If you still have access to the computer with the old library, you could copy the files on to an external harddrive, and then import them into your new iTunes library.
    If it is in fact the same library, then the music currently on your iphone, is also in your itunes library. Just make sure that the artists/albums/playlists, or whatever you sync contains these tracks, that you allready have on your phone and don't want deleted. What i do is, i create a playlist specifically for my iPhone, and i set it up to only sync with this playlist. Whenever i hear a track from my iTunes library or buy a new track that i want on my phone, i just drag it to this playlist and next time i synchronize, it's there without deleting anything else.

  • I just bought a song from iTunes on my iPhone and accidentally stopped the download before it finished. How do I continue the download?

    I just bought a song from iTunes on my iPhone and accidentally stopped the download before it finished. How do I continue the download?
    It shows it in my music but is a light shaded grey. So I may not access the song. I tried repurchesing the song but iTunes won't let me.

        I had the same problem and solved it for myself, and I have a iphone 4s. I went to my songs and deleted the light grey songs then went to the itunes store, and selected more, then selected purchased. I scrolled down to the songs that were a light grey in my music, and pushed the download button ( icloud symbol with arrow on it) ,now my songs are successfully downloaded and ready to listen to any time!

  • I am trying to sync songs from itunes to my ipad and can't find my library on my ipad.

    I am trying to sync songs from itunes to my ipad and can't find my library on my ipad.  Can you help?

    Where are you looking on the iPad ? Your synced music (and that which you download from iTunes directly on the iPad) should go into the Music app
    Syncing music : http://support.apple.com/kb/HT1351

  • Can I use downloaded songs from iTunes into iMovie and burn DVDs?

    If I use downloaded songs from iTunes in iMovie, will I be able to make DVDs of my movie without losing music files?

    Hi A
    Probably but iMovie and I guess iDVD is fussy about in what format the audio
    is in. It should be 48k/.aiff
    If You in iTunes make an audio CD with the material You need in Your movie
    and then Use this CD in iMovie it will work.
    Yours Bengt W

  • How can I use Garage Band for ringtones? I dont get it

    I fairly new to the apple world. I want to use a song from a CD in my iTunes library in Garage Band then crop it and everything to make a ringtone for my iPhone. Is this possible?

    On you MacBook go to Garageband and go to the bottom right to find you iTunes music. Find a song and drag it to the editing section find the part you want to have as a ringtone (it must be 40 seconds or under). Go to Share at the menu at the top of the screen, click share "Ringtone" with iTunes and it should ask you to adjust. Their will be a little green line in the window near the top adjust the green slider to be as long or a bit longer than the ringtone and click again share then send ringtone to iTunes. Then when you plug in your iPhone go to the Ringtones tab and specify wether you want to sync all or select ringtones to your iPhone.
    For more information send me a message.

Maybe you are looking for