Simple, but dumb, question

My wife wants to copy a cassette tape to her G4 laptop. Is GarageBand the right application to digitize an analog source? I looked at the Apple page on GarageBand and didn't see anything that helped.
Thanks.

You can use simpler programs than GB, but GB will do it:
http://www.bulletsandbones.com/GB/FAQPages/RecordCassette.html

Similar Messages

  • [Theory] A simple but hard question about OO programming

    I was in my first class of OO programming (4th year of computer engineering in Valencia) and the professor gave us homework.
    The homework was a simple question about OO programming (it is not about a specific language, though we are going to use Java in the practice sessions), we shall find an answer to it and discuss it in class the next day.
    The question was:
    "May classes also be objects?"
    which can be said as:
    "May classes be instances of an(other) classes?"
    I hope that you, archers, can enlighten me in this question

    tvale wrote:I believe an object is an instance of a class.
    Yup, that's true. Let's see... An object is an instance of a class, so we can have a lot of objects coming from one class.
    We can say an object is not a class because it has a state (think about a light, it has a state: on or off, but a class light is not on/off, because in a class we just describe the behavior that class should have.
    But what we're asking here is if a class can have a state. I think it may refer to static properties about the objects.

  • Simple but elusive question

    I have a master/detail form. Upon updating a row in the detail block, I need to update a table which is different from both the master and detail tables. so far the insert and delete operations are working fine (I use post_insert and post_delete), but the problem is when I try to do an update because the pre_update and post_update triggers deal with the new value for the updated row. How can I handle the situation where there is an old/new value?

    The best way to handle something on a table where you need the old and the new-values would be a database-trigger. Also for reasons of data-consistency a database-trigger would be the better solution (its always executed, not just for dml coming form a specific forms-module).
    If you still want to do it the forms-way there are two possibilities:
    Use a POST-UPDATE-trigger and get the old-values via GET_ITEM_PROPERTY('BLOCK.ITEM', DATABASE_VALUE);
    Use a PRE-UPDATE-trigger and read the data directly from the db-tables via a select.

  • Simple but necessary question

    I have noticed my computer fans running more so when the unit is hooked up to the internet WITHOUT any extra applications running (i.e. Safari)as when unpluged yet running with the same CPU demands.
    In other words:
    When I'm at work, (no internet hook up), and the computer is sitting idle but not asleep, the fans hardly kick in, yet, in the same situation, but at home HOOKED to Cable Net but still running idle, the fans kick in every once in a while.
    Is this to be expected?

    neuroanatomist
    thank you again for the prompt answer.
    As far as I can recall, I did the diagnostic you recommended with the activity monitor and nothing appeared too extensive.
    I think I will attempt it again and hopefully, either find my answer, or ask for your advice again if negative.
    Thank you
    Ralph

  • Help with a simple but crazymaking question!

    hi there, would anyone here mind looking at my test site and
    telling me what I am doing wrong?
    http://presentations.patrickmeyers.com/
    I am VERY new at anything web related, and trying to learn
    some Dreamweaver, html, and css. Basically I want ALL my content
    (which for now is just images) to stay flush left with each other
    no matter what the user does with their web browser window. But
    when I expand my web broswer window, two of my images (one of which
    is a rollover image that I need to add a hyperlink to) bump over to
    the right and up. I don't want them to do that! I want them to stay
    flush left at all times.
    I also want to center everything so that no matter what a
    person does with their browser, the page stays in the center of the
    window (i.e. the Yahoo homepage) but all the content remains left
    aligned relative to the top.
    I've tried every concievable setting in Dreamweaver I can
    think of and nothing works. The button and bottom banner still move
    over to the right and up.
    Any tips? Thank you in advance!!!!!
    p

    <p><img src="banner.jpg" width="792" height="336"
    align="left" /><a href="#"
    onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Image3','','click-button-yellow.jpg',1)"><img
    src="click-button-purple.jpg" name="Image3" width="180"
    height="46"
    hspace="16" vspace="15" border="0" align="left" id="Image3"
    /></a></p>
    <p><img src="lowerbanner.jpg" width="792"
    height="41" vspace="30"
    align="left" /></p>
    </body>
    You have two elements horizontally adjacent (the banner image
    at 792px
    width, and the anchor tag at 180px width). Their combined
    width is
    792+180+32px = 1004px (the 32px comes from the hspace="16"
    attribute). When
    the browser viewport is less than 972px wide, the anchor tag
    and its
    associated image will just drop below the banner image (since
    they are
    contained in a <p> that has no explicit width).
    Change this -
    <p><img src="banner.jpg" width="792" height="336"
    align="left" /><a href="#"
    onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Image3','','click-button-yellow.jpg',1)"><img
    src="click-button-purple.jpg" name="Image3" width="180"
    height="46"
    hspace="16" vspace="15" border="0" align="left" id="Image3"
    /></a></p>
    to this -
    <p style="width:1004px;"><img src="banner.jpg"
    width="792" height="336"
    align="left" /><a href="#"
    onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Image3','','click-button-yellow.jpg',1)"><img
    src="click-button-purple.jpg" name="Image3" width="180"
    height="46"
    hspace="16" vspace="15" border="0" align="left" id="Image3"
    /></a></p>
    and see what happens.
    > I also want to center everything so that no matter what
    a person does with
    > their browser, the page stays in the center of the
    window (i.e. the Yahoo
    > homepage) but all the content remains left aligned
    relative to the top.
    It depends on whether you are using absolute positioning on
    the page, as to
    which method might be best, but in either event, this will
    work -
    Change this -
    </head>
    to this -
    <style type="text/css">
    #wrapper { width:1004px; margin:0 auto;position:relative; }
    /* 760px will display on an 800px screen maximized browser
    window without */
    /* horizontal scrollbars. 1004px is pretty wide, and will
    display horizontal
    scrollbars on 1024 screens.*/
    </style>
    </head>
    change this -
    <body
    onload="MM_preloadImages('click-button-yellow.jpg')">
    (the ellipsis represents any other attributes that might be
    mentioned in the
    body tag, and SHOULD NOT BE INCLUDED EXPLICITLY!)
    to this -
    <body
    onload="MM_preloadImages('click-button-yellow.jpg')">
    <div id="wrapper">
    and this -
    </body>
    to this -
    <!-- /wrapper -->
    </div>
    </body>
    and see if that helps.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "patrickpmm" <[email protected]> wrote in
    message
    news:[email protected]...
    > hi there, would anyone here mind looking at my test site
    and telling me
    > what I
    > am doing wrong?
    >
    http://presentations.patrickmeyers.com/
    >
    > I am VERY new at anything web related, and trying to
    learn some
    > Dreamweaver,
    > html, and css. Basically I want ALL my content (which
    for now is just
    > images)
    > to stay flush left with each other no matter what the
    user does with their
    > web
    > browser window. But when I expand my web broswer window,
    two of my images
    > (one
    > of which is a rollover image that I need to add a
    hyperlink to) bump over
    > to
    > the right and up. I don't want them to do that! I want
    them to stay flush
    > left
    > at all times.
    >
    > I also want to center everything so that no matter what
    a person does with
    > their browser, the page stays in the center of the
    window (i.e. the Yahoo
    > homepage) but all the content remains left aligned
    relative to the top.
    >
    > I've tried every concievable setting in Dreamweaver I
    can think of and
    > nothing
    > works. The button and bottom banner still move over to
    the right and up.
    >
    > Any tips? Thank you in advance!!!!!
    > p
    >

  • Pretty simple but annoying question for newbie

    when opening form is there a way to automatically display the
    record rather than having to hit F8.
    also....
    is there a way to navigate through records using PL/SQL rather
    than using the buttons on the tool bar at the top or form
    runtime.
    thanks in advance

    This is probably in the wrong forum. ;)
    Anyway, here's my suggestions for your two queries:
    Q1) Add a WHEN-NEW-FORM-INSTANCE trigger containing the
    following statement:
    EXECUTE_QUERY ;
    Q2) Use the up and down arrow keys - they navigate between the
    previous and next records respectively.
    HTH

  • Concatenate " Simple but tricky question "

    Hey guys
    How are u, this looked like easy problem. However, I tried so many things. I want to add a space in front of character. This is 2-character lengths field.
    When I was executing this command, it is not adding up space.
    If I am something wrong correct me
    Here is the code
    DATA:  i type i ,ONE(1) VALUE ' ',FINAL(2) ,TWO(1).
    i = sTRLEN( t_record-trfgr ). “ first it shows 1 for H
    if i LE '1'.
    concatenate  TWO ONE  '.' into final.
    CLEAR:I.
    i = sTRLEN( final ). “ its still say 1
    Thanks

    Saquib,
      <b>Concatenate   '    '
                    t_record-trfgr
             into
             final.</b>
      Following should also work:
    <b> Concatenate  
             space
             t_record-trfgr
             into
             final.</b>
    Thanks
    Kam
    Note: Allot points for all worthful postings

  • Simple but drastic question...resizing windows

    I normally work with a Macbook connected to a 23" Cine display. Pulled the Macbook off the display, opened Photoshop, and the bottom of all the action panels (actions, layers, channels, etc...) are below the lower edge of the screen and there appears to be no way to recover them.
    The program is essentially useless until I can get connected to a big display, simply to click on the bottom of these panels.
    What's the secret to resizing these?

    This is in the System Preferences of the Mac in OSX Snow Leopard and above (perhaps previous versions as well)

  • Simple but frustrating question

    When I pressed f6, it used to create a keyframe duplicate of
    the most recent keyframe on that layer. For some reason, today I
    got on and f6 is making blank keyframes! even when I go to
    modify>timeline>convert to keyframes --- still blank! What
    happened and how do I fix it?

    Flash will create a blank keyframe if there is nothing on the
    layer where you are creating the keyframe (i.e. You press F6 when
    you have a 'white' frame selected).
    If you press F6 on a frame that is shaded grey (a frame that
    has content), the content of the frame where you have inserted a
    keyframe does not change, it simply converts the frame to a
    keyframe. I hope that makes sense - and that it is helpful.

  • Simple (probably dumb) question about Mail --

    After I read a message, how do I go the next message without closing the current message box and going back to Inbox? That is, is it possible to read a message then go to the next one, then the next one, etc. without going back to the Inbox?
    Thanks for any help.
    Sunil

    you can read a message from the message list, by reading in the preview pane. if you do not have the preview pane set on your main window, go to the bottom of the window, you will notice a line with a dot at the middle, drag that dot to the middle of the window or a little higher and drop it. you should now have your main window divided in two, with the upper part showing the message list, and the lower part showing the text of the email you have selected in the message list.
    hope this helps

  • My ipad mail is synced to my iMac mail account. On iPad, I can only see my inbox and sent messages. I can't see any of the folders I have created on my iMac. How do I do that? Probably a dumb question, but I know there's a lot of smart people out there!

    My iPad mail is synced to my private email account, which I organise on my iMac. On iPad, I can only see inbox and sent messages folders, not any of the other folders in my email account I have created on my iMac. How do I get iPad to show my other folders? Probably a dumb question, but I know there's a lot of smart people out there.

    If you select a mailbox, you should get an Edit button (easier to see in landscape mode). Clicking the button will provide you with check circles for the messages. You also get Delete and Move buttons at the bottom. Check the messages you want to move and then navigate to the mailbox you want to drop them into. I think as long as you can navigate to a mailbox you can move the messages to it.
    In the Mac Mail application and probably Outlook on the Windows side, you also setup rules to move messages to specific mailboxes. If the mailboxes are stored on the server, then you can have the sorting done on the server and they should appear that way on the iPad. If your later messages do not show up, you may need to have the iPad app pulled down more messages until they are all showing.

  • Where do i find the reference number for my preorder? and yes i no this is prob a dumb question but i cant find it anywhere......

    Where do i find the reference number for my preorder? and yes i no this is prob a dumb question but i cant find it anywhere......

        Hi droidboy52999,
    Your email won't have the same confirmation number as it was ordered over the phone. You will need the last name used for the order, the location code (this ends in 01) and an order number (five to six digit number). Please keep us posted if you need further assistance with this.
    Thank you,
    MariaC_VZW
    Please follow us on Twitter @VZWSupport

  • This is probably a dumb question, but I can't find an answer. How do I make the text on my calendar larger so I can actually read it when I print it out?

    This is probably a dumb question, but I can't find an answer. How do I make the text on my calendar larger so I can actually read it when I print it out? I am using a MacBook.

    Press "Command P" and when the Print dialogue box comes up, towards the bottom there is an option allowing you to choose the text size, i.e: small, med, large.
    Hope this helps,
    NEIL

  • Dumb question but How do you know what generation iPad you have?

    Dumb question but how do you know what generation iPad you have?  I got mine as a gift on Xmas day 2012 but don't know how to find out what version/generation it is.  Can someone help me find that info?  I have looked within settings &amp; elsewhere and I cannot find it.  Thanks in advance!

    Append the last three characters of its serial number to http://www.everymac.com/ultimate-mac-lookup/?search_keywords= and load the page.
    (83797)

  • Simple, funny but annoying question, putting a pixel

    Maybe this could be simple, funny but annoying question.
    How do you put a pixel or draw a pixel?
    Is there a method to draw a pixel directly on screen in j2SDK API?

    This is a very open ended question, do you want to draw a pixel in an image or just draw a shape on the screen?
    If you want to edit single pixels at a time then the best option is to create a BufferedImage and use the WritableRaster to edit the pixels you want by using setPixel().
    Something like the following:
    BufferedImage img = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
    WritableRaster raster = img.getRaseter();
    raster.setPixel(x_coord, y_coord, new int[]{R_val, G_val, B_val});This image can then be displayed by putting it in a JLabel (there are many other techniques but I find this the easiest method).
    JLabel l = new JLabel(new ImageIcon(img));
    JFrame jf = new JFrame();
    jf.setContentPane(l);
    jf.pack();Alternatively, you can draw shapes by using Graphics or Graphics2D objects
    e.g.
    public class MyPanel extends JPanel
      public void paintComponent(Graphics2D g)
         super.paintComponent(g);
         g.drawLine(x1,y1,x2,y2);
    }Hope this helps,
    Stef

Maybe you are looking for

  • Mac Mini Printer Compatiblity Problems in Firefox and Safari

    Can anyone recommend a printer brand that will allow me to print the content from Safari or Firefox? What a pain in the butt this is. I can't get either to print selected content off the Web, unless I save it as another document, and print it from th

  • Linux: Preferred method to link / locate libclnt(sh)?

    I am working with a lot of cross-platform software (Linux + Windows). Part of the software uses OCI, but up to now only on Windows. Now I complied for Linux, and after not much work, it is operating. But I am not sure whether I am on the right trail

  • System performance slow - vanishing wallpaper

    My G5 seems to be experiencing a performance slowdown but it passes any diagnostic test that I perform. Lately it has been misbehaving when asked to handle graphicly complex applications such as iPhoto and Photoshop. It also "forgets" my wallpaper an

  • HR ALE : Error in Idoc Status table

    Hi, We are transporting HR Master data from one client to another (message type HRMD_A) and extension ZRMD_A06. For this purpose we are using the PFAL transaction. So far, we are able to send employee data to the receiving client, all Pnnnn tables al

  • 1 RH Project, 2 Users - Best Practices

    Hi, I've been the sole writer at our company for 6+ years. I finally have someone to help me; however, this has introduced a new challenge. We will *both* be working on the same RH project, and we will be using VSS for source control. I'm not sure ho