How to listen to iMic in realtime?

I have my Digital Cable box hooked up to my Dell 2005FPW and use in PiP.
I just purchased the iMic from Griffin to allow me to feed the audio through my computer and out through my computer speakers.
The audio however dosent seem to play unless the Final Vinyl program that came with the iMic is loaded and preview is selected.
Obviously, this is not working the way i had hoped as i really just want to use the iMic as a live feed out to my computer speakers, and loading a seperate program in the bg all the time isnt very efficient.
How can i get the iMic to play the live input in realtime without me having to load this program? I checked in Audio Midi Setup, but the option for 'Thru' is greyed out (which is what i assume needs to be checked in order to do what i need)
Any ideas?

The iMic is just a usb sound device. The in and out jacks work completely independently of each other and depend entirely on you running some software that will play sound. The os plays system sounds, iTunes plays music files, and some software will play what is coming through the in jack on the iMic.

Similar Messages

  • How do I use GarageBand as a amp/speaker to listen to my Electronic Drum set? I have a MIDI-USB cord already but I can't figure out how to listen to my set through the software using my computer speakers?

    How do I use GarageBand as a amp/speaker to listen to my Electronic Drum set? I have a MIDI-USB cord already but I can't figure out how to listen to my set through the software using my computer speakers?

    If you want to listen to the sounds of your drum set, you should use an audio cable and connect it to the computer's line-in, then create a real instrument track.
    If you use a Midi/USB interface, you'll have to create a software instrument track and select one of GB's drumsets as the instrument. Hopefully your drumset's midi notes are mapped to the right sounds in GB.

  • How to listen to the action in the action performed inside

    I have a code in actionperformed inside that add the listener, how the listener work or listen?
    public void actionPerformed(ActionEvent e){
           JMenuItem item = (JMenuItem)e.getSource();
            String ac = item.getActionCommand();
            if (ac.equals("Reset User Login Status"))
                         p1.removeAll();
                         p1.add(label1);
                      p1.add(menuBar);
                    display dis = new display();
                      table=dis.display();
                         table.setBounds(new Rectangle(10, 50, x-120, y-160));
                         table.getTableHeader().setBounds(new Rectangle(10, 30, x-20,20));
                         table.getModel().addTableModelListener(this);
                         btn_update = new JButton("Update");
                         btn_update.setBounds(new Rectangle(x-110, y-100, 90, 40));
                         //*****This below the listener, how it work???
                         btn_update.addActionListener( this );  
                         p1.add(btn_update); 
                         p1.add(table);
                         p1.add(table.getTableHeader());
                         p1.repaint();
                         p1.revalidate();
                         dis.close();
                    }

    To be simple i have attached the full code and try to higlighted the part with comment:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import javax.swing.table.*;
    import java.text.ParseException;
    import java.io.*;
    import javax.swing.AbstractButton;
    import java.util.StringTokenizer;
    import javax.swing.event.*;
    public class gui extends JFrame implements ActionListener,TableModelListener{
    JLabel label1,label2,label3,label4,errlabel;
    JButton btn1,btn2,btn3;
    JTable table;
    JPasswordField passFld;
    JButton btn_update;
    static JFormattedTextField idFld;
    JFormattedTextField custFld;
    JMenuBar menuBar;
    JMenu menu;
    JMenuItem menuItem;
    DefaultTableModel tabModel;
    StringTokenizer tokenizer;
    static String id;
    static String userRole;
    JPanel p1;
    int x;
    int y;
    display d1;
    String [] arg;
    public gui(String args) {
                    Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
                    x = (screen.width);
                    y = (screen.height);
                    StringTokenizer tokenizer = new StringTokenizer (args, ";");
                    id = tokenizer.nextToken();
                    userRole = tokenizer.nextToken();
                    System.out.println(userRole+""+id);
                    this.setDefaultLookAndFeelDecorated(true);
                    this.setTitle("FOREX Trading System");
                    this.setSize(new Dimension(x, y));
                    //this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    addWindowListener(new WindowAdapter(){
                    public void windowClosing(WindowEvent we){
                    update.main("UPDATE System_user SET LOGIN_STATUS = 0 WHERE USER_ID ='"+id+"'");
                    System.exit(-1);
                    p1 = new JPanel();
                     //Create the menu bar.
                    menuBar = new JMenuBar();
                        menuBar.setBounds(new Rectangle(0, 0, x, 25));
                     //Build the first menu tab.
                     menu = new JMenu("Dealer");
                     menu.setMnemonic(KeyEvent.VK_D);
                     menu.getAccessibleContext().setAccessibleDescription(
                     "For Dealer Acess Only");
                     menuBar.add(menu);
                     //Assign access right
                     if(userRole.equals("Dealer"))
                     menu.setEnabled(true);
                     else
                     menu.setEnabled(false);
                     menuItem= new JMenuItem("Key Deal");
                     menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_K);
                    menu.add(menuItem);
                    menuItem= new JMenuItem("Amend Deal");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_A);
                    menu.add(menuItem);
                    menuItem = new JMenuItem("Cancel Deal");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_C);
                    menu.add(menuItem);
                    menuItem = new JMenuItem("Close Position");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_P);
                    menu.add(menuItem);
                    //Another Menu tab
                    menu = new JMenu("Teller");
                     menu.setMnemonic(KeyEvent.VK_T);
                     menu.getAccessibleContext().setAccessibleDescription(
                     "For Teller Acess Only");
                     menuBar.add(menu);
                     //Assign access right
                     if(userRole.equals("Teller"))
                     menu.setEnabled(true);
                     else
                     menu.setEnabled(false);
                     menuItem = new JMenuItem("Settle Deal");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_S);
                    menu.add(menuItem);
                    menuItem = new JMenuItem("Create Customer Profile");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_C);
                    menu.add(menuItem);
                    menuItem = new JMenuItem("Close Position");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_P);
                    menu.add(menuItem);
                    menuItem = new JMenuItem("Daily Balance");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_D);
                    menu.add(menuItem);
                     //Another Menu tab
                    menu = new JMenu("Settlement");
                     menu.setMnemonic(KeyEvent.VK_S);
                     menu.getAccessibleContext().setAccessibleDescription(
                     "For Settlement Acess Only");
                     menuBar.add(menu);
                     //Assign access right
                     if(userRole.equals("Settlement"))
                     menu.setEnabled(true);
                     else
                     menu.setEnabled(false);
                     menuItem = new JMenuItem("GL Audit Trail");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_G);
                    menu.add(menuItem);
                    menuItem = new JMenuItem("Generate Payment Report");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_P);
                    menu.add(menuItem);
                    menuItem= new JMenuItem("Create/Edit Payment mode ");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_C);
                    menu.add(menuItem);
                    //Another Menu tab
                    menu = new JMenu("View");
                     menu.setMnemonic(KeyEvent.VK_V);
                     menu.getAccessibleContext().setAccessibleDescription(
                     "For View Only");
                     menuBar.add(menu);
                      //Assign access right
                     if(userRole.equals("Dealer")||userRole.equals("Teller"))
                     menu.setEnabled(true);
                     else
                     menu.setEnabled(false);
                     menuItem = new JMenuItem("Customer Profile");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_C);
                    menu.add(menuItem);
                    menuItem= new JMenuItem("Contrated Deal");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_D);
                    menu.add(menuItem);
                    //Another Menu tab
                    menu = new JMenu("Administrator");
                     menu.setMnemonic(KeyEvent.VK_A);
                     menu.getAccessibleContext().setAccessibleDescription(
                     "For Teller Acess Only");
                     menuBar.add(menu);
                       //Assign access right
                     if(userRole.equals("Administrator"))
                     menu.setEnabled(true);
                     else
                     menu.setEnabled(false);
                     menuItem= new JMenuItem("Set Currency & Rate");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_S);
                    menu.add(menuItem);
                     menuItem= new JMenuItem("Create/Remove User");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_C);
                    menu.add(menuItem);
                    menuItem= new JMenuItem("View Login Status");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_V);
                    menu.add(menuItem);
                    menuItem = new JMenuItem("Reset User Login Status");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_U);
                    menu.add(menuItem);
                    menuItem= new JMenuItem("Reset Daily Report");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_R);
                    menu.add(menuItem);
                    //Another Menu tab
                    menu = new JMenu("Logout");
                     menu.setMnemonic(KeyEvent.VK_O);
                     menu.getAccessibleContext().setAccessibleDescription(
                     "For Logout");
                     menuItem= new JMenuItem("Exit");
                    menuItem.addActionListener( this );
                    menuItem.setMnemonic(KeyEvent.VK_X);
                    menu.add(menuItem);
                     menuBar.add(menu);
                     label1= new TimeLabel()     ;
                     label1.setBounds(new Rectangle(x-80, 0, 80, 30));
                     p1.setLayout(null);
                     p1.add(label1);
                     p1.add(menuBar);
                     getContentPane().add(p1);
        public void actionPerformed(ActionEvent e){
             JMenuItem item = (JMenuItem)e.getSource();
            String ac = item.getActionCommand();
                   //---Below this btn_update is not working            
                    if (e.getSource()==btn_update)
                    System.out.println("A");
           if(ac.equals("Key Deal"))
                     label2 = new JLabel("Customer Name:");
                     label2.setBounds(new Rectangle(40, 40, 200, 30));
                     try{
                     MaskFormatter mf1 = new MaskFormatter("????");
                     custFld= new JFormattedTextField(mf1);
                     custFld.setBounds(new Rectangle(250, 40, 140, 30)); 
                    catch(java.text.ParseException exc)
                     //Error message
                     p1.add(label2);
                     p1.add(custFld);
                     p1.repaint(); 
             if (ac.equals("View Login Status"))
                         p1.removeAll();
                         p1.add(label1);
                      p1.add(menuBar);
                    display dis = new display();
                      table=dis.display();
                         table.setBounds(new Rectangle(10, 50, x-120, y-160));
                         table.getTableHeader().setBounds(new Rectangle(10, 30, x-20,20));
                         table.setEnabled(false);
                         table.setRowSelectionAllowed(false);
                         table.setColumnSelectionAllowed(false);
                         p1.add(table);
                         p1.add(table.getTableHeader());
                         p1.repaint();
                         p1.doLayout();
                         dis.close();
                 if (ac.equals("Reset User Login Status"))
                         p1.removeAll();
                         p1.add(label1);
                      p1.add(menuBar);
                    display dis = new display();
                 table=dis.display();
                         table.setBounds(new Rectangle(10, 50, x-120, y-160));
                         table.getTableHeader().setBounds(new Rectangle(10, 30, x-20,20));
                         table.getModel().addTableModelListener(this);
                         btn_update = new JButton("Update");
                         btn_update.setBounds(new Rectangle(x-110, y-100, 90, 40));
                         //--this the button created
                         btn_update.addActionListener( this );  
                         p1.add(btn_update); 
                         p1.add(table);
                         p1.add(table.getTableHeader());
                         p1.repaint();
                         p1.revalidate();
                         dis.close();
            if (ac.equals("Exit"))
               {    update.main("UPDATE System_user SET LOGIN_STATUS = 0 WHERE USER_ID ='"+id+"'");
                    System.exit(-1);
        public void tableChanged( TableModelEvent ev){
        System.out.println("Changed");
       }

  • How many listen we have for creative suits Web-design? because i don't know how to install on my new pc! thank you for the answer!

    How many listen we have for creative suits Web-design? because i don't know how to install on my new pc! thank you for the answer!

    This is not a photography question.  It is an application specific question,  Please post in the Photoshop forum.
    Photoshop General Discussion
    Remember, you are not addressing Adobe here in the user forums.  You are requesting help from volunteers users just like you who give their time free of charge. No one has any obligation to answer your questions.

  • How to listen purchased music in my car if I have no apple support and no connection to Internet in my car?

    How to listen purchased music in my car if I  have no any support in my car. I just put everything in a disk from my husband apple computer.
    But it does not work in my car. What should I do?

    If you stream it won't work. Stream meaning 'use the iPad as a receiver as you continually download from the internet'.
    However if that music is downloaded onto your iPad then it works just fine off line. then once the music is on your device you can use the USB if your car is equipped for that, or a FM transmitter (available commercially) or simply use a male/male headphone cable to use the headphone out of your device to a headphone in jack in your car (again, something only more recent models have)
    When you sync the music onto your device it should transfer those files from your computer to your iPad.

  • How to Listen to click on Row of ADF table?

    Hi,
    How to listen to an event on Selection of Row in table?
    I need to capture the data of selected row, listening to event on selection of row(on click on table row).
    Thanks in Advance
    Thoom

    Are you looking for selectionlistener to find the current selected row?
    Take a look at the below snippet for the sample:
    <af:table value="#{bindings.Employees.collectionModel}" var="row"
    rows="#{bindings.Employees.rangeSize}"
    emptyText="#{bindings.Employees.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.Employees.rangeSize}"
    rowBandingInterval="0"
    selectionListener="#{EmpTableBean.onTableNodeSelection}"
    rowSelection="single" id="t1">
    </af:table>
    The following code can be used to get the selected node - after the user selects a node:
    public void onTableNodeSelection(SelectionEvent selectionEvent) {
    resolveMethodExpression("#{bindings.Employees.collectionModel.makeCurrent}",
    null, new Class[] { SelectionEvent.class },
    new Object[] { selectionEvent });
    RichTable object = (RichTable)selectionEvent.getSource();
    Row row = null;
    for (Object facesRowKey : object.getSelectedRowKeys()) {
    object.setRowKey(facesRowKey);
    Object o = object.getRowData();
    JUCtrlHierNodeBinding rowData = (JUCtrlHierNodeBinding)o;
    row = rowData.getRow();
    System.out.println(row.getAttribute("FirstName").toString());
    public Object resolveMethodExpression(String expression, Class returnType,
    Class[] argTypes,
    Object[] argValues) {
    FacesContext facesContext = FacesContext.getCurrentInstance();
    Application app = facesContext.getApplication();
    ExpressionFactory elFactory = app.getExpressionFactory();
    ELContext elContext = facesContext.getELContext();
    MethodExpression methodExpression =
    elFactory.createMethodExpression(elContext, expression, returnType,
    argTypes);
    return methodExpression.invoke(elContext, argValues);
    Thanks,
    Navaneeth

  • How can I instruct mom how to listen to my music match music on her iPhone for Mothers Day ? In her settings what do I tell her to put ? Thanks in advance if anyone can help.

    How can I instruct mom how to listen to my music match music on her iPhone for Mothers Day ? In her settings what do I tell her to put ? Thanks in advance if anyone can help.

    If you purchased all of the songs through itunes store, please follow these steps:
    1. Open up Itunes and Click on Itunes Store
    2. Once you're in the Itunes Store look to right side of the screen and you should see the word "purchased". Click purchased and you'll be sent to a purchase screen.
    3. Click on "All Songs" and then it will show all the songs you've downloaded. From there you just hit the button that looks like a cloud with an arrow on it, and it will download all the songs all over again.
    If you didn't purchase them through Itunes, then you'll have to download software that will strip the songs from your iPod onto your computer. And here is a guide about how to transfer iPod music to iTunes. Hope it helps.

  • Hi. Does anyone know how to listen to Radio Disney on the iPod nano?

    Hi. Does anyone know how to listen to Radio Disney on the iPod nano?

    too bad, there are many more radio apps on itunes such as
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=281913144&mt=8
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=289088708&mt=8
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=286225933&mt=8
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284916679&mt=8
    if these don't suit you just go into itunes and search for "radio"

  • I just downloaded 3 podcast items into my iPod shuffle but don't know how to listen to it.  It plays the music list but don't know how to get to my podcast list to play it..

    I just downloaded 3 podcast items into my iPod shuffle but don't know how to listen to it.  It plays the music list but don't know how to get to my podcast list to play it..

    jfromnj wrote:
    I purchased and downloaded the Family Pack of IWork.  I recently purchased another computer (MacBook Pro) and I want to be able to use IWork on the new
    computer but don't know how to go about it.  The only thing on the Apple home page is to purchase either the item or trial pack.  I don't think I should have to purchase anything since a family pack covers 5 computers in the same household.  Please, if someone knows how to go about this and what I need to do so please let me know.  Thank you.
    You didn't keep the download for future use?

  • I downloaded an audio book on iTunes but I don't know how to listen to it on my iPad.  It was download on my iPad.  Does anyone know how I can listen to it?

    How do I listen to an audio book that I download on my iPad?

    Look in the More tab at the bottom of the Music App for the audiobook.

  • How to listen out for a stream of data coming from (web)server

    Hello
    I have an applet that connects to a server (same location as web server) and connects to a server on a socket. This all works fine for sending commands to this server. But the server can send data to the client at any moment in time. So how do I listen out for the activity? do I launch a separate thread that sits listening for incoming data?
    What is the way to do it?
    Angus

    Check out my InfoFetcher class
    http://forum.java.sun.com/thread.jspa?threadID=750441&messageID=4291848

  • How to update the screen in realtime?

    Hey,
    i am realy new in Indesign scripting
    i want to do a simple client script… the script should receive data and write it to a textbox (or do sth else with it).
    Everything works fine the only problem is: I dont know how to make this in realtime… for example every 10 seconds data comes from the server and should be directly displayed in the Indesign file.
    I need sothing like update the screen or flush the display…
    Thank you!
    All the best
    Code:
    myFrame = app.activeDocument.textFrames.add ();
    myFrame.geometricBounds = [30,30,200,200];
    reply = "";
    conn = new Socket;
    while(conn.open("localhost:12345")) {
    reply = conn.readln()
    $.write(reply)
    myFrame.contents = reply;
    //update the frame…

    Hey thank you, it works but it is too slow,
    i try something like a remote control for indesign i am sending values to indesign to - for example- move a frame... rotate etc..
    this works more or less:
    myFrame = app.activeDocument.textFrames.add ();
    myFrame.geometricBounds = [30,30,200,200];
    for(;;)
    for(var i=0; i<100; i++){
    $.sleep(220)
    myFrame.move ([i, 16])
    myFrame.contents = "    "+i
    myFrame.recompose()
    but this is too slow, what can i do? i can see all incoming values printed to the console but there is no fluent movement. but i realy need this, any ideas?
    myFrame = app.activeDocument.textFrames.add ();
    myFrame.geometricBounds = [30,30,200,200];
    reply = "";
    conn = new Socket;
    while(conn.open("localhost:12345")) {
    reply = conn.readln()
    $.write(reply+".")
    myFrame.move ([reply, 50])
    myFrame.contents = reply
    myFrame.recompose()
    thank you !!

  • How to listen for cell selection changes within a JTable

    Problem: my table has 8 columns, with 4 of them containing very large text (up to 1000 chars). Solution is to set the initial size these columns so that the 1st 20 chars are visible, and if one of these columns gains focus/selection via mouse-clicking/tabbing/arrow keys, the entire text is shown in a JTextArea below the table.
    I added a ListSelectionListener to the table, but this only informs me when the row selection has changed.
    I added a FocusListener to the table, but this only informs me when the table gains/loses focus, not when it's been changed within.
    I added a TableColumnModelListener to the TableColumnModel, but this only informs me when the column selection has changed.
    I didn't bother with MouseListener as this won't handle change of selection via tabbing.
    The LSL got me half way there, and the TCML got me the other half. Any ideas on how to combine?
    Or is there something obvious that I'm missing?

    Walter Laan wrote:
    Use both and call the same method which updates the text area based on the current selected (or focused == lead selection index) cell.Yeah - that's what I figured. I just didn't know if there was a magic bullet (i.e., a single listener) out there that I was missing.
    While you are at it, also add a table model listener which calls the same method if the selected cell is updated.I'll keep that in mind, but it's not necessary in this particular case. The table cells in question will be uneditable. The text area will have supporting Edit/Save/Cancel buttons.

  • How to listen Events in subclasses

    Hello, I'll try to be as clear as possible.
    I've two AS2 classes, say Main and Sub.
    Sub inherits from Main.
    Main gets instantiated by Sub by calling super in its
    constructor.
    In Sub constructor a Main method gets invocated too.
    Being this Main method related to a remoting call, it
    automatically
    calls a fault or a result event when it receives data from
    the server.
    In the Result function I put:
    dispatchEvent({type:'myMessage', target:this});
    What I'm trying to do:
    this message should be listened by Sub.
    When Sub receives this event it should fire one of its
    methods.
    How to do this?
    Thanks!

    Sorry. This doesn't make sense. Please rephrase the question or try posting in your native language.

  • How to listen to internet radio using iTunes

    Before I upgraded I used to be able to go to a list of radio stations all over the country to listen to local news but cannot do so anymore. How do I find such using the new version of  iTunes

    Theproblem is there is no such option as you suggest. Look at the attached screen shot to see what I see when I have the iTunes app open. There is no option to click on Internet!!!

Maybe you are looking for

  • What is taking up all the room on my 160GB HD? And what is safe to delete?

    I am new to Mac, and have a Macbook Pro, OSX 10.5.8, with a HD of 160GB. I use an external HD to back up my Home Folder and for Time Machine (which may be redundant, not sure). I use iDisk to back up my Personal Data and Settings. There is a HUUUUGE

  • [WebLogic crash] Stack overflow error not notified

    I want to notify an error that occurred to me; this is the working environment: - Weblogic 5.1 SP10 - Windows2K SP2 / Solaris --> tested on both systems - JBuilder 5 enterprise / JDK 1.3 and JDK 1.2.2 --> tested in both environments - session beans c

  • Keyboard is not working, even as an external device.

    Hello, I'll be very gratefull if you can help me with this. I had some splashing issue with my cup of coffee and my laptop the other day, and then I had my Keyboard working in any way possible except for the right one. Like anyone would expect I boug

  • TUBS update and Configuration/Testing

    I havent dealt much with TUBS....I know there have been QA on the TUBS but i still need more directions...... 1. What are things that i need to test if the test updates are  to add new tax types, Modify tax types and modify garnishments... 2. What wo

  • Application Launch Failure - CarbonLib

    Hello, I have a shared library error refered to CarbonLib. When I try to install new applications or sometimes when i launch an application it gives me this error : Application Launch Failure The application "XXX" could not be launched because of a s