How  do you input notes?

I'm trying to click the notes in to compose a song, and nothing's going in! How do you do it? I don't want to use the keyboardpiano note thingy!
Message was edited by: Host

politeness often get quick replies

Similar Messages

  • How do you input notes onto a musical score in Garageband?

    Hello, after a failed attempt at doing it myself i wondered if anybody else knew how to input notes onto a musical score on Garageband. When I say input notes I mean for example if the stave is there at the bottom is there a way which I can simply add a note (á la Sibelius) whether it be via a keyboard shortcut (cmd + n on Sibelius though obviously in Garageband this creates a new project). Any help would be appreciated, thanks.

    http://www.bulletsandbones.com/GB/GBFAQ.html#addmidinotes
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • How come you can not use more than 126GB of a 1.5TB diskdrive with LabVIEW Real Time?

    How come you can not use more than 126GB of a 1.5TB diskdrive with LabVIEW Real Time?
    This is only 8.3% of the available disk drive space!
    http://digital.ni.com/public.nsf/allkb/E7E2F5657B6​026358625750B007201A6?OpenDocument
    National Instrument's solution is either reformat you drive to less than 126GB or replace the drive with one less than that size.
    Please NI, tell me you are going to fix your LabVIEW Real Time soon, and that we won't have to wait for LabVIEW RT 9.2.1 in 2011 for this one to be fixed.
    http://upload.wikimedia.org/wikipedia/commons/9/90​/Hard_drive_capacity_over_time.svg
    Drives as large as 126GB or more have been around since about mid 2002.  That's about 7 Years now and LabVIEW Real Time STILL can't use drives larger that 126GB!  Please NI.  Do something.
    We deserve fixes to the old versions of LabVIEW RT.  How about updates to LabVIEW RT.  Such as 7.0.2, 7.1.2, 7.6.2, 8.0.2, 8.2.2, 8.6.2.
    We don't need new features or versions of LabVIEW RT such as 9.0 until we have some of bugs fixed in the existing versions. 
    Kevin. 
    Message Edited by kmcdevitt on 05-29-2009 03:39 PM
    Solved!
    Go to Solution.

    Coq rouge wrote:
    NI is not making the Real Time OS in house. I do not remember which firm that is making it. Anyway you are allowed to use a hard drive that has been partitioned. And 126GB is some space is it not? I remember Bill Gates declared one time that 640Kb ram should be more than enough for any PC application also in the future 
    Coq Rouge (formerly t06afre),
    The RealTime OS is an NI Product that is purchased from NI.
    NI may or may not outsource design, developement, or manufacturing of the products that it sells under its own Company name.
    For this reason I would be concerned if I were a PXI Embedded Controller designer/developer in the United States. 
    Yes, 126GB is some space.  I see that there are now 2TB drives available.  126GB would be 6.3% of a new 2TB drive.  Should we all be happy with being able to use 6.3% of the available drive space.  Moore's Law seams to be alive and well.  Drives larger than 126GB have been readily available for 5 or 6 Years.  This should not be a surprise to NI.  Why don't they do something about it.
    Thanks for the trivia on Bill Gates.  I must have missed that one since I don't try to keep up with Microsoft.  I believe that he is a wonderful person and he and his family are doing wonders for the world in their "retirement".   The world needs more like him.
    What I do remember is Steve Jobs telling us that we would never need more that 128MB and that we would never to need to do anymore software development because everything was already in the "ToolBox".
    McKevin.  

  • How do you input a equation in a mathematical format?

    How do you input a equation in a mathematical format like the equation above? Thanks!

    var radicand:Number = b*b-4*a*c;
    if(radicand>=0){
    var rad:Number = Math.sqrt(radicand);
    var x1:Number = (-b+rad)/(2*a);
    var x2:Number = (-b-rad)/(2*a);
    } else {
    rad= Math.sqrt(-radicand);
    var s1:String = (-b/(2*a))+"+i"+(rad/(2*a));
    var s2:String = (-b/(2*a))+"-i"+(rad/(2*a));

  • How do you something not equal something else?

    how come the, "does not equal's" not work, and what is the proper way to do it so that I can have all the variables be different, but still be between 1 and 7?
    import javax.swing.*;
    import java.text.*;
    import java.util.*;
    import java.awt.*;
    import java.lang.*;
    public class DiplomacySelector1
              public static void main(String[] args)
         String input;
         int x,num1,num2,num3,num4,num5,num6,num7,choice;
         Random generator1=new Random();
         num1= 1 + generator1.nextInt(7);
         Random generator2=new Random();
         num2= 1 + generator2.nextInt(7);
         Random generator3=new Random();
         num3= 1 + generator3.nextInt(7);
         Random generator4=new Random();
         num4= 1 + generator4.nextInt(7);
         Random generator5=new Random();
         num5= 1 + generator5.nextInt(7);
         Random generator6=new Random();
         num6= 1 + generator6.nextInt(7);
         Random generator7=new Random();
         num7= 1 + generator7.nextInt(7);
         x=0;
         while(x<7)
              System.out.println("Great Britian- "+num1);
              System.out.println("France- "+num2);
              num2!=num1;
              System.out.println("Austria-Hungary- "+num3);
              num2!=num1!=num3;
              System.out.println("Germany- "+num4);
              num2!=num1!=num3!=num4;
              System.out.println("Italy- "+num5);
              num2!=num1!=num3!=num4!=num5;
              System.out.println("Turkey- "+num6);
              num2!=num1!=num3!=num4!=num5!=num6;
              System.out.println("Russia- "+num7);
              num2!=num1!=num3!=num4!=num5!=num6!=num7;
              x=7;
    }

    First, DON'T create a new Random each time. There is a very high probability that all those Randoms will be created before you system clock ticks over, so they'll all have the same system time for a seed and hence will all generate the same pseudorandom sequence.
    Create only one Random and reuse it.
    You still might not get unique numbers though. So there are two main approaches:
    1) Simpler, and will work well here since you have a small range and you're using all the numbers in your range. Just populate java.util.List of seven Integers with 1-7 sequentially, then call Collections.shuffle().
    2) More complex, and in general useful when you're selecting a few values from a large range, but will work fine here too. Keep track of what you've selected so far. Each call to nextInt() is in a loop that keeps executing until you grab a number you haven't encountered yet. Don't use this to shuffle, say, a million ints in the range 1..1,000,000.

  • How do you stop Notes on an iPhone 4S disappearing and ending up in your Yahoo email account Notes?

    I have been doubting my sanity! Items held in Notes seem to disappear at random. I have established from the ASC that missing Notes are sometimes moved to the Notes folder of your Yahoo email account and much to my relief I have found them there. Is it possible to stop this happening? If so how do you do it? I cannot see anything in Settings/Notes and when I turn off Notes in Settings/Mail all my Notes disappear!

    MobileMe works fine for me but you don't need a MobileMe account. You need an IMAP account.
    Although a POP account can be accessed with more than one email client, a POP account is designed to be accessed with a single email client only. You can't store Sent messages on the server, keep mailboxes synchronized between multiple email clients used to access the account, more than one email client cannot access the incoming mail server for a POP account at the same time or near the same time because the incoming mail server will lock the account's inbox mailbox preventing access for a period of time.
    None of this is an issue or problem with an IMAP account which is designed to be accessed with multiple email clients. I keep the Mail.app on my Mac launched and running checking my MM account which has a junk mail filter. Any received message that is automatically marked as junk and is moved to the account's Junk mailbox stored on the server is reflected automatically when checking the account with the iPhone's Mail client since all server stored mailboxes for the account are kept synchronized, which isn't possible with a POP account.

  • How do you restore notes?

    I accidentally erased some note files from notes on my Macbook. I use a me.com e-mail account on iCloud and time machine backs up daily. Can you walk me through the steps necessary to restore notes.
    Also, when I connect my iPad to the Macbook with the designated cable, should Back up to iCloud or Back up to this computer be checked?
    Thanks Again,
    John Franco

    The best way is to restore from a Time MAchine or other backup.  The next is to locate a copy you have on a removeable or other drive.  Next is a copy you emailed to someone.
    Finally you can use specialized tools to undelete-- this methind is only reliable if you have not written to your disk much since you deleted.

  • How do you input guitar in GarageBand on iMac

    I've tried to input my guitar into GarageBand on my iMac, but have not been very successful. How can i do this?  I have iRig, and plug it into the back port, but that doesn't work.  I also have a USB Guitar Link that works with Amplitube 3 that is on the same iMac, but doesn't work with GarageBand.  I've tried changing the input choices under preferences, but no luck.  With the USB Guitar Link, the Audio Preferences menu gives me the choice of "USB Audio CODEC" and I choose that...but, that doesn't work either.  The ONLY thing that has worked is the "Built-In Microphone"...but that records everything in the room...and its of very low quality.  Any help is appreciated.

    tlcrogers wrote:
    I plug my guitar in to the audio output (headphones) jack.  I then go into system settings and chagne the jack to be an input instead of an output.
    the iMac has separate input and output jacks, it does not work like your laptop's jack

  • [SOLVED] How do you input monitor details in xorg.conf.d/ ?

    I've recently installed Arch on an HP box - quad core i3 @ 3.1GHz, 4GB RAM, Radeon HD 6450 GPU / 1GB RAM;- it is using a Samsung SyncMaster 2443 24" monitor.
    [edit:] Using the open source xf86-video-ati driver stack. /edit
    The problem I have is that the X server thinks that the monitor isn't capable of handling more than vesa - in this case 1024x768 res'.
    If I change xorg.conf.d/20-gpudriver.conf  from vesa to ati, or create a .../20-radeondriver.conf with radeon in it the X server fails to start, stating that the screen found was unsuitable?
    So, how do I get around this? This monitor was previously being used on an AGP nVidia GeForce 7950GT very happily at 1920x1200.
    I've searched & not come up with info' on this. The data on the X.org wiki is out of date in this regard.
    Thanks for your time.
    Last edited by handy (2011-11-12 01:53:03)

    I just ran the following command:
    sudo hwinfo --framebuffer | less
    {I didn't really need to pipe the output to less, but if you don't use the --framebuffer option you certainly do (well I did anyway).}
    Which gives me this output:
    02: None 00.0: 11001 VESA Framebuffer
    [Created at bios.459]
    Unique ID: rdCR.aX_EXjgoS_0
    Hardware Class: framebuffer
    Model: "(C) 1988-2010, AMD CAICOS"
    Vendor: "(C) 1988-2010, AMD Technologies Inc."
    Device: "CAICOS"
    SubVendor: "AMD ATOMBIOS"
    SubDevice:
    Revision: "01.00"
    Memory Size: 16 MB
    Memory Range: 0xc0000000-0xc0ffffff (rw)
    Mode 0x0300: 640x400 (+640), 8 bits
    Mode 0x0301: 640x480 (+640), 8 bits
    Mode 0x0303: 800x600 (+832), 8 bits
    Mode 0x0305: 1024x768 (+1024), 8 bits
    Mode 0x0307: 1280x1024 (+1280), 8 bits
    Mode 0x0310: 640x480 (+1280), 15 bits
    Mode 0x0311: 640x480 (+1280), 16 bits
    Mode 0x0313: 800x600 (+1600), 15 bits
    Mode 0x0314: 800x600 (+1600), 16 bits
    Mode 0x0316: 1024x768 (+2048), 15 bits
    Mode 0x0317: 1024x768 (+2048), 16 bits
    Mode 0x0319: 1280x1024 (+2560), 15 bits
    Mode 0x031a: 1280x1024 (+2560), 16 bits
    Mode 0x030d: 320x200 (+640), 15 bits
    Mode 0x030e: 320x200 (+640), 16 bits
    Mode 0x0320: 320x200 (+1280), 24 bits
    Mode 0x0393: 320x240 (+320), 8 bits
    Mode 0x0395: 320x240 (+640), 16 bits
    Mode 0x0396: 320x240 (+1280), 24 bits
    Mode 0x0396: 320x240 (+1280), 24 bits
    Mode 0x03b3: 512x384 (+512), 8 bits
    Mode 0x03b5: 512x384 (+1024), 16 bits
    Mode 0x03b6: 512x384 (+2048), 24 bits
    Mode 0x03c3: 640x350 (+640), 8 bits
    Mode 0x03c5: 640x350 (+1280), 16 bits
    Mode 0x03c6: 640x350 (+2560), 24 bits
    Mode 0x0333: 720x400 (+768), 8 bits
    Mode 0x0335: 720x400 (+1472), 16 bits
    Mode 0x0336: 720x400 (+2944), 24 bits
    Mode 0x0353: 1152x864 (+1152), 8 bits
    Mode 0x0355: 1152x864 (+2304), 16 bits
    Mode 0x0356: 1152x864 (+4608), 24 bits
    Mode 0x0363: 1280x960 (+1280), 8 bits
    Mode 0x0365: 1280x960 (+2560), 16 bits
    Mode 0x0366: 1280x960 (+5120), 24 bits
    Mode 0x0321: 640x480 (+2560), 24 bits
    Mode 0x0322: 800x600 (+3200), 24 bits
    Mode 0x0323: 1024x768 (+4096), 24 bits
    Mode 0x0324: 1280x1024 (+5120), 24 bits
    Mode 0x0343: 1400x1050 (+1408), 8 bits
    Mode 0x0345: 1400x1050 (+2816), 16 bits
    Mode 0x0346: 1400x1050 (+5632), 24 bits
    Mode 0x0373: 1600x1200 (+1600), 8 bits
    Mode 0x0375: 1600x1200 (+3200), 16 bits
    Mode 0x0376: 1600x1200 (+6400), 24 bits
    Mode 0x0383: 1792x1344 (+1792), 8 bits
    Mode 0x0385: 1792x1344 (+3584), 16 bits
    Mode 0x0386: 1792x1344 (+7168), 24 bits
    Mode 0x03d3: 1856x1392 (+1856), 8 bits
    Mode 0x03d5: 1856x1392 (+3712), 16 bits
    Mode 0x03d6: 1856x1392 (+7424), 24 bits
    Mode 0x03e3: 1920x1440 (+1920), 8 bits
    Mode 0x03e5: 1920x1440 (+3840), 16 bits
    Mode 0x03e6: 1920x1440 (+7680), 24 bits
    (END)
    So now at last I understand (I had wondered about this) my graphics card supplies only the above vesa resolutions. This is why I see all of them being tested in the Xorg.0.log & I don't see 1920x1200.
    I can at last put this one to bed.
    Last edited by handy (2011-11-12 21:58:52)

  • How do you put notes on ipod? help

    hello, i was just wondering how to put notes onto my ipod. It is a 30GB black video ipod if that makes any difference. Also, I have a Windows computer, and use Windows XP. thanks,
    josh

    open your ipod in hard disk mode, you will find a notes folder on it, drag your.txt files there and they will show up on your ipod

  • How do you search notes on a macbook?

    So, I finally bought a Mac after realizing that they are far more efficient than their competitor. I am learning how to use it, but perhaps I am very stuck in my old Windows habits. I used to keep a lot of usernames and passwords in a simple text file on my PC and everytime I went to a forum or website that asked me to log in, I would simply use CTL+F to find the web address, and then be able to see what email/username/password I used for that particular site.
    On getting my Mac, I transferred this file to the Mac, so that I can continue to use the text file, but now I can't seem to find a way of searching within the text to find a particular string.
    Is it possible? Please can someone tell me what the key combination is. I have looked but cannot find it. Thank you, in anticipation.

    Thank you Carolyn. I tried Spotlight and sure enough, it finds the files that contain the text I searched for, but it didn't seem to highlight the text within the file. For example, there is a soccer player called 'something Laudrup' and I can't remember his first name. I know it's somewhere in the text below and I'd like to find the line of text that it's in.
    Is there a way to do this? Before I jsut used CTL+F and typed in 'Laudrup' and it would take me straight to the first instance in the text of 'Laudrup' and also offer me a next. Pretty much the same as finding text on a website, where of course, cmd+f works
    Here's the sample text..
    It was certainly an evening to remember for England Under-21 international Shelvey, who left Anfield for the south Wales club in the summer. The £5m signing put the Swans ahead when he left new Reds defender Mamadou Sakho flat-footed to calmly stroke a left-foot effort past goalkeeper Simon Mignolet. Liverpool had not previously conceded in the Premier League and they were gifted a way back into the game little over 100 seconds later by Shelvey. His careless pass back towards goalkeeper Michel Vorm was seized upon by Sturridge, who netted his fourth top-flight goal of the season with a clinical finish. Sharp Sturridge Daniel Sturridge is the first player to score in each of Liverpool's first four games of a Premier League season. The Reds dominated the opening half hour as the vibrant trio of Moses, Philippe Coutinho and Sturridge pulled apart the Swansea defence with pace and precision. And they should have doubled their advantage when Moses and Sturridge combined. On-loan Chelsea winger Moses surged past two defenders near the left corner flag and dinked in a perfectly weighted cross towards an unmarked Sturridge. The England striker seemed certain to score but his header was directed too close to Vorm, who made a magnificent save. Shortly before half-time, they did take a deserved lead. Shelvey sloppily handed possession to Moses, who drove at the backpedalling Swansea defence before accurately shooting into the bottom corner from the edge of the penalty area. Victory would have given Liverpool their best start to a season since 1990-91 and for the opening hour they seemed firmly on course to achieve that. But Coutinho's departure early in the second half with a shoulder injury following a robust challenge from Swans skipper Ashley Williams disrupted their fluency. Miserly Liverpool Jonjo Shelvey's goal was the first Liverpool had conceded in the Premier League in 419 minutes of play Swansea, playing the first of seven games in 21 days, had not created any clear-cut second-half chances before Michu's leveller, but they had been encouraged to press forward by Liverpool's willingness to sit back on their lead. They were rewarded when Shelvey flicked a right-wing cross into the path of Michu, who swept a first-time shot beyond Mignolet. The leveller switched the momentum of the match firmly in Swansea's favour and, as the encounter moved into the closing stages, Michael Laudrup's men looked the likeliest to grab a dramatic winner. Shelvey sent a low free-kick fizzing into the arms of Mignolet, before substitute Jonathan de Guzman twice went close. Swansea manager Michael Laudrup: "We had to perform better in the second half and the boys did a good job. "We got the equaliser, we could have won the game but I'm pleased with the result after all." Liverpool manager Brendan Rodgers: "I thought for the first 65 minutes we were very good. We showed incredible character to get back level so soon after they scored. "I was disappointed with their second goal and then the momentum changed for the last 25 minutes and we had to show character and resilience. "But we showed tonight our game is getting better and we have the character to get a lot of results."

  • How do you add notes to an iCal item

    New user here.
    I can create a calendar entry with start/end time, but when I try to Edit the entry, the "note" field is grayed out. So is the url field. And both have a grayed out "none".
    So how do I add some text into a calendar entry?
    Thanks!

    If you click where it says "none", a text box will pop up for you to write in.

  • How do you retrieve notes previously written as they seem to delete themselves and I am losing work

    I have twice lost notes in the past week as the system seems to be deleting them. Any ideas why? Had a techi person look at it (who should know about iPads) but he couldn't help either. Getting so frustrated as losing hours of work.

    In your Notes app, do you see Accounts at the top left? If so, click on it, then click on All Notes.

  • How do you sync notes between ipad and macbook pro

    I have numerous notes on my iPad mini and want to sync it with my MacBook Pro. How?

    Use iCloud.
    Barry

  • How do you download notes to an ipod

    I can't figure out how to download notes to my ipod.

    http://docs.info.apple.com/article.html?artnum=93951

Maybe you are looking for