Random audio problems; different problems depending on where audio is from

If I play loud music such as the Lord of the Rings or The Dark Knight soundtrack, the MBP speakers will sometimes crackle. However, if I plug in my external speakers, then the crackling will probably still occur in the same song, but at a different time. If I plug in my earphones, then there may or may not be a problem in the song again, but if so, then it will probably be at a different time in the song.
Why is the problem not consistent? Also, if my earphones crackle, does that still mean that the problem is in the MBP, or is the problem actually in the earphone? I thought that if I plugged in earphones or speakers into the MBP, then only the plugged in device would vibrate to make sound, and not the MBP, so the MBP should not crackle even if the internal speakers are busted when earphones are plugged in?

I was using Sennheiser earphones for a few years. They worked fine up until a month or two ago, when the buzzing began. After that, I tried out my iPod earphones for a day or two but they had the same problem. A pair of cellphone earphones also has the same problem, as well as my Creative external speakers.
The buzzing used to only be in the right ear but recently it seems like it can happen from both the left and right, although still mostly from the right.
I don't think the problem are my ears; it just doesn't sound like it's coming from inside my head, and I clear my ears regularly, anyway. Also, I asked a few other people if they can hear the sound and sure enough they could, so I guess I'm not crazy.
I almost never use the MBP internal speakers; I'm usually using my external speakers. I do occasionally play loud music, but wouldn't that just blow the external speakers and not the internal ones?

Similar Messages

  • Different colors depending on where edited photo is viewed

    If i edit photos in photoshop, save them to my desktop, and email them to myself the photo colors look completely different when opening them on my iphone vs opening them on the computer. Why is this? Is there a way to fix it? Is it a setting in my camera, photoshop, lightroom, etc?

    .CR2 is Canon's propitiatory raw file format. A raw file contains the raw information from your camera's sensor, unlike other formats such as .JPG
    Since, I gather, you are using the JPEG format, you won't see any benefit from using the ProPhoto colorspace (the camera is already saving as either sRGB or Adobe RGB, and has compressed information).
    Pictured in my previous post is Adobe Camera Raw, which is Photoshop's Raw file editor. It's editing functions are nearly the same as Lightroom.
    In Lightroom these are the two places you need to change it:
    You're very welcome!
    Benjamin

  • How to loop with varying values depending on where you are in the loop

    Hi,
    I have need of loops / nested loops that pick different figures depending on where you are in the loop.
    The whole function needs to run through 'ml' times. 'ml' is a dynamic figure.
    Loop 1 = While the loop is within the first 12 iterations, 'exconemp' must equal 100. For iterations 13 - 24, 'exconemp' must equal 102.5, for 25 - 36 it will be 105.06, for 37 - 48 it will be 107.69. This needs to change every 12th iteration until it has reached 'ml'. The calculation takes the value of the previous 'exconemp' and then multiplies that by 0.025.
    Loop 2 = While the loop is within the first 120 iterations, 'abc' must equal 0.015 and any further iterations must use 0.01. This must also work in a way to figure out whether 'ml' is higher or lower than 120 and work accordingly.
    My main issue is this - how do I get the loops to run through as this:
    While the iteration is < 12, do this, THEN take the final figure (12th iteration) and start on 13 - 24, do this THEN etc etc.
    How do I produce a THEN statement? I can get the code to pick up the final values, but not change along the way.
    I think that I may be better creating an array for Loop 1, but I am not entirely convinced of this. I also think it would be better/tidier if I can get 'month 1 total' and 'month 2 total' into the loops, but am not sure on how to do this.
    The values that I need to produce are (only first 36 shown):
    1 - 12 = 125.55, 251.65, 378.31, 505.52, 633.29, 761.63, 890.53, 1019.99, 1150.03, 1280.63, 1411.81, 1543.57
    13 - 24 = 1679.05, 1815.12, 1951.79, 2089.06, 2226.93, 2365.41, 2504.50, 2644.20, 2784.52, 2925.45, 3067.00, 3209.18
    25 - 36 = 3355.19, 3501.85, 3649.15, 3797.11, 3945.71, 4094.96, 4244.87, 4395.44, 4546.68, 4698.57, 4851.14, 5004.38
    var ml = 240 // dynamic figure, multiple of 12 up to 780
    var exconemp;
    var exconem = 100;
    var inf = 0.025;
    var tree;
    var tec;
    var power;
    var fvis;
    var abc;
    var fvee;
    var tfv;
    function myfunction() {
    //Loop 1
    //while (ml <= 12) {
      exconemp = exconem;
    //while (ml > 12) {
    // exconemp = exconem*inf;
    //end Loop 1
      trace("exconemp=", exconemp); // employees contribution
    tree = exconemp/(1-0.2)-exconemp;
    tec = exconemp + tree;
      trace("tree", tree);
      trace("tec", tec);
    power = Math.pow(1+0.07, 1/12);
    //Loop 2
    //while (ml <= 120) {
      abc = 0.015;
    //while {
      //abc = 0.01;
    //end Loop 2
    fvis = power*(1-abc/12);
    trace("fvis=", fvis);
    fvee = tec*fvis;
    trace("fvee=", fvee); // month 1 total
    tfv = (tec+fvee)*fvis;
    trace("tfv=", tfv); // month 2 total
    for (var i:Number = 0; i < ml; i++)
          tfv = (tec+tfv)*fvis;
      trace("tfvloop=", tfv);
    I hope that I have explained this well enough.
    Many thanks in advance.

    I think this will do it although I am not quite getting the numbers you posted.
    stop();
    var ml = 48; // dynamic figure, multiple of 12 up to 780
    var exconemp;
    var exconem = 100;
    var inf = 0.025;
    var tree;
    var tec;
    var power;
    var fvis;
    var abc = 0.15;
    var fvee;
    var tfv;
    myfunction();
    function myfunction()
        exconemp = exconem;
            for(var index:uint = 1; index <= ml; index++)
                trace(index + "--------------------------------");
                    tree = exconemp/(1-0.2)-exconemp;
                    tec = exconemp + tree;
                    power = Math.pow(1+0.07, 1/12);
                    fvis = power*(1-abc/12);
                    fvee = tec*fvis;
                        if(index == 1)
                            trace("month 1 total=", fvee);
                        else if(index == 2)
                            tfv = (tec+fvee)*fvis;
                            trace("month 2 total=", tfv); // month 2 total
                        else
                            tfv = (tec+tfv)*fvis; //now that we are here the tfv self perpetuates on itself
                            trace("month " + index + " total=", tfv); // month n total
                if(index % 12 == 0)
                    exconemp = exconemp*(1+inf);
                    trace("changed exconemp to: " + exconemp);
                if(index % 120 == 0)
                    abc = .01;
                    trace("changed abc to: " + abc);

  • Sb x-fi xtreme audio console launcher problems on windows 7 32bit

    Asb x-fi xtreme audio console launcher problems on windows 7 32bit'sI recently installed windows 7, because I was tired from Windows XP, but unfortunately after installing all the drivers for my hardware I realized my 5. isn't working quite as expected.
    My first problem was, that the Crystalizer didn't work, after installing tons of different software, found on creative labs forums the crystalizer started working.
    Then I realized that the CMSS-3D wasn't (and still isn't working). How do I fix that ? I've tried numerous ways but nothing happens, while in windows XP everything worked fine after installing the drivers.
    I also miss some configuration options in the Creative Console Launcher, namely the check boxes:
    ?"Automatically enable headphone settings" and "Automatically mute speakers".
    Where the hell did they go?! I use them, I need them. How do I get them back? Is XP somehow privileged than 7? Isn't it supposed to be the opposite?
    I also can't change the speaker configuration - it's stays 5. whatever I do, and the drop-down menu with the choices is missing?! Auto-detect option doesn't work, and if it did worked - I don't need it.

    To : woj2322, You may need to download and install the Dell Notebook System Software version 5.0.5. This installs patch fixes to solve the PCI ExpressCard device not work correctly. This is only for the DELL Inspiron 520 Notebook (See Below). Microsoft patch fix info below also. Also, I see there's other people that are having the same issue, maybe you to need to download and install the patch fix for your notebook's on dell's website. It's called "Dell Notebook System Software" under "System Utilities"
    DELL Inspiron 520 Notebook Release Title:System Utilities: Dell Notebook System Software, Utility, Windows Vista 32-bit, Multi Language, Multi System, v.5.0.5, A00 Description:Notebook System Software is a utility that provides critical updates and patches for your operating system.More info on the download file :
    http://support.dell.com/support/down...=7&fileid=9736 Direct Download :
    http://ftp.us.dell.com/utility/R43625.EXE Part of what it fixes from micrsoft.When you connect a PCI ExpressCard device to a portable Windows Vista-based computer, the device may not work correctlyhttp://support.microsoft.com/ kbid=929550

  • My mbp randomly restart (attached the problem report)

    can someone help me to find out what cause my mbp randomly restart?tks!!
    Interval Since Last Panic Report:  679540 sec
    Panics Since Last Report:          8
    Anonymous UUID:                    1360F7D0-6AEC-B609-DEB0-3D16BE57A1BF
    Tue Sep 10 19:15:49 2013
    panic(cpu 2 caller 0xffffff7fa1612f1a): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff81101bd000 0x0a5480a2, D0, P3/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.5/src/AppleM uxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 2), Frame : Return Address
    0xffffff8107a2b710 : 0xffffff801f41d626
    0xffffff8107a2b780 : 0xffffff7fa1612f1a
    0xffffff8107a2b850 : 0xffffff7f9fbc9f1e
    0xffffff8107a2b910 : 0xffffff7f9fc9e12d
    0xffffff8107a2b950 : 0xffffff7f9fc9e18e
    0xffffff8107a2b9c0 : 0xffffff7f9ff64ed0
    0xffffff8107a2baf0 : 0xffffff7f9fcc6a75
    0xffffff8107a2bb10 : 0xffffff7f9fbd0d50
    0xffffff8107a2bbc0 : 0xffffff7f9fbce7d0
    0xffffff8107a2bdc0 : 0xffffff7f9fbcf845
    0xffffff8107a2bea0 : 0xffffff7f9fb6b0a4
    0xffffff8107a2bef0 : 0xffffff7fa15d60df
    0xffffff8107a2bf40 : 0xffffff7fa15d51e7
    0xffffff8107a2bf60 : 0xffffff801f43e25e
    0xffffff8107a2bfb0 : 0xffffff801f4b3137
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.1.2)[96AE69DE-8A37-39D0-B2D3-D8446A6AA670]@0xffffff7f9fb 68000->0xffffff7f9fe0dfff
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f9f972000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[6C8CFC18-75F0-3DEF-86C7-CEB2C1FD6BB1]@0xff ffff7f9fb54000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[990D1A42-DF16-3AB9-ABC1-6A88AC142244]@0 xffffff7f9f99b000
             com.apple.driver.AppleMuxControl(3.4.5)[49FEF732-D7A3-327B-A7AA-6AC5A6E3DCFF]@0 xffffff7fa1605000->0xffffff7fa1617fff
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[1D0BB11E-7D71-34CF-ACC3-57DF01CADA 08]@0xffffff7fa1600000
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f9f972000
                dependency: com.apple.driver.AppleGraphicsControl(3.4.5)[4A2C8548-7EF1-38A9-8817-E8CB34B8DC A6]@0xffffff7fa15ec000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f9fabe000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[6C8CFC18-75F0-3DEF-86C7-CEB2C1FD6BB1]@0xff ffff7f9fb54000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[990D1A42-DF16-3AB9-ABC1-6A88AC142244]@0 xffffff7f9f99b000
             com.apple.nvidia.nv50hal(8.1.2)[988EAF3A-3318-3787-8A5A-844830FA1522]@0xffffff7 f9fe19000->0xffffff7fa00edfff
                dependency: com.apple.NVDAResman(8.1.2)[96AE69DE-8A37-39D0-B2D3-D8446A6AA670]@0xffffff7f9fb 68000
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f9f972000
             com.apple.driver.AGPM(100.12.87)[A7004F02-7D39-3398-8BD3-729DCC404E5F]@0xffffff 7fa15d4000->0xffffff7fa15e3fff
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f9f972000
                dependency: com.apple.driver.IOPlatformPluginFamily(5.3.0d51)[2C131EAF-F74C-39D1-A702-A499B 39C293C]@0xffffff7fa0573000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[6C8CFC18-75F0-3DEF-86C7-CEB2C1FD6BB1]@0xff ffff7f9fb54000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[990D1A42-DF16-3AB9-ABC1-6A88AC142244]@0 xffffff7f9f99b000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12E55
    Kernel version:
    Darwin Kernel Version 12.4.0: Wed May  1 17:57:12 PDT 2013; root:xnu-2050.24.15~1/RELEASE_X86_64
    Kernel UUID: 896CB1E3-AB79-3DF1-B595-549DFFDF3D36
    Kernel slide:     0x000000001f200000
    Kernel text base: 0xffffff801f400000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 3138898049871
    last loaded kext at 1509372005675: com.apple.driver.AppleUSBEthernetHost          2.3.6 (addr 0xffffff7fa1717000, size 28672)
    last unloaded kext at 1634035335921: com.apple.driver.AppleUSBCDC          4.1.23 (addr 0xffffff7fa1714000, size 12288)
    loaded kexts:
    com.splashtop.driver.SRXFrameBufferConnector          1.6
    com.splashtop.driver.SRXDisplayCard          1.6
    com.Cycling74.driver.Soundflower          1.5.2
    com.apple.driver.AppleUSBEthernetHost          2.3.6
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.filesystems.autofs          3.0
    com.apple.iokit.IOBluetoothSerialManager          4.1.4f2
    com.apple.driver.AGPM          100.12.87
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.3.7fc4
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.1.4f2
    com.apple.driver.AppleMikeyDriver          2.3.7fc4
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.driver.AppleMuxControl          3.4.5
    com.apple.driver.AppleIntelHDGraphics          8.1.2
    com.apple.GeForce          8.1.2
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.4.5
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleIntelHDGraphicsFB          8.1.2
    com.apple.driver.SMCMotionSensor          3.0.3d1
    com.apple.driver.AppleUSBTCButtons          237.1
    com.apple.driver.AppleUSBCardReader          3.1.7
    com.apple.driver.AppleUSBTCKeyboard          237.1
    com.apple.driver.AppleIRController          320.15
    com.apple.iokit.SCSITaskUserClient          3.5.5
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.AppleUSBHub          5.5.5
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AirPort.Brcm4331          615.20.17
    com.apple.driver.AppleAHCIPort          2.5.2
    com.apple.driver.AppleUSBEHCI          5.5.0
    com.apple.iokit.AppleBCM5701Ethernet          3.6.1b4
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleEFINVRAM          1.7
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleACPIButtons          1.7
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.7
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2.1
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.driver.DspFuncLib          2.3.7fc4
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.1.4f2
    com.apple.nvidia.nv50hal          8.1.2
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleHDAController          2.3.7fc4
    com.apple.iokit.IOHDAFamily          2.3.7fc4
    com.apple.driver.AppleSMBusPCI          1.0.11d0
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.11d0
    com.apple.iokit.IOAudioFamily          1.8.9fc11
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOBluetoothFamily          4.1.4f2
    com.apple.driver.AppleGraphicsControl          3.4.5
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.3.0d51
    com.apple.NVDAResman          8.1.2
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.5
    com.apple.iokit.IOUSBMassStorageClass          3.5.1
    com.apple.driver.AppleUSBMultitouch          237.3
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.5
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.driver.AppleUSBMergeNub          5.5.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOAHCISerialATAPI          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOUSBUserClient          5.5.5
    com.apple.iokit.IO80211Family          530.4
    com.apple.iokit.IOAHCIFamily          2.3.1
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          5.6.0
    com.apple.driver.AppleEFIRuntime          1.7
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.7
    com.apple.iokit.IOPCIFamily          2.7.3
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353237334348302D4346382020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353237334348302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.4f2 12041, 2 service, 11 devices, 1 incoming serial ports
    Network Service: iPhone 2, Ethernet, en3
    Serial ATA Device: M4-CT512M4SSD2, 512.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: iPhone, apple_vendor_id, 0x12a0, 0xfa140000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 7
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

    You're having the 'bad' NVIDIA card kernel panics...
    Mid-2010 15" MacBook Pros - the bad NVIDIA GPU
    If you're having frequent kernel panics with your 15" mid-2010, or intermittent screen problems, the problem is, more than likely, the faulty NVIDIA GPU found in a number of those machines.
    Here's just a sample of a kernel panic log that points to the faulty NVIDIA card:
    Kernel Extensions in backtrace (with dependencies):
             com.apple.GeForce(6.4.0)@0x82ac4000->0x82b7afff
                dependency: com.apple.NVDAResman(6.4.0)@0x834a0000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x82fd3000
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x7a802000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x8301b000
             com.apple.nvidia.nv50hal(6.4.0)@0x83c05000->0x84019fff
                dependency: com.apple.NVDAResman(6.4.0)@0x834a0000
             com.apple.NVDAResman(6.4.0)@0x834a0000->0x8378dfff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x7a802000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x82fd3000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x8301b000
    Here's the "official" Apple take on the issue - but the very real kernel panics need not be preceded by 'Intermittent black screen or loss of video'... in fact, you might not experience any video problems at all. Although video problems can certainly be a portent of things to come…
    So what can you do? Print out a copy of your kernel panic and a copy of the Knowledge Base article and take them, along with your machine, to your local Apple Store or an Apple Authorized Service Provider. They should be more than willing to install a new logic board at no cost. I have no idea why this faulty GPU is making the headline here on the MacBook Pro forum so often now - could it be because Mountain Lion is just bringing the issue to a head more readily? I don't know - I only know that we're seeing more and more of these kernel panics of late.
    Good luck,
    Clinton

  • Blogger / Flash audio widget spacing problem

    This is a multi-part message in MIME format.
    ------=_NextPart_000_0157_01C8E5D5.30A1E450
    Content-Type: text/plain;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    Please excuse me re-posting this question, but I have new
    info and =
    needed a new subject line. :-)
    I'm trying to use a very nice little Flash audio player
    script on a =
    Blogger page. Here's what it looks like on a simple HTML
    page:
    http://ayersvirtual.com/deleteme.htm
    On that page above, in all my browsers, the spacing above and
    below the =
    audio player is fine. That's what I want.
    But when I put the same code in a Blogger post, there are
    massive =
    top-bottom margins in Firefox 3, and none at all in IE 7.=20
    Here is a sample Blogger post showing this:=20
    http://pattyayers.blogspot.com/2008/07/blogger-flash-audio-player-problem=
    .html
    I dug through Blogger's CSS, and don't see anything that
    should cause =
    this. I added a line of CSS targeted at the <object>
    tag, zeroing its =
    margins, but that didn't do it.=20
    Any help with figuring this out would be MUCH appreciated!
    --=20
    Patty Ayers | www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet
    ------=_NextPart_000_0157_01C8E5D5.30A1E450
    Content-Type: text/html;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    Transitional//EN">
    <HTML><HEAD>
    <META http-equiv=3DContent-Type content=3D"text/html; =
    charset=3Diso-8859-1">
    <META content=3D"MSHTML 6.00.6001.18063"
    name=3DGENERATOR>
    <STYLE></STYLE>
    </HEAD>
    <BODY>
    <DIV><FONT face=3DArial size=3D2>Please excuse me
    re-posting this =
    question, but I=20
    have new info and needed a new subject line. 
    :-)</FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>I'm trying to
    use a very nice little =
    Flash audio=20
    player script on a Blogger page. Here's what it looks like on
    a simple =
    HTML=20
    page:</FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><A href=3D"
    http://ayersvirtual.com/deleteme.htm"><FONT
    face=3DArial =
    size=3D2>
    http://ayersvirtual.com/deleteme.htm</FONT></A></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>On that page
    above, in all my browsers, =
    <STRONG>the=20
    spacing above and below the audio
    player</STRONG> is =
    fine. That's=20
    what I want.</FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>But when I put
    the same code in a =
    Blogger post,=20
    there are <STRONG>massive top-bottom margins in Firefox
    3</STRONG>, and=20
    <STRONG>none at all in IE 7</STRONG>.
    </FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>Here is a sample
    Blogger post showing =
    this:=20
    </FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial=20
    size=3D2>
    http://pattyayers.blogspot.com/2008/07/blogger-flash-audio-playe=
    r-problem.html</FONT><A=20
    href=3D"
    http://pattyayers.blogspot.com/"></A></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>I dug through
    Blogger's CSS, and don't =
    see anything=20
    that should cause this. I added a line of CSS targeted at the
    =
    &lt;object&gt;=20
    tag, zeroing its margins, but that didn't do it.
    </FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>Any help with
    figuring this =
    out would be MUCH=20
    appreciated!  :-)</FONT></DIV>
    <DIV><BR><FONT face=3DArial size=3D2>--
    <BR>Patty Ayers | </FONT><A=20
    href=3D"
    http://www.WebDevBiz.com"><FONT
    face=3DArial=20
    size=3D2>www.WebDevBiz.com</FONT></A><BR><FONT
    face=3DArial =
    size=3D2>Free Articles on=20
    the Business of Web Development<BR>Web Design Contract,
    Estimate Request =
    Form,=20
    Estimate
    Worksheet<BR>--</FONT></DIV></BODY></HTML>
    ------=_NextPart_000_0157_01C8E5D5.30A1E450--

    Yeah, it does make me appreciate Wordpress. I would have
    stuck with it, but
    when I found out that you have to pay to edit your CSS (on
    their hosted
    plan), I switched back to Blogger!
    I'll keep my eye on that beta ("draft") version of Blogger. I
    have to be
    cautious with my client's account, but maybe I'll try it for
    my own blogs.
    Thanks again...!
    Patty Ayers | www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet
    "Mad Dog" <[email protected]> wrote in
    message
    news:[email protected]...
    > I'm glad it worked. Yes, it's weird how Blogger adds
    <br>s, but remember,
    > it's for the masses who still act like they're on
    typewriters, so it does
    > make sense for most people. As I mentioned, the new
    version (in Draft mode
    > now) supposedly will get rid of that. Funny....the first
    thing I was going
    > to tell you want to remove anything more than a single
    space from the
    > <object>.....
    >
    > I'm surprised the setting affects everything. I would
    have expected it
    > would only affect a new post, not everything!
    >
    > Makes ya appreciate Wordpress, doesn't it? (Though I do
    like the interface
    > in Blogger)
    >
    > Anyway, glad I could help point you in a direction.
    >
    > MD
    >
    > P@tty Ayers ~ACE wrote:
    >> I think I found a way! I can't leave that setting
    turned off, because
    >> my client needs it turned on. (What a bizarre and
    silly way Blogger
    >> handles something as simple as paragraphs of text!)
    >>
    >> But, if I remove every ounce of white space from the
    <object> tag
    >> before I paste it in, Blogger doesn't add any
    <br> tags into it.
    >>
    >> I believe this is going to work. Mad Dog, thank you
    VERY much for
    >> giving me the clues I needed. I truly appreciate
    it!! This was really
    >> about to drive me crazy.
    >>
    >> --
    >> Patty Ayers | www.WebDevBiz.com
    >> Free Articles on the Business of Web Development
    >> Web Design Contract, Estimate Request Form, Estimate
    Worksheet
    >>
    >> "P@tty Ayers ~ACE"
    <[email protected]> wrote in
    >> message news:[email protected]...
    >>>
    >>> "Mad Dog"
    <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>
    >>>> First...try going into the SETTINGS >
    FORMATTING and change
    >>>> "Convert line breaks" to "No." That might
    help, but might not.
    >>>> Blogger loves adding <br> and has been
    known to add them in
    >>>> embedded objects.
    >>>
    >>> That stops Blogger from adding <br /> tags
    into my <object> code!
    >>> Yay!! But unfortunately it left all of my blog
    posts completely without
    >>> any
    >>> paragraphs at all. If this was just for *my*
    blog, I could just add
    >>> the <p> tags in (which I tried, and it
    works). But it's for my
    >>> client's blog, and she's not going to do that.
    >>>
    >>> Does Blogger seriously not have a setting where
    hard returns are
    >>> turned into normal paragraph tags?? It's either
    <br> tags everywhere
    >>> and anywhere, or nothing??
    >>>
    >>>
    >>> --
    >>> Patty Ayers | www.WebDevBiz.com
    >>> Free Articles on the Business of Web Development
    >>> Web Design Contract, Estimate Request Form,
    Estimate Worksheet
    >>> --
    >>>
    >>>
    >>>
    >>>>
    >>>> If that doesn't do it, try using the new
    Draft version of Blogger
    >>>> (
    http://draft.blogger.com/).
    It's still a work in progress (it won't
    >>>> Autosave!) but it doesn't add the automatic
    <br> linebreak. Check
    >>>> out more info about it at
    >>>>
    http://bloggerindraft.blogspot.com/2008/06/new-feature-new-post-editor.html,
    >>>> especially about halfway down. It's
    certainly worth a try!
    >>>>
    >>>> (I used Draft Blogger when I was away a
    couple of weeks ago since
    >>>> if you advance date a post, it won't show up
    until then, unlike the
    >>>> current version which posts it immediately
    but with an advance
    >>>> date. Doh!) MD
    >>>>
    >>>>
    >>>> P@tty Ayers ~ACE wrote:
    >>>>> The "Edit HTML" window in Blogger is a
    strange thing. I never see
    >>>>> much HTML in there. There are no
    <p> or <br> tags, just my text.
    >>>>> The code that I paste into the "Edit
    HTML" window has no extra <br
    >>>>> /> tags. Blogger apparently adds them
    before publishing the page.
    >>>>>
    >>>>> In other words, no, I can't manually
    remove them, because they're
    >>>>> not shown to me. :-(
    >>>>>
    >>>>> Do you use Blogger, MD? Is the "Edit
    HTML" feature like that for
    >>>>> you, also? Any other ideas?
    >>>>>
    >>>>> --
    >>>>> Patty Ayers | www.WebDevBiz.com
    >>>>> Free Articles on the Business of Web
    Development
    >>>>> Web Design Contract, Estimate Request
    Form, Estimate Worksheet
    >>>>>
    >>>>> "Mad Dog"
    <[email protected]> wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> Have you gone into the HTML window
    and manually removed them?
    >>>>>>
    >>>>>> P@tty Ayers ~ACE wrote:
    >>>>>>> Yup, Blogger has added 7 <br
    /> tags *inside* my <object> tag.
    >>>>>>> Argh. What I need is a way to
    stop Blogger from doing that. I
    >>>>>>> wonder if I can trick it
    somehow.
    >>>>>>>
    >>>>>>> --
    >>>>>>> Patty Ayers | www.WebDevBiz.com
    >>>>>>> Free Articles on the Business of
    Web Development
    >>>>>>> Web Design Contract, Estimate
    Request Form, Estimate Worksheet
    >>>>>>>
    >>>>>>> "P@tty Ayers ~ACE"
    <[email protected]> wrote
    >>>>>>> in message
    news:[email protected]...
    >>>>>>>> I'm sure you're both right,
    but there are no <br /> tags in the
    >>>>>>>> <object> code that I
    enter into Blogger. For some perverse
    >>>>>>>> reason, Blogger adds them.
    Not sure where that leaves me. :-( Any
    >>>>>>>> ideas? --
    >>>>>>>> Patty Ayers |
    www.WebDevBiz.com
    >>>>>>>> Free Articles on the
    Business of Web Development
    >>>>>>>> Web Design Contract,
    Estimate Request Form, Estimate Worksheet
    >>>>>>>> --
    >>>>>>>>
    >>>>>>>> "Speculumcm"
    <[email protected]> wrote in message
    >>>>>>>>
    news:[email protected]...
    >>>>>>>>> Osgood escribió:
    >>>>>>>>>> You have quite a few
    <br /> tags within the <object> tag
    >>>>>>>>>> itself which
    should'nt be there and will cause spacing issue.
    >>>>>>>>>> I'd remove them and
    see what happens.
    >>>>>>>>>>
    >>>>>>>>>
    >>>>>>>>> Yep, Osgood it's right,
    remove <br /> tags within <object> tag
    >>>>>>>>> and <embed> tags
    as well. Something like this:
    >>>>>>>>>
    >>>>>>>>> <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    >>>>>>>>> codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"
    >>>>>>>>> width="290"
    height="24"> <param name=movie
    >>>>>>>>> value="
    http://mojomom.com/podcast/audio-player/player.swf"><param
    >>>>>>>>> name=quality
    value=high><param name="LOOP" value="false">
    >>>>>>>>> <param name="wmode"
    value="transparent"><param name="FlashVars"
    >>>>>>>>>
    value="playerID=1&amp;soundFile=http://media.libsyn.com/media/mojomom/Mojo__Mom_and_Momma _Zen_v1.mp3">
    >>>>>>>>> <embed
    src="http://mojomom.com/podcast/audio-player/player.swf"
    >>>>>>>>>
    FlashVars="playerID=1&amp;soundFile=http://media.libsyn.com/media/mojomom/Mojo__Mom_and_M omma_Zen_v1.mp3"
    >>>>>>>>> quality=high
    >>>>>>>>> pluginspage="
    http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"
    >>>>>>>>>
    type="application/x-shockwave-flash" width="290" height="24"
    >>>>>>>>> loop="false">
    </embed> </object>
    >>>>>>>>>
    >>>>>>>>>
    >>>>>>>>> Eso lo arregla
    definitivamente
    >>>>>>>>>
    >>>>>>>>> Saludos
    >
    >

  • Can't Start X w/ ATI (Please Delete! Different problem than posted)

    UPDATE: Video drivers are not the problem.  HAL policy problem.
    I just did a fresh install and update on my dell.  I followed the beginner's guide to setup X and my drivers don't want to work.  I've tried xf86-video-ati and xf86-video-radeonhd.  The only driver that does work is the vesa for a no xorg.conf setup, but obviously the resolution is not up to par.  The only thing that happens with the ati drivers is a blank screen and a freeze after I start X.  I'm wondering if it a bad config for my monitor, otherwise I have no clue. 
    The only problem I could pull out of my Xorg.log was this:
    RadeonHD (0): Query for Restore Registers: failed
    Here's my xorg.conf
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "glx"
    Load "dri2"
    Load "extmod"
    Load "dri"
    Load "dbe"
    Load "record"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "AccelMethod" # [<str>]
    #Option "offscreensize" # [<str>]
    #Option "SWcursor" # [<bool>]
    #Option "ignoreconnector" # [<str>]
    #Option "forcereduced" # [<bool>]
    #Option "forcedpi" # <i>
    #Option "useconfiguredmonitor" # [<bool>]
    #Option "HPD" # <str>
    #Option "NoRandr" # [<bool>]
    #Option "RROutputOrder" # [<str>]
    #Option "DRI" # [<bool>]
    #Option "TVMode" # [<str>]
    #Option "ScaleType" # [<str>]
    #Option "UseAtomBIOS" # [<bool>]
    #Option "AtomBIOS" # [<str>]
    #Option "UnverifiedFeatures" # [<bool>]
    #Option "Audio" # [<bool>]
    #Option "AudioStreamSilence" # [<str>]
    #Option "HDMI" # [<str>]
    #Option "COHERENT" # [<str>]
    #Option "ForceLowPowerMode" # [<bool>]
    #Option "LowPowerModeEngineClock" # <i>
    Identifier "Card0"
    Driver "radeonhd"
    VendorName "ATI Technologies Inc"
    BoardName "M96 [Mobility Radeon HD 4650]"
    BusID "PCI:2:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Any help or ideas would be appreciated.  Thanks.
    Last edited by silentcontender (2010-04-03 03:15:00)

    Thanks for the moral support.  It should be okay as long as I can get something to work.  This is just supposed to be a work netbook; I don't need fantastic display, I just *need* display.
    After following some of your advice in this thread, I found I'm able to start a graphical environment, however no keyboard input works.  I'm blacklisting gma500_fgx, but need advice as to where to go from there.
    I've also been following the thread here but I can't comprehend half of what's going on there.  I do understand that Ubuntu (and, I imagine, its derivatives) are able to work on it.  Maybe it's just worth saving myself the headache and install Lubuntu for the short-term (until Arch has more standard packages for this hardware)?  Do you think there will be at least aur-standard packages for support for this hardware relatively soon?
    Thanks.

  • Skype V. 7.6 (409) Mac audio and video problems

    I am getting inconsistent problems with audio and video. Here are the problems when calling three different contacts.
    1. Audio to Audio worked fine with my first contact, but trying to add video crashed the audio. This happened when I tried to add video, and also when the other person tried to add video. These same problems persisted regardless of who called whom. In the end, we had a good audio to audio conversation and were also able to send messages and share files without problems.
    2. My audio and video were received by the second contact, but I could not receive audio or video from them. These same problems persisted regardless of who called whom. In the end, I used audio and video while the other person typed messages in response.
    3. My audio and video were received by the third contact, and I could receive their video, but they could not hear my audio. These same problems persisted regardless of who called whom. We didn't bother trying to continue our conversation.  
    So, I checked all my settings to ensure audio and video were properly set up. Also, I made a successful skype test call. It is very puzzling to me since the results were inconsistent with each of these contacts. If the same problem existed at my end, then I could expect a hardware or driver issue on my computer, but sometimes the other person had the problem, I think. Can anyone help? Cheers

    Lueh, try the steps outlined in the KB below. Looks like there is an issue with the full text index that can be resolved by removing/rebuilding.
    http://blogs.skype.com/2015/03/18/skype-7-6-for-mac/
    Please feel free to get in touch if you need any help.
    Cheers,
    Lando

  • Problems with 1.5 and vista - audio recording

    Hello.  I have PP 1.5.  I have an Audio Techinca AT2020USB microphone.  I have a couple different computers running 1.5 - The one that has XP as an OS, I can use the mic to record audio.  On the computer that runs Vista, I can not.  Is anyone aware of any patch or anything that will allow me to make this work?
    Please, advise.  Thank you.
    bobhugejunk

    YOU ARE THE MAN!!!!  It took a little bit of working the configurations, but I got it to work....oh, me so happy...oh, oh, me so happy
    Thank you!
    Make sure you visit www.bobhughesmichigan.com for my music samples, schedule and video information!
    Date: Wed, 21 Oct 2009 19:34:20 -0600
    From: [email protected]
    To: [email protected]
    Subject: Problems with 1.5 and vista - audio recording
    As Jim points out, CS3 was the first Vista-certified version, though many did get PrPro 2.0 to run on it.
    Now, if PrPro 1.5 is running otherwise, you might have some luck with http://www.asio4all.com You'll need to download this freeware, install it, and then point PrPro to it in Edit>Preferences>Audio Hardware>Asio Settings for input and output.
    Good luck,
    Hunt
    >

  • M-audio AV30 speaker problem

    I have m-audio AV30 speakers attached to my system, and when they're working, they're great.  My problem is this:
    When I shut down my system and restart, my speakers are not recognized, and the internal speaker is used.  I can go to to system preferences and select line out so my speakers will operate, and they will do so, until I shut down again.  I have been in touch with everybody includng specialists at Cupertino, and all I can get is "we're familiar with the problem, and we're working on it" and have been getting this response for almost a year. Does anybody out there have similar problems, and if so, howdid you correct them?
    Thank you.

    Merkutio,
    I can relate to you! I have a FX Solo, and only last week started using Logic Express. Let me see if I can help.
    1) Please be patient. Logic takes more time to learn than garageband, but when you learn it, it is amazing.
    2) In the CD, there are some manuals. I know you have been told this before, but honestly, reading them carefully, and taking notes, has been very useful for me. Specially the 'logic guide for garageband users'.
    Now, to your issue...
    First off, what are you trying to record? If its an instrument or vocals via the FW solo, then insert and AUDIO track in Logic (Track, Create Multiple, Audio) and then just below where it says I/O in the chanel strip, select the input channel (2 in the case of guitar, 1 in the case of microphone). Then click the R button and provided your monitors are well connected, you have the latest driver for the FW Solo, etc. you should hear sound. Recording it is just a matter of hitting 'rec' and off you go.
    If you want to record from a midi controller connected via USB or with your keyboard, you can insert and AUDIO INSTRUMENT track and in the same in input field, select and instrument. Hit the keys, you should hear sound!
    Play around, make mistakes, hit all the buttons. And read carefully, thats how Im approaching it.
    Make sure to leave the mouse button pressed when above the fields so you can see the options (ok, extremely logical for some, but not for me at the beginnning)
    Hope this helps
    Khont
    Vote for me
    www.thedjlist.com

  • I need to upgrade my 10.5.1 os on my G4/1.25 (I'm having some audio-midi setup problems), but it's a machine that is not connected to the internet.  Do I have any options?  Thanks!

    Friends,
    I'm having some audio-midi setup problems on my G4/1.25/10.5.1 machine.  I'm thinking that a routine OS upgrade might help.  However, this machine is not connected to the internet.  Are there any alternate methods for upgrading system software?  Thanks in advance!

    OK, what you should do is download the updates on another machine and burn them to a disc.  Start at this link http://support.apple.com/downloads/#leopard for downloads and find, among other things, the 10.5.8 combo updater that works on PPC machines, plus security, QuickTime and other updates.  Going from 10.5.1 to 10.5.8, there will probably be a bunch of things that you should install.  Being off the internet with the machine, you can't have Software Update sort it out, so something might get missed, unfortunately.
    My suggestion is this: if it looks like you might need a download, get it onto that disc.

  • Can any one help me with CD/Audio disc playback problem on media center m8200n running Windows Vista

    I have HP Media Center m8200n Dest top running WINDOWS VISTA HOME PREMIUM 32 BIT edition.It  has MEDIA CENTER and MEDIA PLAYER. I experience problems with the computer being able to play CD music discs.  What happens is that the Disc will play only for 63 seconds exactly and then stop playing the track, the player will then skip tracks, settle on another one, play it for a few moments and then skip to the end and then play nothing. It gives me an error message that it cannot read the disc.  This happens with any and every standard store bought CD new or used. These CDs also do play on my laptop running basically same operating system.  This happens whether I trying to Play a disc or burn the disc to the hard drive.  The drives work great though as they do play DATA discs all the way through. MP3 discs play fine.  It also plays the DVD movies with no problem. Windows media player doesn't make it work, also installed VLC player and REALPLAYER to try some other players and they also don't work for music, only DVDs. They all only produce 63 seconds of music play back  from a disc. I've already tried Changing ENHANCEMENTS, UPDATING DRIVERS, UNINSTALLING THE DISC DRIVE and then re-installing back into WINDOWS but none of that helped. SYSTEM came with the integrated REALTEK HIGH DEFINITION AUDIO on the mother boad for multi channel playback options and I've downloaded those updated drivers again but that doesn't do anything.  Thinking it might be a hardware drive problem I purchased a new LG BLU-RAY DRIVE/BURNER super multi drive which plays fantastic for any video format from Blu-Ray to regular DVD format with the Power DVD software but the machine is causing even this new drive to have the same problem with the audio and it cuts out playing the audio disc within the same 63 seconds running audio disc. . There seems to be a software glitch and I'm wondering if you can help.  Also the sound card seems to work perfectly fine. I downloaded I-Tunes and copied over audio files to the computer via my flash drive and when I play those files from the hard drive, or even the sample windows media files which reside on the hard drive in MY MUSIC, all files play through perfectly, fully, and with great sound. Audio out jacks in back of computer work fine as also does the front head phone jacks upfront. Something in the software when playing a audio disc/file through the dic drives???? I've got hundreds of CD and it's a bummer not beng able to lay them through the system. Does anyone think moving from VISTA PREMIUM to a upgraded version like ULTIMATE or even going up to Windows 7 might solve problem??? What about the 32 bit verses 64 bit editions??? My system should be able to run in the 64 bit frame work also. THANK YOU in advance!!!

    Hi,
    All dimms work individually?  Did you run a bootable memory diagnostic to determine the reliability? Did you run a diagnostic on the hard drive?  I believe that your PC came with PC Doctor and that you can create a bootable diagnostic disk. Did you create that disk?  Be sure to purchase memory dimms from a manufacturer that will stand behind their product with a guarantee such as Crucial, Corsair or Kingston. Buy directly from the manufacturer and they will stand behind the guarantee. Be sure that all of the dimms are identical. Use CPU-Z to determine that the specifications are indeed identical.
    You have some options to consider once you can stablize your PC for updating the BIOS.
    Locate a hard drive and use the HP external recovery media to build a VISTA system. -- safest method
    Use a VISTA repair disk and at the command prompt try executing the HP BIOS update (Admin). -- safe
    Try a bootable BIOS update process as suggested at this site. --  less safe but doable
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • We have created shared folder on multiple client machine in domain environment on different 2 OS like-XP,Vista, etc. from some day's When we facing problem when we are access from host name that shared folder is accessible but same time same computer when

    Hello All,
    we have created shared folder on multiple client machine in domain environment on different 2 OS like-XP,Vista, etc.
    from some day's When we facing problem when we are access from host name that shared folder is accessible but same time same computer when we are trying to access the share folder with IP it asking for credentials i have type again and again
    correct credential but unable to access that. If i re-share the folder then we are access it but when we are restarted the system then same problem is occurring.
    I have checked IP,DNS,Gateway and more each & everything is well.
    Pls suggest us.
    Pankaj Kumar

    Hi,
    According to your description, my understanding is that the same shared folder can be accessed by name, but can’t be accessed be IP address and asks for credentials.
    Please try to enable the option below on the device which has shared folder:
    Besides, check the Advanced Shring settings of shared folder and confrim that if there is any limitation settings.
    Best Regards,
    Eve Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • I bougt a new  Macbook pro in 02/26/2013, in  11/25/ 2013, my trackpad become bulging, they exchange the trackpad, but not the bulging battery.  I went there yesterday, with different problem, and they said one screw  came off from the  truckpad again!

    I bought a new  Macbook pro in 02/26/2013 from Apple Canadian Ices -003.  Than I could not use it, because  my cursor uncontrollably  was jumping around the screen, I was  resumed my trackpad become bulging, Than on11/25/ 2013 they changed my trackpad for free, because was manufactoring defect,  but not the bulging battery.  They said that is do not needed.  Since that my cursor is quiet often quivering, I think my Macbook has serious  manufacturing defect. But they said no, during a year period I went to  the genius bar at least 15 times, with this and similar problems.   I went there yesterday, with different problems, and they said one of the screws  came off from my   truck pad, therefore they need to fix it and change it.  I said: -  What,  how, what  is the real problem?  A screw does not comes off just like that?  They will change my trackpad again, but not the battery. They said  has to rebuild the operation system, I'm  saving all of my data right now! I would like to exchange the battery too, or maybe get a new Macbook. My Macbook is 2010 China model. How long I would have this trackpad  problem? What are you suggesting?

    If it's a 2010 as you say towards the end of your post, it's out of warranty. The battery isn't covered in that case. Why don't you just buy a new battery if that's your concern? If it's a 2013 as you say up at the top, it shouldn't have a bulging battery. How do you know it does? If it really does, ask for the store manager and explain the problem.

  • Dear , please help me to solve my problem in activating my iPhone Where I lost it since 3 months and when found it cannot activating my ID Where give me (Your Apple ID has been disabled for security reasons. To enable your account, reset your password at

    Dear , please help me to solve my problem in activating my iPhone
    Where I lost it since 3 months and when found it cannot activating my ID
    Where give me (Your Apple ID has been disabled for security reasons. To enable your account, reset your password at applied.apple.com)
    And try to reset my password but cannot please help me where am a poor man and cannot pay another money to solving this problem to any one
    My iPhone data
    Ime:  ****
    Model: A1332
    FCC  ID : BCG-E2380A
    IC: 579C-E2380A
    MY id at cloud   ****
    Password    ( ****)
    My country : Egypt
    MY EMAIL : ****
    Tell no: ****
    <Personal Information Edited By Host>

    The following may help:
    Apple ID: 'This Apple ID has been disabled for security reasons' alert appears - Apple Support
    If you didn't receive your Apple ID verification or reset email - Apple Support

Maybe you are looking for