Useless rotate in QT pro

I have the common problem of needing to rotate video shot the wrong way in my digital camera so I bought QT pro (I'd always wondered what you might use it for). The problem is it rotates the whole movie not just the data within the frame - if I now try to import it into iMovie it gets streched to fit the horizontal frame. I tried importing into Premiere on a friend machine ad get the same result.
This is soooo annoying. I cant believe there is no rotate in iMovie or iPhoto. Now I've bought QT pro just for this feature and the "i" apps can't use the format.
All I want to do is get some footage of my little boy onto a dvd for the Grandparents!
Any suggestions other that learn to shoot video properly?

Shane, welcome to these discussions.
When you rotate a movie all you are really doing is swapping the height and width. 320X240 becomes 240X320. Your image is now orientated correctly but is no longer the correct 4:3 aspect ratio.
The fix is somewhat easy. Add a new 4:3 image to the entire movie.
Create an image file (all black) sized to the proper aspect. Open this file using QT Pro. Select all (Command-A) and Copy (Command-C).
Switch to your new rotated movie, select all and choose Add to Movie & Scale (Edit menu).
Open the Movie Properties window, select this new video track and set its "Layer" to -1 (minus one). This will keep your new video "on top".
Use the Save As menu, rename the file and save as "self-contained". Or "Export" the new movie to DV Stream (.dv) and it will be ready to use with iMovie.
You'll have "black bars" (depending on how you position the video track over the image track). But your movie will not get "squished" when used in iMovie.

Similar Messages

  • Acrobat Pro V8 problem with rotating PDFs

    I have CS3 suite with Acrobat Pro V8.1.2 running on OSX 10.5.4.
    I rotate PDFs for our printer (photographic Lightjet430 laser printer using postershop) it saves time, and it also makes things easier for us in general.
    Now I sometimes rip the PDFs into photoshop, this is where my problem starts.
    If a PDF say 500mm wide X 2000mm high is rotated in Acrobat and re-saved so now 2000w X 500h. If I open this in Photoshop it shows me a preview as 2000wx500h BUT the size is reported as 500w X 2000h. If you then rip this PDF it will rip as 500mm wide X 125mm high (Wrong). The only way around this is to rotate this PDF back to 500w X 2000h then rip again and it will then rip as 500x2000.
    Now if I get this PDF and rotate using OSXs Preview, it will work. I open the PDF that I rotated in Preview and photoshop will show and tell me that it is 2000Wx500H and it rips as 2000x500.
    I have 7 other Macs with the same setup and they all do the same thing. I got a friend on a PC using XP and Acrobat 8.1.2 and it also did the same thing.
    Using another PDF program on his PC made it work.
    Now for some reason the Newer version of PosterShop 7.1 (wasn't a problem with Postershop 6.5) is doing strange things with PDFs rotated in Acrobat Pro V8.1.2. A PDF rotated in Acrobat to a Landscape will open as a Portrait. Leave the PDF as a Portrait and it will open as a Portrait. Now rotate the same file using Preview to a Landscape and Postershop will open it as a Landscape.
    Its like something in the PDF is not being changed to say its rotated, so both Photoshop and postershop get it wrong. Now the problems in Postershop may not be related, but even Photoshop is seeing this and ripping it wrong.
    Is there any thing I could try?
    I have got the rest of the team using Preview atm to rotate files for now.
    Thank you.

    My biggest issue GKaiseril is that this is something developed at a higher level than my department. You can find the Fillable PDF and Excel conversion spreadsheet at : www.dodprocurementtoolbox.com. I am not apart of the development team, just apart of a property team trying to get our attachment right. This has been an ongoing issue we've tried to resolve for a while now. The solution I posted above makes the file work, but I don't know if its a "solution" or a temp fix. If I can figure out what the actual issue is, I can suggest an actual fix to the machine or process.

  • Rotating clips in QT PRO

    Hi, I did a search for rotating clips in qt pro. I found a lot of people stating that it was possible to rotate clips in QT Pro , but no one describing HOW to do the rotating in QT PRO. Well now that I KNOW that QT PRO can do this, gosh, can anyone please describe HOW this simple procedure is done.
    -Thanks, Mo

    Apple Key + J will open the movies properties.
    Click on the video track.
    Click on Visual Settings....
    Flip/Rotate

  • Applescript to rotate Macbook Pro screen?

    I am trying to create an applscript to rotate my Macbook Pro's internal screen (not an external monitor).  I've tried working with every script I could find off of Google, but none of them have actually worked for my internal screen.
    I finally was able to find one that works for my external monitor, but that's not quite what I'm looking for.  It's a smart script that will toggle between landscape and portrait mode rotation, but I can't seem to make it work on my internal screen.  The script is as follows:
    -- v1.1.20060301 (by Conrad Albrecht-Buehler) updated to handle displays with the same name.
    -- v2.0 (by hypert) updated to simply toggle between two rotations
    (* Set rotationA and rotationB to your two main rotation values.
        1 = Standard
        2 = 90 degrees (clockwise)
        3 = 180 degrees
        4 = 270 degrees
    property rotationA : 1
    property rotationB : 4
    -- this function gets a list of the display preferences windows.
    -- needed if you have more than one display that you want to
    -- rotate.  Note: PowerBooks will not rotate their built-in
    -- LCDs with this script.
    on getDisplays()
        tell application "System Events"
            get properties
            tell process "System Preferences"
                set allDisplays to every window
            end tell
        end tell
        return allDisplays
    end getDisplays
    -- This function simply clicks the pop-up button that
    -- controls rotation, and selects the next in order
    -- (either clockwise or counter-clockwise)
    on setDisplay(thisDisplay)
        set rotatable to false
        tell application "System Events"
            get properties
            tell process "System Preferences"
                tell window thisDisplay
                    tell tab group 1
                        click radio button "Display"
                        tell group 1
                            try
                                click pop up button 2
                                tell pop up button 2
                                    repeat with rotationValue from 1 to 4
                                        if selected of menu item rotationValue of menu 1 is true then
                                            exit repeat
                                        end if
                                    end repeat
                                    if rotationValue is equal to rotationA then
                                        set rotateMenuItem to rotationB
                                    else
                                        set rotateMenuItem to rotationA
                                    end if
                                    click menu item rotateMenuItem of menu 1
                                end tell
                                -- If "Standard" is selected, no confirmation dialog is displayed.
                                if rotateMenuItem is not 1 then
                                    set rotatable to true
                                end if
                            on error
                                log "Can't rotate display. It may be the laptop's built in display."
                            end try
                        end tell
                    end tell
                end tell
                if rotatable then
                    delay 3
                    -- After rotation, for some reason the confirmation dialog is always in window 1.
                    tell window 1
                        tell sheet 1
                            click button "Confirm"
                        end tell
                    end tell
                end if
            end tell
        end tell
    end setDisplay
    -- the "main" part of the script
    -- Prompt for change:
    --set rotationValue to the button returned of (display dialog "Pick your rotation" with title "Rotation" buttons {"Standard", "270"} default button 1)
    -- activate System Preferences
    tell application "System Preferences"
        activate
        set current pane to pane "com.apple.preference.displays"
    end tell
    -- get all the display preference pane windows
    -- and rotate each corresponding display
    set allDisplays to my getDisplays()
    repeat with i from 1 to length of allDisplays
        my setDisplay(i)
    end repeat
    -- quit system preferences
    tell application "System Preferences"
        quit
    end tell
    Any ideas on how to trigger this on my internal monitor?  Thanks!

    Yup, my laptop does support screen rotation, and I do use it relatively often.  It requires holding down ⌘+⌥ when clicking "Displays" in System Preferences.  This is possible to instigate in Applescript using  "key down {option, command}" and "key up {option, command}".
    I can't figure out where to put that in the script (it has screwed up my keyboard a few times, making command and option permanently held down until I log out and back in).  I also don't know why the function "getDisplays()" or "allDisplays" does not include the internal display or how to make that happen.
    Any ideas?  Thanks guys!

  • How do I rotate an AVI movie?

    This is a weird one, but here goes.
    I'm using a Canon SD550, which makes AVI movies. I've got a couple of such movies where the camera was held vertically rather than horizontally. They don't display correctly in iPhoto or Quicktime.
    My solution is to use QT Pro, open the properties window and change the visual settings for the video track.
    Then I save as, which creates an MOV file. Then I import the new file back into iPhoto and copy the the time and date from the old, unrotated file and then finally, delete the old file.
    The problem is that in one case the "poster frame" comes in garbled, no matter what I do. This is not the Quicktime poster frame -- it's the still frame that iPhoto shows you in the iPhoto library. It seems to have been taken from the first frame of the file, but it's all jumbled up and looks like a mess.
    Does anybody know whether this is a serious problem? Does it mean the video is messed up somehow (it seems to play fine)? And does anybody know how to fix it?
    Thanks very much to anyone who can help.
    Steve

    Steve,
    I haven't tried rotating with QT Pro, but I do have a suggestion for you. My Canon came with ImageBrowser. I don't normally use it because iPhoto is superior. However, if you select a video clip in IB you can open it inside the Video Edit task. It has several functions to edit the clip, including actually rotating it. (By actually I mean that it's not just a display setting.) If you have this app, you could rotate the video clip before importing into iPhoto. I would expect that iPhoto would have no problem creating the poster frame and thumbnail correctly. I have used rotated clips in iMovie with no problems.
    I thought QT pro could also properly rotate a video clip, without just changing the display settings. People on the QT forums or iMovie forums (esp QuickTime Kirk) would be able to advise you there.
    Regards.

  • IPhoto can't import rotated movies?

    Folks,
    I have some movies taken with my digital camera in portrait mode. I found a program to rotate the movies (TransformMovie), but iPhoto doesn't let me import them. It gives an error message.
    The movies play ok just in Quicktime (or frontrow or whatever).
    It seems iPhoto doesn't like rotated movies. is there a workaround?
    Is this the same for movies rotated with QT Pro?
    Tx,
    Phil

    Phil:
    Movies rotated with Quicktime Pro import into iPhoto OK. I downloaded and tried TransformMovie and it wouldn't import. It had been changed to a .mov file. There were some differences in the video portion as indicated by QT Player, mostly in video offset. But changing it to what the QT version was didn't help. When I did a Save As in QT Player the resulting file was importable. QT Pro is worth the money and more. You can do a lot of things with it.
    EURIKA! Just change the file's extension back to .avi and it will import.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • CS 5.5 Crashes on 2010 Macbook Pro

    I've got a 2010 Macbook Pro with 8GB RAM and an nVidia card. CS5 worked great on it, but CS5.5 is a different story. I can create projects, import footage, save, and reopen, but when I add a few items to the timeline, save, and close the project or program, the problems begin. Premiere crashes every time I attempt to reopen the project. I've tried using different drives, different types of footage, logging in as administrator, and a complete reinstall. No success.
    I informed Adobe tech support of the problem and uploaded crash logs from the program and OS X for them to view. The really annoying thing is that they've promised twice to call me back in a few days after bumping up the problem to a higher level of tech support, but failed to do so.
    Any ideas? I'm still able to use CS5 on this machine but it's extremely annoying that 5.5 is completely useless to me.

    MacBook Pro (2009) 3GHz, Intel Core 2 Duo, 8 GB with 256 SSD internal, Lion 10.7.2 (pretty high end mac laptop).  External drives are G-SAFE, SSD 256, Promise SmartStore, etc... all sorts of variations with FW800.  Thought it was external media drive issues at first, bt b een testing and narrowing down for several days.  SImplified it down to no external drives and two small media QT files on my internal drive (SSD) and still crashes often.  Premiere will launch and crach within a few seconds while trying to link files (so it looks like).  In the project window, the icons for the media files will change to video, movie icon etc.. when all is fine and the app stays up.  I can tell when it is about to crash when the app launches and the media file icons remain unknown for several seconds then it seems to time out and crash within a few seconds.  All I do is try to bring up the project again and it will either do the same or launch successfully.  no rhyme or reason.  sometimes it works sometimes it crashes.  i just keep trying until it launches and media files link... then all is fine and I can edit.  VERY frustrating and makes me not at all confident about the product.  But, I realize it is something very strange and probably system-specific related.  Can't imagine this is a normal problem with Premiere.  Just feel its like a needle in a haystack.  I tried reinstalling Lion, clearing cache, etc... with Adobe tech.  just don;t know where to go from here/??  Thanks again for your comments.

  • OMF files and AAF files from AVID not working in soundtrack Pro 2

    OMF files from avid work in Logic studio but always need converting to 44.1K so are useless.
    In Soundtrack Pro I can't get them in without about a million glitches. First of all it creates about four clips of every audio clip and dumps them in bulk at the begining of the time line in a great big jumble (sometimes it's not visible). Audio clips are often not selectable and it doesn't take the timecode from the OMF. It's a mess, don't apple test these things?
    AAF - (files that I have checked do work on other systems) I can't get to work at all.
    I can't export AAF or OMF either, even though the manuals say I can.

    Look in the Utilities folder for Apple Loops Utility. The manual is in under the Help menu of that app.
    2 posts in an hour with the same question . . . I hear an echo

  • QuickTime Pro question:  converting files to play on digicam?

    Will QuickTime Pro import other formats (.mpg, .wmv) and output a .mov file that will play on my digital camera (Kodak C663) ? Here is what the camera creates for a .mov file, so I assume it will play this:
    100_0415.mov
    Format : QuickTime
    Format/Info : Original Apple specifications
    Format/Family : MPEG-4
    Bit rate : 1247 Kbps
    StreamSize : 2.85 KiB
    Video #0
    Codec : MPEG-4 Video
    Codec settings/BVOP : No
    Codec settings/QPel : No
    Codec settings/GMC : 0
    Codec settings/Matrix : Default
    Bit rate : 1115 Kbps
    Bit rate mode : CBR
    Width : 320 pixels
    Height : 240 pixels
    Aspect ratio : 4/3
    Frame rate : 23.929 fps
    Resolution : 8 bits
    Interlacement : Progressive
    Bits/(Pixel*Frame) : 0.002
    StreamSize : 1.00 MiB
    Audio #0
    Codec : PCM
    Bit rate : 128 Kbps
    Channel(s) : 1 channel
    Sampling rate : 16 KHz
    Resolution : 16 bits
    StreamSize : 118 KiB
    PC   Windows XP Pro  

    One last time...is there a way to contact Apple about this?
    I'm not going to spend $30 if this won't do what I need it to. It's a **** expensive way to get the "Get Quick Time Pro Now" nag screen out of my computer if it won't help otherwise.
    Yes, I've contacted Kodak support - and yes, they are useless.
    Will QuickTime Pro import other formats (.mpg, .wmv)
    and output a .mov file that will play on my digital
    camera (Kodak C663) ? Here is what the camera
    creates for a .mov file, so I assume it will play
    this:
    100_0415.mov
    Format : QuickTime
    Format/Info : Original Apple specifications
    Format/Family : MPEG-4
    Bit rate : 1247 Kbps
    StreamSize : 2.85 KiB
    Video #0
    Codec : MPEG-4 Video
    Codec settings/BVOP : No
    Codec settings/QPel : No
    Codec settings/GMC : 0
    Codec settings/Matrix : Default
    Bit rate : 1115 Kbps
    Bit rate mode : CBR
    Width : 320 pixels
    Height : 240 pixels
    Aspect ratio : 4/3
    Frame rate : 23.929 fps
    Resolution : 8 bits
    Interlacement : Progressive
    Bits/(Pixel*Frame) : 0.002
    StreamSize : 1.00 MiB
    Audio #0
    Codec : PCM
    Bit rate : 128 Kbps
    Channel(s) : 1 channel
    Sampling rate : 16 KHz
    Resolution : 16 bits
    StreamSize : 118 KiB
    PC
      Windows XP Pro  

  • What camcorders are compatible with final cut pro 7

    There are so many cameras that use hard disks and flash memory and I don't want to buy one that is useless with final cut pro 7. What are some guidelines I can follow?

    Yesterday I was driving home from work in the carpool lane, and a motorcycle was coming up behind me. So I did my usual pulling to the left to give the fellow ample room.  But the car in front of me veered to the right as the motorcycle approached -- obviously to try and block him.  I was quite peeved at the idiot driver, even though it had nothing to do with me.
    In the same way, I am offended by the tone av3x is using.
    I don't like how he/she is talking to you guys, with comments such as, "David, why not just answer the question?"
    Hey av3x: The people on this board don't owe you any answers.  They are not getting paid to read about your troubles.  They have invested time with you already, and you should be respectful.
    BTW, it sounds like the JVC HM100 might suit your needs.

  • White screen after Flip/Rotate in Video Settings - Quicktime 7.1.3

    After I flip/rotate a video (Show movie properties, Video Track, Visual Settings), the preview screen changes to a plain white screen. I've attempted to remove and reinstall Quicktime 7.1.3 though this did not resolve the issue.
    I'm able to do the flip/rotate using Quicktime Pro 7.1.3 on my MacBook Pro as well as on Quicktime on a PC although Quicktime Pro 7.1.3 on my Mac Pro gives me this problem.
    If anyone has any clue as to what might be going on and what could be done to address this, I would greatly appreciate your assistance.
    I've tested with different videos including .mov's from the Apple website (Get a mac commercials... using coded H.264) and have the same problem with all videos.
    Thanks.
    Mac Pro Mac OS X (10.4.8) 3Ghz processor, 4GB RAM, Quicktime 7.1.3, lots of disk space
    Mac Pro   Mac OS X (10.4.8)  

    I still don't have any solution to this issue. I opened a ticket with Applecare. The 2nd level technician was unable to resolve the issue. Has anyone else experienced a white video screen after doinga flip/rotate using Quicktime?

  • Is FCP X the end of FCP for pros?  Has Apple abandoned us?  No longer can open my older files?

    It looks like FCP X is a useless app for any pro application.  With no capture from or to tape (Which is still widely used in the pro industry) and we will no longer be able to open a version of our edit from any previous FCP project. The exports and imports have been severly limited.  What is Apple doing?  Why make FCP more like imovie?  Obviously the changes were designed by guys in suits and designers who have no experience in the industry.  I guess it's time to switch back to Avid or even Adobe Premiere.  I know my company is selling 40 of their Mac work stations and switching to PC and Premiere.  Something I don't want to do but if I want to contine working in the industry it may not be a choice.
    BAD MOVE APPLE.

    >Is FCP X the end of FCP for pros?
    Yes ... at least until FCPX is much more muture and robust than it is now.
    >Has Apple abandoned us?
    Yes.
    >No longer can open my older files?
    Correct.
    >What is Apple doing?
    Making money.
    >Why make FCP more like imovie?
    Because that's where the market is most profitable for them.
    >I guess it's time to switch back to Avid or even Adobe Premiere.
    My plan as well.
    -DH

  • DVI to Video Adapter with NVIDIA 8800 GT not working

    Hi all. I have the new Mac Pro Octo (mar '08) with the NVIDIA GFORCE 8800 GT card. I cannot find anywhere what may be wrong. Only on the Apple Website for the adapter that the only Mac Pro it works with is the Mac Pro (with ATI X1900 XT). However, both tech support and Apple's Store staff said this would work, prior to buying it. Well, my computer does not recognize the TV monitor hooked up via S-Video. I've powered everything down, restarted, unplugged and replugged in both orders, and switched inputs on the TV and receiver both. Nothing.
    Any one know if this does or does not work with this computer???
    Thanks.

    Never mind. Found this out via Apples own website. Thanks APPLE TECH SUPPORT and STORE STAFF for getting me to buy a useless cable!
    Mac Pro Computers (January 2008)
    The Mac Pro computers with Quad-Core Intel Xeon 5400 Series microprocessors were introduced in January 2008. The Mac Pro’s graphics subsystem interfaces to the North Bridge via a 16-lane PCIe 2.0 bus. For information on the PCI Express graphics support and expansion, refer to PCI Developer Note.
    The following sections describe the Mac Pro’s graphics subsystem.
    Graphics Cards
    Supported graphics cards have dual-link DVI connectors, supporting 30-inch Apple Cinema HD Displays on both ports.
    For information on video memory, power, and features refer to Table 1.
    All of the supported graphics cards support dual displays in either extended desktop or video mirroring mode; for more detail, see “External Display Modes.”
    Table 1 Supported Graphics Cards
    Graphics card
    Video SDRAM
    Power usage
    ATI Radeon HD 2600 XT (standard)
    256 MB (GDDR3)
    50 W
    NVIDIA GeForce 8800GT (configure to order)
    512 MB (GDDR3)
    110 W
    NVIDIA Quadro FX 5600 (configure to order)
    1536 MB (GDDR3)
    175 W
    The GeForce 8800GT graphics card requires that a booster cable be connected from the PCI slot to the auxiliary power connector. The Quadro FX 5600 graphics card requires two booster cables be connected from the PCI slot to the auxiliary power connector. For additional information, refer to the PCI Developer Note.
    The Mac Pro supports the 20-inch Apple Cinema Display at a resolution of 1680 x 1050, the 23-inch Apple Cinema HD Display at a resolution of 1920 x 1200, and the 30-inch Apple Cinema HD Display at a resolution of 2560 x 1600. All ports support a maximum resolution of 2048 x 1536 at 32-bit with 85 Hz refresh rate. Multiple PCI Express graphics cards can support three or more displays.
    The table below lists the displays supported by port 1 and port 2.
    Table 2 Port 1 and Port 2 support
    Graphics card
    Port 1
    Port 2
    Radeon HD 2600 XT
    20”, 23”, 30” Apple displays
    20”, 23”, 30” Apple displays, DVI to Video Adapter
    GeForce 8800GT
    20”, 23”, 30” Apple displays
    20”, 23”, 30” Apple displays
    Quadro FX 5600
    20”, 23”, 30” Apple displays
    20”, 23”, 30” Apple displays
    For information on video ports, see “Video Monitor Ports.” For information on PCI Express expansion slots, refer to PCI Developer Note.
    Video Monitor Ports
    The Mac Pro has a DVI connector for an external video monitor. For a description of the DVI connector, refer to Figure 4 and Table 30.
    The graphics data sent to the digital monitor use transition minimized differential signaling (TMDS). TMDS uses an encoding algorithm to convert bytes of graphics data into characters that are transition-minimized to reduce electromagnetic interference (EMI) with copper cables and DC balanced for transmission over fiber optic cables. The TMDS algorithm also provides robust clock recovery for greater skew tolerance with longer cables or low-cost short cables.
    Note: The Mac Pro computer includes a DVI to VGA Adapter.
    DVI to Video Adapter
    The Radeon HD 2600 XT graphics card supports an optional DVI to S-video/composite adapter that provides S-video and composite output to a PAL or NTSC video monitor or VCR. When a display is connected by way of the video adapter, the computer detects the type of adapter and enables the composite and S-video outputs. The settings for the resolutions and standards (NTSC or PAL) are then selectable in the Display pane in System Preferences.
    Note: The DVI to Video Adapter does not come packaged with the Mac Pro computer and must be purchased separately.
    The video output connector is a 7-pin S-video connector. Figure 5 shows the arrangement of the pins and Table 31 shows the pin assignments on the composite out and S-video connector.
    The Mac Pro computer provides video output at picture sizes and frame rates compatible with the NTSC and PAL standards; the picture sizes are listed in Table 32. Those picture sizes produce under-scanned displays on standard monitors.

  • MBP video out to TV using DVI - both analog and digital?

    I have a Macbook Pro 10.6.4 2008 Model with details are below on graphics card and display options. I am trying two hookups to televisions which may or may not be possible. Can anyone tell me if my DVI output on the macbook pro is capable of delivering an analog signal to my old sony tube tv with component inputs? Second part of my question is do I have the right dvi cable. I purchased a cable with 24 + 5 pin. This cable does not produce a picture on my analog or digital television. Just snow on the analog and no input on the digital. The cable that came with my macbook pro is a DVI to VGA converter and seems to be an 18 + 5 pin plug....with a few pins missing in the middle. Should I buy another cable with the 18 + 5 pin DVI to component or buy a cable to connect the supplied DVI to VGA converter - VGA to component. Please help I'm confused on many fronts.
    Thanks
    Frank
    Chipset Model: GeForce 8600M GT
    Type: GPU
    Bus: PCIe
    PCIe Lane Width: x16
    VRAM (Total): 256 MB
    Vendor: NVIDIA (0x10de)
    Device ID: 0x0407
    Revision ID: 0x00a1
    ROM Revision: 3212
    Displays:
    Color LCD:
    Resolution: 1440 x 900
    Pixel Depth: 32-Bit Color (ARGB8888)
    Main Display: Yes
    Mirror: Off
    Online: Yes
    Built-In: Yes
    VGA Display:
    Resolution: 800 x 600 @ 60 Hz
    Pixel Depth: 32-Bit Color (ARGB8888)
    Mirror: Off
    Online: Yes
    Rotation: Supported
    Macbook Pro 2.4 Leopard 10.5.2 Mac OS X (10.6.4) Brand New 3/08

    I made an account and am replying to this because i have the exact same computer as you and i was also at best buy at around 3pm wondering the exact same things you were! The DVI port on our MacBooks are different than the standard DVI ports. Freaking weiiiiiiiiiiiiiird! Get out of my head!!!!
    I ended up buying a VGA cable and using the converter that came with my MBP because the DVI to VGA cables at Best Buy had a different VGA than what the MBP has.
    Our goals were slightly different though, I wanted a cable so i can connect the MBP to my Toshiba 42inch HDTV. VGA works but doesnt support 1080p, only 1024x768, which is not a fullscreen resolution. So i will be returning the VGA cable tomorrow and looking for a VGA to HDMI cable, if that exist.
    So, to answer your question, YES, buy a cable that has the same ports as our adapter, or just use the adapter that came with the Macbook.

  • Calendar not syncing in OS X 10.9 Mavericks

    There seems to be an issue with syncing Google Calendar in OS X Mavericks. This is a completely clean install of the OS. I add my google account via the "Accounts" setting in System Preferences. I am using 2-step auth so I generate a password for this. All the other google services (mail, contacts, notes, messages) immediately get checkmarks and sync. But the calendars just spins for a few minutes and then displays a dialogue saying it could not establish a secure connection. I click continue. It just spins for a few more minutes and displays the same message. Help would be appreciated. I have had the same problem on iOS but I just tinkered with flipping it on and off and it eventual worked but it seems to be an issue either with my google account or osx/ios.

    I have the same issue with my Google Apps for Business Account.  I could previously do a work-around when Mavericks first came out by setting up a seperate CalDev, but that nolonger works with the latest update of mavericks.  My Calendar is now useless on my MacBook Pro, though works fine with calDev on iPhone and iPad and PC.

Maybe you are looking for

  • During the TBird installation I am asked to enter user/email/password but after repeated attempts only get error saying info incorrect.

    After going through the Thunderbird setup on a Windows 8.1 computer, and after selecting IMAP instead of POP, I get to the point where it asks me to input name, email and password. However, when I do so, it invariably comes back and says my name and/

  • Slow Code Editing in Flash Builder 4.7

    For some reason my Code Editor works painfully slow. I see that other folks have experienced this issue. I don't want to switch to another IDE. I have already increased the values of Xms and XMX (Xms1024m -Xmx2048m) and also created a new workspace b

  • Best Solution for problem fix?

    When I upgraded my iPod Video 60GB from 1.1 to 1.1.1 I experienced volume level problems (loss of total volume). I need this volume level because I have extremely bad hearing. With 1.1.1 at half volume to 3/4 volume I am unable to hear the music. Fro

  • Upgrade Photoshop Elements Catalog option is missing

    The File Menu/Upgrade Photoshop Elements Catalog is missing on my version of LR5.  I've followed the suggested procedure to update the preferences files for both Elements 12 and Lightroom 5, but LR5 still does not recognize that I have an existing El

  • Colors Faded on Web From Illustrator

    I hope you can help. The graphics I make in Illustrator C3 look clear and great on my monitor, but when uploaded to the web, they are faded by maybe 20%. I'm on a Mac OS 10.4 powerbook laptop and am not an expert with monitor calibration. All I know