Beginner question about Mic use

I have a mic that I use to use with an older PC and when I plug it in to my MBP it doesn't work. Should any mic work with the mac or do ya need a mac specific mic. Any help or suggestions is greatly appreciated. Thanks

Depending on what you are recording and quality needed, there is a built in microphone in your computer.
Also. http://docs.info.apple.com/article.html?artnum=303490
Connect your MacBook Pro to a line-level microphone or optical digital audio equipment. The Audio In port accommodates both optical digital audio input and analog audio input.
Analog audio line input is accepted through a 3.5mm mini phone jack which does not provide power to a connected device, so you must use self-powered peripherals. The sound input jack accepts line-level stereo signals up to 24-bit stereo 44.1-192kHz sampling rate. It also accepts a stereo miniplug-to-RCA cable adapter for connecting stereo equipment to the computer.
Optical audio input is SPDIF format and uses a standard toslink cable with a toslink mini-plug adapter, accepting up to 24-bit stereo and 44.1-96kHz sampling rate.

Similar Messages

  • Beginner question about using selection tools (Mac OS X 10.6 user)

    I click on, say, Magnetic Lasso and it does its thing. But, in true Sorcerer's Apprentice fashion, it keeps on going and going. Two questions: how to stop the tool, and how to correct the deviant strokes? To stop ML, I click Command + D and nothing happens. I choose Deselect and nothing happens. Also, I am trying to select 2 discontinuous regions in the photo. How to do that? Thanks!

    When you double click, it should finish up the selection. You can use the selection brush to tidy up (Option-drag to remove areas.)
    To add more areas hold down shift as you select or turn on the add to selection square in the options bar if the tool has it.

  • Question about Automator using Spaces.

    I don't think this is the right place for this question, but I figured I am probably going to need to write an applescript to do what I want, so I decided to put it here.
    I have an automation to open some Word documents on my idisk, then open Dictionary, then open Safari with some tabs. But the problem comes in with spaces. I have Word and Dictionary open on Space 1 and Safari open in Space 3. When the automation ends, I end on Space 3 and would like to know how I add a function to set the focus back to Space 1. It's not all that detrimental to the success of my Automation, but I only use Safari for research and would like to focus to end back on word. I have tried switching which apps open first, but I still end up on the 3rd Space.
    My other question is, where can I go for reference to commands in Xcode and AppleScript that deal with Spaces? I love using that function and I have had some ideas about scripts that could help me with them, but I don't even know were I would start with commands.

    There are several solutions to this.
    The first option would be to send the appropriate key command to switch to space 1. If you've left your preferences as the defaults then you can:
    <pre class=command>tell application "System Events" to keystroke "1" using {control down}</pre>
    Which will send a Ctrl-1 and switch to space 1.
    An alternative, which may be even better, is to activate the application you want to be frontmost:
    <pre class=command>tell application "Microsoft Word" to activate</pre>
    This should activate the application and switch to that application's space.

  • Beginner question about NetBeans

    I am new to java, which is why I am posting on this forum. I have been messing around with the NetBeans IDE and have made a couple GUI's now. First question is how do I have the window change. For example, if the application opened up and it showed a menu with a couple different buttons you could click to do different things, how would I make it so when you clicked a button the window changed into what was supposed to be on the screen next. Say one of the options was "Calculator", how would I make the window become a calculator after it was clicked? Do I make a new JFrame with the all the calculator stuff? If so, how do I "connect" the two of them? I want it to appear in the same window, not open a new one. My second question was how do I make it so my applications can be run from the desktop without having to build from within NetBeans?
    It was a little difficult to explain what I was asking, but any help is appreciated. I am assuming that what I'm trying to do is pretty basic, sorry I'm newbie.

    mdewaddict11 wrote:
    I am new to java, which is why I am posting on this forum. Let me try to be the first to welcome you to our little corner of the Java world.
    I have been messing around with the NetBeans IDE and have made a couple GUI's now. First question is how do I have the window change. For example, if the application opened up and it showed a menu with a couple different buttons you could click to do different things, how would I make it so when you clicked a button the window changed into what was supposed to be on the screen next. Say one of the options was "Calculator", how would I make the window become a calculator after it was clicked? Do I make a new JFrame with the all the calculator stuff? If so, how do I "connect" the two of them? I want it to appear in the same window, not open a new one. My second question was how do I make it so my applications can be run from the desktop without having to build from within NetBeans?I have a feeling that you are searching for a way to change your GUI "view" on some action, and if so, there are many solutions to do this. Probably one of the more common ways is to use a CardLayout to swap JPanels, but other options including popping up a JDialog, using JTabbedPanes, hiding a JFrame and showing another, ... exist.
    It was a little difficult to explain what I was asking, but any help is appreciated. I am assuming that what I'm trying to do is pretty basic, sorry I'm newbie.You're doing fine, relax.
    Now I need to get on my soap box and discuss another issue that you've not asked about. First off, Java is not like Visual Basic, C#, or other .NET languages (assuming you may be familiar with the MS Visual Studio) in that our programs are not first and foremost GUI's with code tacked on. There's a lot to learn when starting to code in Java, enough that adding Java GUI coding may be a bit overwhelming at the start. I'm going to recommend that you put the GUI stuff to the side for a bit, study the basics of Java, and then later when you're comfortable with the rudiments of Java, start learning Swing coding but without NetBeans code generation. If you learn it through the Sun tutorials, Swing will make a whole lot more sense and even using NetBeans to generate some Swing code will be easier for you. Regardless what you do, best of luck!
    Edited by: Encephalopathic on Jul 7, 2010 2:15 PM

  • Beginner question about CommandListener

    Hi all! I am programming my first cell phone application. Here´s my problem: I have a sequence of menus and all of them use CommandListener to figure out what should be done next. I will put part of my code
    public class Planilha extends MIDlet implements CommandListener {
    private List mList, mListSec, mListMes;
    Form formPerfil,formPagto,fromVis;
    //Here I have declared Commands, etc
    /Construtor
    public Planilha(){
              //THIS IS MY MAIN PANEL. FROM HERE, I HAVE 3 PATHS(3 ANOTHER PANELS)
              mList = new List("Expenses", List.IMPLICIT, stringElements, imageElements);//stringElements and imageElements are initialized
            //Commands are initialized
            mList.addCommand(cFirst);
            mList.addCommand(cSec);
            mList.addCommand(cThird);
           mList.setCommandListener(this);
           //THIS IS ONE OPTION THAT CAN BE ACTIVATED AFTER PANEL mList
           formPerfil = new Form("Budget");
            //Commands are initilized
                formPerfil.addCommand(cBack);
         formPerfil.addCommand(cSave);
         formPerfil.setCommandListener(this);
           //THIS IS A SECOND OPTION THAT CAN BE ACTIVATED AFTER PANEL mList
           mListSec = new List("Expenses", List.IMPLICIT, stringElements1, imageElements1);
           mListSec.addCommand(cBack);
           mListSec.addCommand(cExpense);
           mListSec.setCommandListener(this);
           //STILL GOT A THIRD OPTION BUT I WILL LEFT IT OUT
    public void startApp() {
        Display.getDisplay(this).setCurrent(mList);
    //HERE IS MY PROBLEM. ONLY FIRST OPTION IS BEING REACHED
    public void commandAction(Command c, Displayable s) {
        if (c == cFirst || c == List.SELECT_COMMAND) {
          //HERE I CALL THE FIRST POSSIBLE PATH
             Display.getDisplay(this).setCurrent(formPerfil);
        else if(c == cSec){
             //HERE I CALL THE SECOND OPTION
             Display.getDisplay(this).setCurrent(mListSec);
        else if(c == cThird){
             //A THIRD OPTION FROM PANEL mList
            Display.getDisplay(this).setCurrent(mListMes);
        else if(c == cExpense){
        //HERE A COMMAND COMMING FROM THE SECOND PANEL. ITS NEVER CALLED
         //ANOTHER COMMAND THAT DOES NOT COME FROM MAIN PANEL (mList)
        //IS THIS CORRECT TO PUT THIS COMMAND IN THE SAME COMMAND LISTENER?
        else if(c == cSave){ }So my problem is: even if I choose option 2 or 3 from mList, only the first option is selected. In other words, only formPerfil is being called.
    My second question is that I have some command listeners on the other panels but mList. Is this correct to add in the same method CommandAction? For example, I added "cSave" and "cExpense". Is there any problem with it?
    Thx in advance

    ThomYork wrote:
    ...So my problem is: even if I choose option 2 or 3 from mList, only the first option is selected. In other words, only formPerfil is being called.
    My second question is that I have some command listeners on the other panels but mList. Is this correct to add in the same method CommandAction? For example, I added "cSave" and "cExpense". Is there any problem with it?I can't point exactly but the way how you "mix" select command with cFirst, cSec and cThird just doesn't feel right.
    To handle selection in implicit list, neither of added commands is necessary. It is sufficient to just detect select command in the list and then use [getSelectedIndex() method|http://java.sun.com/javame/reference/apis/jsr118/javax/microedition/lcdui/List.html#getSelectedIndex()|javadoc] to figure which item was selected.
    Another thing that looks suspicious is that commandAction does not check the displayable parameter ('s'). Say, without checking this paramenter, one will never know if SELECT_COMMAND comes from mList or mListSec.
    Regarding your questions on handling "cSave" and "cExpense" commands in mList's comandAction, the way you do it is legal.
    By the way, it is equally legal to do it the other way - ie provide dedicated listener for formPerfil and handle its commands in that dedicated listener. It is a matter of your personal preference, which way to choose. Myself, I more often use dedicated listeners, about like like this:
    // assuming that list is implicit and that no commands are added
    //   to mList, ie only select command is available by default...
    mList.setCommandListener (new CommandListener() {
      public void commandAction(Command c, Displayable s) {
        // here,
        //  - I don't check c since I expect only SELECT_COMMAND
        //  - I don't check s since I expect only mList
        switch (mList.getSelectedIndex()) {
          // do things depending on list selection
    });

  • Another beginner question about targeting functions

    I've read what I thought was an excellent thread about scope in EA, but I'm still not getting some of the basics (btw the thread was http://forums.adobe.com/message/5287753#5287753).
    I have "slides" in the symbol library and in the main composition compositionReady script I've set up a generic script for playing back sound. That script works fine when I bind it within the compositionReady script to a symbol and click, so I know the funciton itself is fine. My question, I'm programmatically loading the slides from the library as I go along and want to use the generic function I created in the compositionReady script, but I can't seem to create the proper syntax to call the script. Here's some that I have tried. What is the correct syntax? The script is on frame inside the slide symbol.
    //sym.getComposition().getStage().playSound();
    //sym.getComposition().playSound();
    //Edge.getComposition("CER_1").playSound();

    Thanks for having a look. Yea, it's getting to the script fine but it doesn't like the syntax. Console always indicates javascript error, which is what happens when Edge throws an exception because it doesn't know what to do. The article that Elaine posted on above gives me the sense that it might be best to change the function to a variable, then it would be in scope to call but I have parameters I'd like to pass with it and I don't think  I can pass a parameter with to a variabalized (word?) function. I know it's just me moving from ActionScript to Edge JavaScript and scope. Whereas I could always find a homebase in ActionScript with the stage, it seems that the stage in Edge is just another symbol and calling a function within the stage is never getting there. Elaine hints at putting outside the stage closure and it would be accessible, which, of course, has led me to start readying JavaScript books and learning more about scope etc. It seems like that is life as a developer. I  dont' get that, oh, better take a day or two to  understand that concept, oh, that function works now, next problem. ;-)

  • Question about forum use regarding an error I am receiving

    I am looking for an answer to the proper process I should follow when running into issues with Azure Storage. As I don't want to annoy folks with tossing questions into this forum regarding errors I'm running into that are more usage related instead
    of technical in scope.
    For instance this morning I was attempting to view some details about a particular Storage item and was greeted with the following screen in the Azure Portal.
    I was able to accomplish what I needed to (downloading some files out of this particular storage account) within the Manage.WindowsAzure.com site without issue. So this seems to be connected to the portal itself and it's interactions with Storage
    (perhaps). I now have access to the above Storage item via the portal site, but for about 15 minutes I continually received the message above. Even after logging out, clearning cache, trying different browsers etc.
    So my question(s) are; Are these forums the proper place to be posting information about issues we run into? If not what is the preferred method for reporting items like those above and getting help with remediating them in a timely manner?
    I'm happy to put them here, just want to make sure there isn't a better place as I'm new to this.

    Hi Darren,
    You can post your issue with Azure Storage in here. Just make sure that you do not give out any PII data.
    Also, the above portal which you are viewing is still in preview. You may use "manage.windowsazure.com" portal to access your resource.
    Regards,
    Manu

  • Beginner question about granting access rights

    Hi, am a total beginner, just a very simple question. I have created a number of tables with my admin account that I would like user accounts to be able to see (they should only be allowed to see these few tables)
    I then created a user account called EDWARD with just the basic connect access right (I don't want them to be able to create/delete tables etc, just to be able to query the tables I have created above and to add rows to these tables)
    Google searching has lead me to the grant statement, so I tried this from the admin account:
    grant select, update, insert on CUSTOMERS to EDWARD;
    This statement executes correctly but when I log in the EDWARD account I cannot do any of these things, instead I get the error: ORA-00942: table or view does not exist
    Any ideas?
    Thanks

    >>Would it be better to create a separate account called 'ADMIN' perhaps that I use for
    my application admin and then grant them appropriate access to confidential tables
    rather than logging them in as the SYSTEM?
    Yes, this is what I would advise, since SYSTEM (like SYS and several others...) is not user like other, it's better do not work and create object under this one. Keep it for Oracle administration usage only, not for application administration, create your own schema for this.
    Nicolas.

  • Beginner question about prepared statements...PLEASE help! :-)

    First let me say thanks for the assistance. This is probably really easy to do, but I'm new to JSP and can't seem to figure it out.
    I want to dynamically populate a table that shows whether a particular person has an appointment at a given date and time with a user. To do this, I want to query the MySQL database for the lastname of the person with the appointment that occurs with the user at the year, month, date, and time, in question.
    THE CODE BELOW DOESN'T WORK (obviously) BUT SOMEWHAT ILLUSTRATES WHAT I'M TRYING TO ACCOMPLISH:
    <%
    Driver DriverTestRecordSet = (Driver)Class.forName(MM_website_DRIVER).newInstance();
    Connection ConnTestRecordSet = DriverManager.getConnection(MM_website_STRING,MM_website_USERNAME,MM_website_PASSWORD);
    PreparedStatement StatementTestRecordSet = ConnTestRecordSet.prepareStatement("SELECT lastname FROM appts_pid1 WHERE user_id='<%=(((Recordset1_data = Recordset1.getObject(user_id))==null || Recordset1.wasNull())?"":Recordset1_data)%>' AND year='<%= yy %>' AND month='<%= months[mm] %>' AND date='<%= dates[dd] %>' AND appttime='16:15:00'");
    ResultSet TestRecordSet = StatementTestRecordSet.executeQuery();
    boolean TestRecordSet_isEmpty = !TestRecordSet.next();
    boolean TestRecordSet_hasData = !TestRecordSet_isEmpty;
    Object TestRecordSet_data;
    int TestRecordSet_numRows = 0;
    %>
    The real problem comes in the prepared statement portion. If I build the prepared statement with static values like below, EVERYTHING WORKS GREAT:
    PreparedStatement StatementTestRecordSet = ConnTestRecordSet.prepareStatement("SELECT lastname FROM appts_pid1 WHERE user_id='1' AND year='2002' AND month='October' AND date='31' AND appttime='16:15:00'");
    But when I try to use dynamic values, everything falls apart. It's not that the values aren't defined, I use the user_id, year <%= yy %>, month <%= months[mm] %>, etc. elsewhere on the page with no problems. It's just that I can't figure out how to use these dynamic values within the prepared statement.
    Thanks for reading this far and thanks in advance for the help!!!!

    Hi PhineasGage
    You are little bit wrong in your
    your preparedStatement.
    Expression tag within scriptlet tag is invalid.
    Whenever you are appending the statement with
    expression tag, append it with "+" and remove
    expression tag.
    Hopefully it will work
    ThanksThanks for the response!
    I know that the expression tag within scriptlet tag is invalid. I just need a workaround for what I want to do.
    I'm unclear what you mean by "Whenever you are appending the statement with expression tag, append it with a "+" and remove expression tag".
    Could you give an example?
    In the meantime, I've been trying to digest the docs on prepared statements and have changed the code to look like:
    PreparedStatement StatementTestRecordSet = ConnTestRecordSet.prepareStatement("SELECT lastname FROM appts_pid1 WHERE user_id= ? AND year= ? AND month= ? AND date= ? AND appttime='13:15:00'");
    StatementTestRecordSet.setInt(1,1);
    StatementTestRecordSet.setInt(2,2002);
    StatementTestRecordSet.setString(3,"October");
    StatementTestRecordSet.setInt(4,31);
    Again, WITH THE STATIC VALUES, THIS WORKS FINE...but when I try to use expressions or variables like below, things don't work:
    StatementTestRecordSet.setInt(2,<%= yy %>);
    Obviously, I'm doing something wrong, but there has to be a way to use variables within the prepared statement.
    ALSO, the values are being passed to this page via URL in the form:
    samplepage?user_id=1&year=2002&month=October&date=31
    Based upon this information, is there another way (outside of stored procedures in the db) to do what I want to do? I'm open to ideas.

  • Question about planning using serialization point in transaction S2L

    Hello colleagues!
    Iu2019ve try to implement the supply of production line (supply area) just in sequence. R/3 received dependent requirements and backflushes of serialization point behind target Supply Area from APO.
    Then I got a few dependent demands with indicator u201CXu201D in u201Crequirement is serializedu201D field in transaction S2L. I started the automatic planning  but replenishment proposal was created to cover all dependent demands. from the selection horizon  (with ind. u201CXu201D and without ). But I need to cover dep. demands only with ind. X in u201Crequirement is serializedu201D field. I looked through SAP help and SPRO but I couldnu2019t find helpful information.
    Please, help me to find solution.
    Thanks.
    Ivan.

    Thanks for the feedback. I followed the link but I guess I just don't understand about the extended file system. Is HFS+ the same as Mac OS extended (Journaled).
    Basically, yes.
    I understand that I guess that case sensitive means just that, but what is the difference between journaled and extended? Does it mena that a log file is only saved for the journaled system?
    When a filesystem is journaled, all changes to it are written to a log.
    Do most people just format as Extended without journaled? I am about to reformat my iMac and install Leopard on there and I was wondering if I should format using the extended or the extended with journal?
    Using the journaling option slightly decreases the amount of space on the drive usable by you and increases the chance of recovering data from the drive if a problem occurred. If you want, you can use the Disk Utility to turn it on and off without erasing the drive again.
    (25598)

  • Qosmio G40-10Z: Question about energy use in sleepmode

    When I turn my new Qosmio G40-10Z in sleeping mode, with full battery (and off the AC power), I can't start the computer next day. I can only start it up after connecting it to AC power. I get a message windows Vista wasn't closed properly and I am asked to start in normal way or safe mode.
    After starting the battery indicates only 2% power. So, what is using power in sleeping mode? Why isn't the sleep mode not transferred to hibernation state when the battery is almost empty?
    (New notebook, only vista and office installed and only television antenna is connected)

    Hello guys
    At first I just want to write a little bit about theory. Microsoft has implemented standby/Hibernation mode to offer PC users comfortable OS usage and make switch ON/OFF time much shorter.
    According to the definition standby mode should be used for short time (launch, meeting and if you must leave the notebook for few hours). Hibernation mode should be used if you leave the notebook over the night or maybe day or two. In standby mode all data will be written in RAM and to keep them notebook needs power. In Hibernation mode all data will be saved on to HDD and notebook can be switched OFF. In hibernation mode the notebook does not need permanent power supply.
    For me it is really strange that you use standby mode with battery and almost 20 hours. With this I do not want to say that described battery issue is normal but for 20 hours it is logic to use hibernation mode.
    Back to battery issue: only 20 hours under standby mode is really to short. I have tested it with my Tecra and after 5 days I was able to switch ON notebook as usual (only battery power supply.
    In your case I see only two explanations:
    1. Somehow notebook can not switch into standby mode properly and stays running (I do not believe this because you can see if something like this happen)
    2. The battery is defective
    What you should do is to contact Authorized service partner in your country. Make a call and explain the situation. Maybe you will get new battery or they should test it using your battery.
    Sorry for this long posting. I wish you luck and hope you will clarify this issue very soon.
    Bye and good luck!

  • Question about Parallels using Bootcamp partition

    I was about to install XP on bootcamp but i would mainly be using parallels to run XP from the bootcamp partition. What i was wondering is that if i was to make any changes to xp like install a software and create a new folder through parallels, would it reflect on the actual bootcamp partition when i load into the actual XP partition using bootcamp? Basically, do the changes made to windows using parallels carry over to the bootcamp partition given you are using the bootcamp partition on parallels?
    Thanks

    Thanks a lot. While i am at it, if i use the bootcamp partition with Parallels, i cannot suspend the VM right?
    Parallels will behave the same, whether it has its own copy of Windows, or is using that on the Boot Camp partition.
    The only difference is backup. If you use Parallels with Windows in a disk image file (Preferably a sparse bundle), Windows can be backed up with Time Machine. If Windows is on its own partition, Time Machine can't handle it.

  • Beginner Question about Substitution in 0kem

    Good morning everyone,
    I'm new to ABAP and have been assigned a project with using a substitution for the Profit Center. I've been looking around and can't seem to find an answer to a basic question - does a substitution only work if a sales order is created in VA01 or does it also activate when a sales order is modified? I can't seem to activate the substitution rule even though I have gone through all the correct steps to create one. I'm wondering if it's because the test data only has me modify a previously created profit center when I need to create a new one? Sorry if this question has been asked before but I couldn't find it with all my googling.

    Hi,
    It only works at the time of sale order creation.
    Regards,
    Mukthar

  • Beginner question about installing 1.5 on new machine

    I signed up for a Creative Cloud account when Edge Animate 1.0 was released and installed it on my laptop.  I am finally going to set aside some time to learn the software, but I have a better, new laptop now.
    It was my understanding at the time, and I have read about this recently too, that Adobe was being gracious enough to offer versions 1.0 and 1.5 indefinitely for free.
    My problem is that on my new laptop I can't install the software.  I found links for the Adobe Application Manager and people saying you could get it through there.  But when I open AAM there is no option to download the software.  I also installed the Creative Cloud software, but can't download 1.5 from there either, only the 30 day trial version (not what I was looking for).
    I was hoping to get the one that will work indefinitely at version 1.5 like I had previously, on my new computer (except I actually have 1.0 on my old computer).
    Any tips?
    I apologize if this has already been covered, I searched extensively through the forums to see if there was already an answer to my question.

    Hi, Jason-
    I want to clarify that we are not offering 1.0 and 1.5 indefinitely for free; we are offering 1.x in a perpetual license for a promotional price of free.  The first statement implies that we will always offer 1.5, no matter what happens with the HTML world.  The latter means that once you download 1.x, we won't expire the version you download.  Just wanted to clarify your statement.
    Thanks,
    -Elaine

  • Quick beginner question about Applications folder

    I have a really simple basic question: Can I organize my computer's applications folder anyway I want? I don't want to move anything out of the apps folder but I do want to group my apps by a few different categories using folders. I don't see why this would be a problem but I wanted to be sure before I fouled anything up. (Time Machine will be nice).

    Create an Applications folder in your home folder and fill it with aliases to the real applications. You can organise these into sub-folders as you wish, without affecting the real applications. Moving the real applications can make updates fail. Different users can have different arrangements of applications.

Maybe you are looking for

  • Powerbook G4 mouse button won't work

    My wife has a titanium powerbook g4 and she has been having problems with the mouse button on the laptop.  You have to push it just right to get it to work, if you are lucky.  I wasn't sure if I could clean the button or if anyone has had this issue

  • HOW CAN I SPLIT STEREO AUDIO TRACKS

    I'm trying to modify one of the audio tracks but both of the tracks are locked. If I do something with one of the tracks it affects the other one so how can I split it? or separate it? is it stereo? is there any way I can do it? THANKS!!!!!!!

  • How to Remove Duplicated Rows in a Report?

    My report is diplaying several rows of the same data in each field. How do I delete the duplicated rows? For example: Name                 Salary       Date of Hire Emp1                    10              Today Emp1                    10             

  • Bridge CS4 slow in responding or not responding at all

    Hi, Recently my whenever I launch my Bridge, it's either not responding, or responding very slowly when I clicked inside the window. The menu bar on the top seems to be fine. It's when I clicked on anything below, it's not responding. I relaunched Br

  • Trunk port problem

    Dear I have problem, I need to config trunk port on SLM2048 but I can not see any options in web gui How can I do this problem my switch informations are on below Model Name  SLM2048 Hardware Version  00.03.00 Boot Version  1.0.1 Firmware Version  1.