CD burning problem on MacBook - What am I doing wrong?

Hello,
I've finally made the jump from PC to Mac but so far I seem to be falling over on some very basic steps! I'm trying to burn some photos onto a CD, which really should be very simple (I copied them from an external drive, not through iPhoto). If I've understood correctly I just need to copy the files to a burn folder and then click the burn button.
I've tried copying the files to a burn folder but when I click 'Burn' it doesn't appear to recognise that I have a blank CD in the drive. If I look in Disk Utility it shows that there is a disk there, but under 'Info' it shows:
Locked: YES
Writable: NO
If I use Disk Utility to create the image and then burn it, this seems to work and I can read the photos back off the disk. But it seems like there should be a much easier way. Can anyone point me in the right direction here please? As I'm sure I'm probably missing a very simple step.
Also, I have discs labelled as 700MB/80Min. Windows XP seems to be able to burn 702MB onto these, but OS X only 660MB. Is this normal?
many thanks
Mark

Hi Mark,
Check System Preferences > CDs & DVDs. What does it say next to "When you insert a blank CD"? You may have allocated that blank CD to another application, like iTunes, based on this setting.
If you always do the same thing with blank optical media, this setting is convenient. But if you do different things at different times, the two questions about blank meda should be set to "ask what to do".
Good luck,
John

Similar Messages

  • Resource problem...what am I doing wrong?

    I have a few jpg images in a jar file. They are T0.jpg, T1.jpg, and t2.jpg.
    They are located under the directory
    C:\applettest\com\mycompany\myapplet
    From inside of the applettest directory I do:
    jar cvf im1.jar *.*
    That creates a jar with the images in it. All well and good.
    In my JApplet (called OraApplet) I have a package statement that looks like this:
    package com.mycompany.myapplet
    Inside the OraApplet I do this:
    InputStream ins = this.getClass().getResourceAsStream("T0.jpg");
    When I do that, ins is null.
    I have the im1.jar put into the classpath correctly and EVERYTHING worked in another applet I had that was IDENTICAL except it did not have the package statment, and the images were in the top (applettest) directory. In other words, when I first jarred up the images, they were not under com\mycompany\myapplet.
    My HTML file that runs this thing looks like this:
    <!DOCTYPE HTML <body>
         <CENTER>
              Orametrix 2D image viewer...phase 0.001
              <p>
              <APPLET CODEBASE="http://localhost:8080/oraapplet/applets
    "CODE="com.mycompany.myapplet.OraApplet.class" archive="im1.jar" width=350 height=350>
                   <param name="imagesource" value="im1.jar">
                   <param name="imagenames" value="T0.jpg,T1.jpg,T2.jpg,T3.jpg,T4.jpg">
                   <param name="cycles" value="10">
                   <param name="pause" value="200">
                   <param name="imagesizes" value="350x350,350x350,350x350,450x350,450x350">
              </APPLET>
              </p>
         </CENTER>
    </BODY>
    </html>
    What in the world am I doing wrong?
    Should my jar file contain the com.mycompany.myapplet structure?
    Please help me out here. This is driving me nuts as it worked just fine before I added the package statment.

    Got it.
    For some strange reason, when the package statement wasn't there, the capitalization of the extention (.jpg, .JPG) didn't matter, but as soon as the package statement was added, then suddenly it mattered!
    So, I changed the extension to be all lower case and it worked.

  • Cache problem question. What am I doing wrong?

    index.html page has ENTER button that leads to content.html.
    Content.html holds > content.swf.  I will be updating the content.swf file regularly so want content.html to always display latest content.swf file.
    Btw content.html is just a blank page whose only purpose is to hold content.swf.
    From another thread I got the following code. This apparently should always load latest content.swf. No?
    <param name="movie" value="master.swf?blarg="+new Date().getTime());"/>
    and also in the <embed.....
    Adninjastrator
    I tried it but I did not succeed. Could you see if I am applying it correctly? The code on content.html page for loading content.swf looks like this-
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="content" height="768" width="930" align="middle">
    <param name="movie" value="content.swf?blarg="+new Date().getTime());"/>
    <param name="quality" value="best">
    <param name="bgcolor" value="#333333">
    <param name="play" value="true">
    <param name="loop" value="true">
    <param name="wmode" value="window">
    <param name="scale" value="noscale">
    <param name="menu" value="false">
    <param name="devicefont" value="false">
    <param name="salign" value="">
    <param name="allowScriptAccess" value="sameDomain">
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="content.swf?blarg="+new Date().getTime()); " height="768" width="930">
    <param name="movie" value="content.swf?blarg="+new Date().getTime());"/>
    <param name="quality" value="best">
    <param name="bgcolor" value="#333333">
    <param name="play" value="true">
    <param name="loop" value="true">
    <param name="wmode" value="window">
    <param name="scale" value="noscale">
    <param name="menu" value="false">
    <param name="devicefont" value="false">
    <param name="salign" value="">
    <param name="allowScriptAccess" value="sameDomain">
    <!--<![endif]-->
    <a href="http://www.adobe.com/go/getflash">
    <img src="content_files/get_flash_player.gif" alt="Get Adobe Flash player">
    </a>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]-->
    </object>

    YESSSSSSSSSSSSSS! Got it working with bit of extra Googling! It's updating 100% of the time on all browsers :-) Takes the latest content.swf from the server like a champion.
    I put a myscript.php file with the following code-
    <?php
    header('Content-type: application/x-shockwave-flash');
    header('Expires: Thu, 01 Jan 1970 00:00:00 GMT, -1');
    header('Cache-Control: no-cache, no-store, must-revalidate');
    header('Pragma: no-cache');
    echo file_get_contents('content.swf');
    ?>
    Then my content.html code to load content.swf looks like this-
        <body>
            <div id="flashContent">
                <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="content" height="768" width="930" align="middle">
                    <param name="movie" value="myscript.php">
                    <param name="quality" value="best">
                    <param name="bgcolor" value="#333333">
                    <param name="play" value="true">
                    <param name="loop" value="true">
                    <param name="wmode" value="window">
                    <param name="scale" value="noscale">
                    <param name="menu" value="false">
                    <param name="devicefont" value="false">
                    <param name="salign" value="">
                    <param name="allowScriptAccess" value="sameDomain">
                    <!--[if !IE]>-->
                    <object type="application/x-shockwave-flash" data="content.swf" height="768" width="930">
                        <param name="movie" value="myscript.php">
                        <param name="quality" value="best">
                        <param name="bgcolor" value="#333333">
                        <param name="play" value="true">
                        <param name="loop" value="true">
                        <param name="wmode" value="window">
                        <param name="scale" value="noscale">
                        <param name="menu" value="false">
                        <param name="devicefont" value="false">
                        <param name="salign" value="">
                        <param name="allowScriptAccess" value="sameDomain">
                    <!--<![endif]-->
                        <a href="http://www.adobe.com/go/getflash">
                            <img src="get_flash_player.gif" alt="Get Adobe Flash player">
                        </a>
                    <!--[if !IE]>-->
                    </object>
                    <!--<![endif]-->
                </object>
            </div>
    </body></html>
    I HAVE A SIDE QUESTION?
    I just noticed my code (that was generated originally by Flash CS5.5 publish setting) does not have any
    <embed src=
    code tag?
    Why is that and is my above code good enough? Also why do I have simialr code twice? The second one starting with <!--[if !IE]>-->

  • I bought an HDTV cable to connect my MacBook Pro to my Sony TV via HDMI so I could watch videos from my computer on my TV.  My TV then shows my basic computer background but the videos won't play.  What am I doing wrong?

    I bought an HDTV cable to connect my MacBook Pro to my Sony TV via HDML.  The TV recognizes my computer; I see my basic computer screen on the TV. I tried to watch videos on my TV but got nothing. (tried via my facebook vidoes and Youtube.  What am I doing wrong?

    I've got a similar (but different!) problem: I have a MacBookPro3,1 running Mac OS X 10.6.8. I want to connect to my HD TV using a HDMI to DVI cable but the MBP cannot detect the TV display. What's the solution? Is this a bug in Mac OS X 10.6.8 ? Any ideas what I can do to make things work with the HDMI to DVI cable. (N.B.: I have separate audio cable running from the MBP to amplified speakers for the sound side of things. It’s the video that’s the problem!)

  • I transferred photos from my camera to my computer and created a burn folder.  I recorded the burn folder on a DVD but it will not play on my DVD player.  What am I doing wrong?

    I transferred photos from my camera to  burn folder on my macbook Pro.  Made a DVD from the burn folder but it will not play on my DVD player.  What am I doing wrong?

    How did you do this burn? Did you use a program like iDVD?  A DVD player requires that the data on the DVD is recorded in the proper format: MPEG-2.  A program like iDVD will do this.  There are other programs available that can do the proper coding (Roxio 'Toast' for example), but iDVD has the most features and is easy to use.  It is no longer available from Apple, but if you search on Amazon, you can find 'iLife 11', a suite of programs including iDVD.  It will function properly on Apple's current operating system, but it cannot make a High-Definition (Blue-Ray) presentation.  It is Standard Definition only, as are all regular DVD's. One good way to present photos on a TV is to make a slidesow in iPhoto, then export that slideshow to iDVD, where it will be properly formatted for a DVD player.  Or, iDVD can make its own slideshow of up to 99 photos.  HTH.
    Frank

  • I'm burning dvd's that won't play on a regular dvd player.  What am I doing wrong?  Are there some simple things to check to figure this out?  (Sorry, I know this has been asked many times)

    I'm burning dvd's that won't play on a regular dvd player.  What am I doing wrong?  They play fine on computers but not on dvd players.  Are there some simple things to check to figure this out?  (Sorry, I know this has been asked many times).  Created in DVD studio pro.

    Hi
    Just my thoughts to add to the excellent answers above.
    • BRAND of DVD used - Matters when doing Video-DVDs
    Memorex, NoName etc cheap brands usually do NOT work
    I only Use Verbatim (more organic dye in these)
    • Type of DVD - matters
    - DVD+/RW - usually results in problems
    - DL-DVDs are more problematic than SL-DVDs
    - DVD+R are a more modern sort - BUT PLAYS BADLY or not at all on older DVD-players
    I only use DVD-R
    • BURN SPEED - matters
    - Best in iDVD app - IS NOT BEST at all but results in lot's of Burn Errors = Doesn't play well or at all
    I set this down to x2 or x4 max.
    Yours Bengt W

  • Burning a DVD  what am I doing wrong

    When trying to burn a dvd I am getting the following message... "There was an error during rendering/encoding of the menus/slideshows. The burning process has been canceled" What am I doing wrong???

    Hi
    *Not knowing the origin to Your problem - General approach when in trouble is as follows:*
    • Free space on internal (start-up) hard disk if it is less than 10Gb should rather have 25Gb
    • Hard disk is untidy: Repair Permissions, Repair Hard disk (Apple Disc Util tool)
    • Delete iDVD pref file - or rather start a new user/account - log into this and re-try
    • Program miss-match: iDVD 5.0.2, Mac OS X.4.11 AND QuickTime 7.4.5 - is OK - DON’T work under Leopard
    • Program miss-match: iDVD 6.0.4, Mac OS X.4.11 AND QuickTime 7.4.5 - is OK (might work under Leopard)
    • Program miss-match: iDVD’08 v. 7.0.1, Mac OS X.4.11 AND QuickTime 7.4.5 - is OK (might work under Leopard)
    • iDVD (08) v7 Locate theme folder. Move out iDVD1, iDVD 2 and eventually iDVD4 folders to desktop - re-try
    iDVD 6.0.4 and iDVD 7.0.1 are compatible with Mac OS X 10.5 Leopard
    • Using a Cleaning CD/DVD once in a while
    iDVD pref file resides: Mac Hard Disk (start-up HD)/Users/"Your account"/Library/Preferences
    and is named: com.apple.iDVD.plist
    While iDVD is NOT RUNNING - move this file out to desk-top.
    Now restart iDVD.
    Yours Bengt W

  • I have an older Macbook pro with a dvi output and I want to watch movies on my tv. I have a dvi to hdmi cable but the only image I get on my TV is my desktop background. None of my movie players with appear on the TV screen. What am I doing wrong?

    I have an older Macbook pro with a dvi output and I want to watch movies on my tv. I have a dvi to hdmi cable but the only image I get on my TV is my desktop background. None of my movie players with appear on the TV screen. What am I doing wrong?

    Hi Maryan,
    Open System Preferences > Displays > select the window for you external monitor > click on the Arrangement tab and check the box next to Mirror Displays. It may be slightly different in Lion, but the idea is the same.

  • Im trying to watch movies from my macbook pro to my new vizio, but when I connect the minidisplayport to HDMI cable to input 2, and switch the input from my remote to that input, nothing happens.  What am I doing wrong?

    I am trying to watch movies from my macbook pro (2010) on my new vizio tv.  I connected the minidisplayport to HDMI cable (bought from the apple store) and switched the input to the right input but nothing happens. What am I doing wrong?

    Hi T,
    Open Sys Prefs > Displays and check the settings there.

  • Trying to connect a Belkin brand audio cable from my MacBook Pro to a Sony flatscreen TV. Cannot get any sound from the laptop out of the TV. What am I doing wrong?

    I'm trying to connect a Belkin brand stereo audio cable from my MacBook Pro to a Sony flatscreen TV (Apple "genius" handed me the cable to purchase.)  I have tried all the ports in the back of the Sony, and tried the volume on both the cable and TV remotes. I cannot get sound out of the Sony from my MacBook Pro laptop. What am I doing wrong???

    Downloaded your operating manual.  It appears that you need to connect the HDMI to HDMI 1 and the audio to the input socket just to the right of the VGA socket (i.e., between the VGA and the RF input connection).  The picture on page13 seems to be the clearest I could find:
    Although it's not exactly clear I think they are talking about a standard 3.5 mm (1/8") stereo jack for the audio inpu as opposed to the more common RCA jacks used in the row just above that VGA input socket.
    I haven't checked the manual as yet whether you need to set anything special with the controls other than input select.
    Note, if that truly is a 3.5 mm stereo jack cables are very common.  In your case it would just be a cable with a 3.5 mm jack on each end.
    Update:
    You will have to experiment with this but I think you will need to try pusing the input button to select either HDMI1 or PC (or Component?).  The manual is not clear on this (page 31).  Sometimes it just comes down to pushing buttons.

  • I am trying to burn a cd from my itunes playlist but it keeps canceling my burn and says their is an error 4450. What am I doing wrong?

    I am trying to burn a cd from my itunes playlist but it keeps canceling my burn and says their is an error 4450. What am I doing wrong?

    Could you post your diagnostics for us please?
    In iTunes, go "Help > Run Diagnostics". Uncheck the boxes other than DVD/CD tests, as per the following screenshot:
    ... and click "Next".
    When you get through to the final screen:
    ... click the "Copy to Clipboard" button and paste the diagnostics into a reply here.

  • I am trying to print a color photo on my MacBook Pro from iPhoto (not using Photoshop) using Epson 2200 printer, and everything I do in the Color Matching and Print Settings results in a photo with a pink cast to it. What am I doing wrong?

    I am trying to print a color photo on my MacBook Pro from iPhoto (not using Photoshop) using Epson 2200 printer, and everything I do in the Color Matching and Print Settings results in a photo with a pink cast to it. What am I doing wrong?

    Have you checked the ink cartridges and made sure the nozzles are clear? Are you able to print from outside of iPhoto with the correct color?
    Try the following: make temporary copy of the library and do the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    OT

  • I am try to burn a dvd from iPhoto in iDVD, when I click burn I get error message I don't have SuperDrive and dvd is ejected. I have burned dvd's before. What am I doing wrong?

    I am try to burn a iPhoto slideshow on to a dvd in iDVD, when I click burn I get error message and dvd is ejected. I have burned dvd's before. What am I doing wrong?

    error message I don't have SuperDrive and dvd is ejected
    If you don't have a SuperDrive you will not be able to burn DVDs. 
    Did iDVD come preinstalled on your Mac?  If it did then you should have a SuperDrive and be able to burn DVDS. Check the Disk Burning section of System Information
    to see what you can read and write with your optical drive:
    OT

  • I have a late 2008 MacBook I would like to watch movies on my tv from.  I bought the HDMI cables and the one to use for audio also but I still don't get any sound.  What am I doing wrong?

    I have a late 2008 MacBook I cant get to send sound to my TV when I try to watch movies.  I have bought the HDMI cable and audio connectors but still no sound.  What am I doing wrong?

    Hi Maryan,
    Open System Preferences > Displays > select the window for you external monitor > click on the Arrangement tab and check the box next to Mirror Displays. It may be slightly different in Lion, but the idea is the same.

  • Hi.  I am having issues with copying files to my shared WB 2TB HDD connected to my airport extreme.  Comes up with error 50.  I am using a Macbook Pro to copy from so not sure what I am doing wrong.  Can someone help? thanks Rory

    Hi.  I am having issues with copying files to my shared WB 2TB HDD connected to my airport extreme.  Comes up with error 50.  I am using a Macbook Pro to copy from so not sure what I am doing wrong.  Can someone help? thanks Rory

    These links might provide some information that may be of help.
    http://support.apple.com/kb/TA20831
    https://discussions.apple.com/message/2035035?messageID=2035035
    I've encountered this error myself upon occasion.  If I remember correctly, it was a permissions/ownership issue with the some of the files I was copying.

Maybe you are looking for

  • How can I merge to seperate sync accounts?

    Hi I hope someone can help with this, there are a couple of postings on this issue but none seem to give a clear answer. I've managed to procude two sync accounts - that is with separate email address's and passwords. I want to merge the two without

  • BPM : Procees the file based on the response of Webservice

    Hi I have a scenario where two files are the source..and the target is Webservice Based upon the response of the first file ....i want to process the sencond file if not i want to raise an exception... whar are the steps i have to use in BPM.. SV

  • Broken power supply: is there an easy fix?

    Somehow when I plugged my iPod into a (usually reliable) AC adapter at work, it horrendously bent the pins inside the power supply. Now I can't plug it in at all - and it's dead, which is heartbreaking. Perhaps I'm a bit of a fool, but I thought all

  • Airport Express extending network needs to be restarted daily

    I'm having a really annoying problem with my Airport network. Here's the configuration: Den: Latest generation simultaneous Dual-Band Airport Extreme Living Room: older 802.11g Airport Express used only for AirPlay Office: older 802.11n Airport Expre

  • Newly registered user doesn't have Data Model or Report Creation option

    Hi, I have recently registered in http://bipdev2.us.oracle.com:7001/xmlpserver Except Create Report Job option, i do not have Create Data Model and Create Report options visible in my Home page. In My Account-> My Groups, in which i have BI Consumer