Need simple MIDI environment - basic

1. use Logic Express 7.2.3
2. launch/load onto SL MBP
3. hear some music in your head
4. try to recreate what you heard using Logic Express 7.2.3
5. guess at environment cmd-8
6. create a keyboard
7. create a physical input
8. create a "monitor" create seven other icons with no idea *** is going on - guess at cabling
9. create a purple cheeze whiz icon
10. take 3 Excedrins, this shattle makes no sense
all I wanna do is have a keyboard and some sounds to play with....

what? You specifically want to play the sub-standard GM MIDI sounds??
Are you using an external MIDI keyboard and you want to trigger sounds from it... or you want to play with Logic's built in sounds??
If the later, try this -
1. Open Logic
2. Create a new audio instrument track
3. In the Mixer click on the top slot under I/O for that track's channel strip.
4. Choose an instrument from the drop down list.
5. Press the Capslock key and start playing on your keyboard.
If you want to learn how Logic works I recommend looking at the tutorials by macprovideo.com
JG

Similar Messages

  • Need simple instructions to connect my piano to my mac using usb midi

    I purchased a midi in/out usb connection for my Yamaha piano (clavinova clp120) and GB sees a midi device connected (in preferences) but I cant figure out how to use it...
    I need simple step by step help.
    Thanks!

    ok, Let me get this correct...
    Your piano is already hooked up to the mac via USB and Garage band sees it? correct?
    Alright, now, when garageband starts it usually loads the profile for a grand piano or you can select "New Project" > "Piano". If everything goes well you should be able to select the "grand piano" profile and hit record, then you should be able to start playing , do you hear any sound??
    If you want to use the LTP lessons then have your piano plugged in and start a lesson. As soon as it loads try hitting a key, do you hear anything??

  • Do you need a midi keyboard?

    A friend wants to purchase iLife to get GarageBand however he does not have a midi keyboard.
    Do you need a midi keyboard to use GarageBand version 2 or 3 ?

    You don't need a midi keyboard (there is an onscreen keyboard), but it sure is nice
    You can pick up the M-Audio 49e on eBay pretty cheap.

  • Need simple instructions on transfering photos from Samsung Gusto phone to computer.

    Need simple instructions on transferring photos from Samsung Gusto phone to my PC.

        smcolvin, happy to help with getting those pictures transferred. As the Samsung Gusto does not have the mass storage functionality, this requires a out of the box solution. You can send the pictures as a picture message and place your email address in the "to" field. Open your email inbox on your computer, open the messages and then download the images to the computer (usually right click and "save as").
    Alternatively, you can send the pictures to the online album and access them there. To send to the online album from your phone, press the left soft key. Message>New Message>Picture message. At the "New Picture Msg" screen, press the Right Soft Key and add "To Online Album." Select "Send." On your computer launch your web browser and log into MyVerizon at verizonwireless.com and then go to vzwpix.com .
    BrianP_VZW
    Follow Us on Twitter @VZWSupport

  • How can I do a simple MIDI track (no virtual instrument)?

    I'm having the hardest time trying to figure out how to do a simple MIDI recording. So far as I can tell, I can only record MIDI data if I select a virtual instrument for the MIDI track. When I used to use Cubase, I could just record the straight MIDI signal without having to select an "output" for it, and then load up whatever instrument I wanted to use later. Can I do that with Logic 9? I record some MIDI stuff live, and I'd like to not have to bog down my machine with running live virtual instruments.
    Mainly what I'm doing is recording the MIDI data of a set of VDrums, so that when I get to mixing later on, I can trash the crappy v-drum sounds and use DFH Superior for my drums.
    Much thanks for any advice ahead of time!
    Clint
    http://www.moreofYOUinthemonitor.com
    discover your role in worship

    Cool. I'll check this out and see if it's that easy for me. i feel like I tried that, but it wouldn't show any signal until I inserted a virtual instrument. I'll try again and make sure I do it right.
    What we're doing while playing live is using the Roland Vdrum sounds live (and recording the vdrum sounds themselves, as well), and also recording the MIDI data to a MIDI track. Later during mixing, I'll mute all the vdrum audio and pipe the MIDI track through DFH Sup. I have a v-drum preset I can then apply so that the MIDI data will trigger the software correctly. In the studio, I use DFH and listen to it during recording.

  • HELP!Simple MIDI player based on Sequencer:how to set Volume?

    Hi,i'm Roberto,i'm student and i'm realizing a simple midi player in java (using java1.5 and javax.sound.midi package).....the program has a gui and it can just play midi files,and the player is a class based on a Sequencer object:so the method play() initializes a Sequence object from a file and this is given as parameter to the sequencer,so it runs with Sequencer.start();......
    my BIG problem is:"how can change the volume when playng if the player's class is created as above?","how can i realize a method setVolume(int volume)?"......please help me!!!!!

    Did the previous post fix the problem?
    At what point should the synthesizer and sequencer be opened?
    Can the volume be set at anytime during playback?
    I have a similar problem and i tried both of these solutions and they did not work for me.
    Heres my code:
        /** The midi sequencer */
        private Sequencer sequencer = null;
        /** The synthesizer (for volume control) */
        private Synthesizer synthesizer = null;
        /** The volume (as a percentage) */
        private double gain = 100.0d;
         * Default constructor.
         * @since 1.0
        public MidiPlayer() {
            try {
                 // get the system sequencer
                this.sequencer = MidiSystem.getSequencer();
                // get the system synthesizer
                this.synthesizer = MidiSystem.getSynthesizer();
                // open the sequencer
                this.sequencer.open();
                // open the synthesizer
                this.synthesizer.open();
                // link the sequencer to the synthesizer
                this.sequencer.getTransmitter().setReceiver(this.synthesizer.getReceiver());
                // set this class to list for meta events
                // (end of track event in particular)
                this.sequencer.addMetaEventListener(this);
            } catch (MidiUnavailableException ex) {
                // TODO error handling
                 ex.printStackTrace();
        public void play(Sequence sequence, boolean loop) {
            if (this.sequencer != null && sequence != null && this.sequencer.isOpen()) {
                try {
                     // give the sequencer the sequence
                     this.sequencer.setSequence(sequence);
                    // start the sequencer
                     this.sequencer.start();
                    //set the loop flag
                    this.loop = loop;
                } catch (InvalidMidiDataException e) {
                    e.printStackTrace();
                    // TODO error handling
         public void setGain(double gain) {
              this.gain = gain;
             // change the percent value to a respective gain value
            int value = (int) (127 * (double) (this.gain / 100.0));
             // modify the volume of the sequence
            MidiChannel[] channels = this.synthesizer.getChannels();
            for(int i = 0; i < channels.length; i++) {
                 channels.controlChange(7, value);
              MidiChannel[] channels = this.synthesizer.getChannels();
              for (int i = 0; i < channels.length; i++) {
                   channels[i].controlChange(7, (int) (127 * (this.gain / 100.0)));

  • Create a simple Execution Environment

    Hi,
    Here a new guide to create your own a simple Execution Environment.
    https://wiki.eclipse.org/LDT/User_Area/Tutorial/Create_a_simple_Execution_Environment
    Feel free to ask you question or discuss the topic here
    Marc

    Hi Samuel,
    Please check that your EE is a valid ZIP archive, containing a the root level a ".rockspec" file.
    Otherwise, is there a way for me to have look to your EE ? Maybe you uploaded it on github ?
    Marc

  • I bought my macbook pro in march 2007.  I am currently running osx 10.6.8, but want to upgrade to lion or mtn lion.  Apple website says i need a mid 2007 or later macbook pro, how do I tell if my Macbook pro will support this upgrade?

    I bought my macbook pro in march 2007.  I am currently running osx 10.6.8, but want to upgrade to lion or mtn lion.  Apple website says i need a mid 2007 or later macbook pro, how do I tell if my Macbook pro will support this upgrade?

    The Mid-2007 model didn't come out until June 2007, so you must have bought an earlier model. It won't run Mountain Lion (OS X 10.8.x), but it might run Lion (10.7.x) if you can get hold of a copy, depending on which earlier model it is.
    Lion requires at least a Intel Core 2 Duo processor. The first MacBook Pros came out in January 2006, but they had "Core Duo" processors (no "2"). The Core 2 Duo MacBook Pros came out in October 2006. You could have bought either in March 2007.

  • New developer with spacial - need simple example

    Dear All
    i developing an application that need to store coordinates which represented with 3 floats. i need simple demo which illustrates me how can i insert such coordinate using Oracle Spatial and the how to select it. i also need little explanation of the structure of the select and insert queries
    Thanks alot

    Well, Ron, I think you will need to read a minimum in order to use oracle spatial. I admit that the Oracle docset can seem daunting, but I don't think you can use it without at least reading some of the Oracle Spatial Users Guide, available here (file://localhost/D:/Doc/Oracle/1020/B19306_01/appdev.102/b14255/toc.htm) in HTML and PDF.
    I suggest reading at least chapters 1 (concepts) and 2 (data types) in this manual.
    Albert

  • HT1491 Just bought a Shuffle; nowhere on Apple's website do I see simple instructions on how to download music. I'm older and need simple instructions on downloading music from iTunes, where I have an account set up, along with an Apple ID.

    I need simple instructions on how to download music to my ipod Shuffle.  The website is too complicated for me to figure out. 
    Jim

    here is the website to create your apple id:
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/212/wa/createAppleId? wosid=Jrtg8WQAz3T6qTF8cTxr0M&localang=en_US
    and to download music, open up itunes
    on the left hand side, click on itunes store.
    sign in with the apple ID you just created and begin purchasing!

  • I need more midi in and outs for logic 8!

    I did a google search but couldn't find anything.
    I am looking to expand the midi ins and outs when using logic 8. I have a macbook pro hooked up to a rme fireface 800 and I need more midi ins and outs.
    I've heard about these unitor devices but wil they work with logic 8? I heard there are different versions of them as well. I will need one that can sync to SMPTE
    Can u buys these new in stores? what kinda devices have you guys used to expand your midi ins/outs in logic 8

    Sadly, it seems that the MIDI Express XT was [discontinued|http://www.musiciansfriend.com/product/MOTU-Midi-Express-XT-USB?s ku=706423&src=3SOSWXXA]
    Here's the MIDI Express 128 8x8 from [Amazon|http://www.amazon.com/MOTU-MIDI-Express-128-Interface/dp/B0002J1PNK]
    I would just go to Sam Ash or Guitar Center and do some 'Midi shopping'.
    What you can also do, if you just like to expend your existing Midi, is to look for older (pre USB) midi interfaces on eBay, they are really cheap. You won't need a USB since you are hocking through Midi out/through (from your USB Midi) to 'IN' of the 'expansion' Midi device.

  • Need Simple Color Picker

    Hi all,
    I think my previous question was posted in the wrong place, I need
    simple color picker.
    Perhapes, someone will say, you have to you JColorChooser, I just
    need the switch part as the highlighted part in the figure 1
    figure 1
    http://img125.imageshack.us/img125/3792/color16ml.gif
    So, I want to be as figure 2
    figure 2
    [http://img159.imageshack.us/img159/3968/color29ln.gif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.table.*;
    public class ColorBox implements ListSelectionListener,
                                     ActionListener
        JTable table;
        public void valueChanged(ListSelectionEvent e)
            if(!e.getValueIsAdjusting())
                int row = table.getSelectedRow();
                int col = table.getSelectedColumn();
                if(row == -1 || col == -1)
                    return;
                Color color = (Color)table.getValueAt(row, col);
                String s = "red = " + color.getRed()     + "    " +
                           "green = " + color.getGreen() + "    " +
                           "blue = " + color.getBlue();
                System.out.println(s);
        public void actionPerformed(ActionEvent e)
            System.out.println(e.getActionCommand());
        private JPanel getNorth()
            JComboBox combo = new JComboBox();
            Dimension d = combo.getPreferredSize();
            d.width = 50;
            combo.setPreferredSize(d);
            JPanel panel = new JPanel(new FlowLayout(FlowLayout.LEFT));
            panel.add(combo);
            return panel;
        private JPanel getCenter()
            int[][] rgbs =
                { -16777216, -6737152,  -13421824, -16764160,
                  -16764058, -16777088, -13421671, -13421773 },
                { -8388608,  -39424,    -8355840,  -16744448,
                  -16744320, -16776961, -10066279, -8355712  },
                { -65536,    -26368,    -6697984,  -13395610,
                  -13382452, -13408513, -8388480,  -6710887  },
                { -65281,    -13312,    -256,      -16711936,
                  -16711681, -16724737, -6737050,  -4144960  },
                { -26164,    -13159,    -103,      -3342388,
                  -3342337,  -6697729,  -3368449,  -1        }
            Object[][] data = new Object[rgbs.length][rgbs[0].length];
            for(int row = 0; row < data.length; row++)
                for(int col = 0; col < data[0].length; col++)
                    data[row][col] = new Color(rgbs[row][col]);
            DefaultTableModel model = new DefaultTableModel(data,
                                               new Object[data[0].length]);
            table = new JTable(model)
                public Class getColumnClass(int col) { return Color.class; }
            table.setPreferredSize(new Dimension(148, 90));
            table.setRowHeight(18);
            table.setBorder(BorderFactory.createEmptyBorder(0,4,0,4));
            table.setBackground(UIManager.getColor("Panel.background"));
            table.setGridColor(table.getBackground());
            table.setDefaultRenderer(Color.class, new ColorBoxRenderer());
            table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
            table.setColumnSelectionAllowed(true);
            table.getSelectionModel().addListSelectionListener(this);
            table.getColumnModel().getSelectionModel().addListSelectionListener(this);
            JPanel panel = new JPanel();
            panel.add(table);
            return panel;
        private JPanel getSouth()
            JButton button = new JButton("More colors...");
            Dimension d = button.getPreferredSize();
            d.width = table.getPreferredSize().width;
            button.setPreferredSize(d);
            button.addActionListener(this);
            JPanel panel = new JPanel();
            panel.add(button);
            return panel;
        public static void main(String[] args)
            ColorBox cb = new ColorBox();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(cb.getNorth(), "North");
            f.getContentPane().add(cb.getCenter());
            f.getContentPane().add(cb.getSouth(), "South");
            f.pack();
            f.setLocation(200,200);
            f.setVisible(true);
            System.out.println(cb.table.getSize());
    class ColorBoxRenderer extends DefaultTableCellRenderer
        public ColorBoxRenderer()
            setOpaque(true);
        public Component getTableCellRendererComponent(JTable table,
                                                       Object value,
                                                       boolean isSelected,
                                                       boolean hasFocus,
                                                       int row, int col)
            if(isSelected)
                setBorder(BorderFactory.createLineBorder(Color.red));
            else
                setBorder(BorderFactory.createLineBorder(Color.lightGray));
            setBackground((Color)value);
            return this;
    }

  • Need help understanding a basic APEX operation

    Hi all,
    I'm an APEX newb. I've been developing some nice reports. Now I want to create some simple forms. What I'm trying to do is VERY basic.
    I have a text box which a user enters text. I want, when they press the submit button to:
    A. Call a simple Oracle procedure - i.e. exec insert_text(:P1_EXAMPLE);
    B. If successful indicate success, if an error, show an error message
    C. If successful, clear the items and let them do the same operation again.
    I am already doing validations to check for nulls and other error checking, but after these validations, do I need a Computation a Process or a Branch???
    Any help would be greatly appreciated.
    Thanks

    Thanks for your response.
    I have been trying to add a page process.
    1. I assume I need a PL/SQL process.
    2. I assume that the default POINT of On Submit After Computations and Validations is correct
    3. I enter the following under Enter PL/SQL Page Process:
    begin
    exec myschema.foo_insert_number(1331);
    end;An the following error is generated:
    1 error has occurred
    * ORA-06550: line 3, column 6: PLS-00103: Encountered the symbol "myschema" when expecting one of the following: := . ( @ % ; The symbol ":=" was substituted for "myschema" to continue.
    Any ideas?

  • I need simple advice as to how to transfer/store photos from my iPhone 4 to iCloud to free up memory on my phone.

    Hi....I have 1400 odd photos on my iPhone 4 and am running out of memory so I bought extra storage (25GB) on iCloud which I have set up to use.  However I'm not familiar with how iCloud works and I don't synch my iPhone with a computer but I want the comfort of knowing that when I transfer the photos to iCloud they are there and need to know how to access them again if/when I want to.
    I have looked at the Photos & Camera section in General Settings but really have no idea what Camera Roll, Photo Library or Photo Stream refer to.    I take photos as and when the mood strikes me, don't share them with anyone and only want to retain them for future reference as and when I feel like it.
    Which leads me to my queries:
    1. How do I transfer the photos to iCloud?
    2. Can I open folders to seperate different batches of photos in iCloud?
    2. When I have done this is it safe to delete the photos from my iPhone?
    3. If so how do I delete them all in one go?
    4. How do I access the photos again from iCloud?
    Please keep the answers/ instructions simple/idiot proof as no doubt you will have surmised by now that the nature of my queries is indicative of my limited knowledge as to exactly what can be done with my iPhone!!!!
    Doody

    iCloud is not designed to "store" photos (as in long term storage).  iCloud can be used to sync photos from one device to another (photo stream) and to store a backup of the camera roll.  But that's pretty much it.
    Camera roll is the group of all photos taken by the device (but not other photos synced to the device from another source).  Your extra storage on icloud will do you no good.  The recommended way of storing photos on a device is to sync them to a computer.
    So, your questions..
    1) You don't/can't
    2) No, because of 1.
    3) On a computer, deleting large groups of photos is relatively painless.  not so on a device.
    4) You can't access photos on iCloud because they can't be store in icloud.  You can't view/access photos in a backup on icloud unless you restore a backup to a device.
    Read this...  import photos to your computer...
    http://support.apple.com/kb/HT4083

  • Need help with a basic script to resize image then resize the canvas

    I am new to photoshop scripting, and have come across a need to force an image to be 8"x10" at 300dpi (whether it is vertical or horizontal)
    I need to maintain the correct orientation in the file, so an Action will not work, I believe I have to implement a script to accomplish this.
    I have the below script so far, but I am not certain of how to input the variables / paramters
    doc = app.activeDocument;
    if (doc.height > doc.width) doc.resizeImage("2400 pixels","3600 pixels", "300", "BICUBIC");
    if (doc.height > doc.width) doc.resizeCanvas("2400 pixels","3000 pixels", "MIDDLECENTER");
    if (doc.height < doc.width) doc.resizeImage("3600 pixels","2400 pixels",300,"BICUBIC");
    if (doc.height < doc.width) doc.resizeCanvas(3000,2400,"MIDDLECENTER");
    When I run this script, I get the following error:
    Error 1245: Illegal argument - argument 4
    - Enumerated value expected
    Line: 5
    if (doc.height < doc.width) doc.resizeImage("3600 pixels","2400 pixels",300,"BICUBIC");
    The fact that its failing on lien 5 lets nme know that I have the "If" portions of my script correct, I just dont know how to accomplish the functions correctly.
    Any help would be appreciated!
    Thanks,
    Brian

    I know I'm late here but it seems to me your trying to automate a 8"x10 or 10"x8 300DPI  print.
    To do that you must first crop your image to a 4:5 aspect ratio to prevent distortion unless your shooting with a 4" by 5" camera.   I wrote a Plugin script a couple years ago that could help you do a centered crop.  You could do the whole process by recording a simple Photoshop action that uses two  Plugin Scripts only four steps would be needed.
    Step 1 Menu File>Automate>AspectRatioSelection  (My script based of Adobe Fit Image Plugin script) Set 4:5 Aspect ratio, center,  Rectangle, Replace, no feather. Llike Fit Image this script woks on both Landscape and Portrait images. The Selection will be correct for the images orientation.
    Step 2 Menu Image>Crop
    Step 3 Menu File>Automate>Fit Image set 3000 PX height and 3000 PX width the Image will be Resample so its longest side will be 3000 pixels.  Adobe Fit Image Plugin Script always uses BICUBIC resampling.  I have a modified version of Fit Image  that uses Bicubic Sharper whebndownsizing and BicubicSmoother when up sizing.
    Step 4 Menu Image>Size un check resample set resolution to 300 DPI.
    When you play the actions the Script Dialogs will not be displayed and the setting use when you recorded the action will ne used.
    The Plugin Script are included in my crafting actions package:
    http://www.mouseprints.net/old/dpr/JJMacksCraftingActions.zip
    Contains:
    Action Actions Palette Tips.txt
    Action Creation Guidelines.txt
    Action Dealing with Image Size.txt
    Action Enhanced via Scripted Photoshop Functions.txt
    CraftedActions.atn Sample Action set includes an example Watermarking action
    Sample Actions.txt Photoshop CraftedActions set saved as a text file. This file has some additional comments I inserted describing how the actions work.
    12 Scripts for actions
    My other free Photoshop downloads cam be found here: http://www.mouseprints.net/Photoshop.html

Maybe you are looking for

  • HT201304 how can i disable the purchase of paid applications but allow the purchase of free applications?

    i want to restrict my daughter from buying all these paid apps, but she still wants to be able to purchase the free ones, how can i do this?

  • My iphone 5 is not recognized by my pc or itunes?

    My iphone 5 which has always worked will not connect to any computer in my house pc or mac, it is not recognized by them or even by itunes. It will charge normally from an ac adapter but not from the computer. this has never happened to me before. I

  • Host Information is not updated in System Monitoring tab

    Hello Team Mates, I have installed SOLMAN 7.1 SP06, also we have completed the Managed  system configuration. Now while doing the configuration of system monitoring, I am not  getting the any update related to HOST, apart from its database. Instance

  • Classpath issues when executing from a jar

    I have a jar that I built for an RMI server that has a need to access another jar. (log4j). I run the jar from the command line using: java -jar -Djava.rmi.server.codebase=my.jar my.jar and the code runs fine but when I try to add in the log4j.jar I

  • Cant find and delete files

    Oh boy where do I start. I don't want to sound like one of these windows switchers who complains that things on a Mac seem complicated but things on my new Mac mini sure do seem so complicated. I've had my mini Server (2 x 1TB drives) only a little w