Can ayone help with the best way to restore my software function?

Hi, I'm running OS 10.6.8 on an intel iMac.
I haven't done a software update for a while, due to poor connection speed, but last night, as the 'net was zipping along nicely for me, I installed all the latest reccommended updates, some via software update, but iTunes I downloaded from the apple download page.
When all the updates were installed, I restarted the Mac.
Now a large proportion of my applications, both native and non-apple, will not run.
I should add that I use firefox, and updated that last night as well.
I ran disk utility, and verified and repaired permissions. (A lot of repairs needed there!)
I tried to verify the hard drive, but it showed as needing repair, so I rebooted from my snow leopard install disc and ran the disk utility repair from there, successfully.
After I restarted in the usual manner, my software still won't run.
All I get is the "iTunes (or whatever app) quit unexpectedly" box. Hitting reopen from there just gives me the same again.
Do I need to go back and reinstall everything from scratch? OSX? Just the non-functioning apps?
The current hard drive is the third in this machine (iMac originially purchased at the start of 07).
Last time we replaced the drive was about this time last year.
I restored from time machine  - the last saved back-up from there was from July of last year, as for some reason, time machine had not worked properly in the interim - I think because the drive was too full, or some such.
Anyway, I was in the process of doing a complete reinstall, update and overhaul after getting the new hard drive.
We managed to savage some of the data from the old drive, so I was going to replace what files I could into the system, then erase my external hard drive and start time machine fresh. Trouble was, the family (and there's a lot of us) all jumped in and started using the machine before I got through updating everything and I got fed up trying to sort it out. I never started time machine again. I've backed up anything I wanted kept safe on an portable external drive and a couple of USBs. Therefore my more recent data is safe if I need to go back to that time cpsue back-up from last July.
Not sure about everyone elses. My external drive probably has enough space on it to copy pretty much everything from the main hard drive, but I can't use it via time capsule. It's the wrong format, and I dont want to lose the data I have already copied to it. I could just ignore the fact the others will lose their files, but I'm not that mean spirited, so will try to back up for htem if I can, before I do anything drastic.
If I have to erase and reinstall, is it possible first to just to copy the whole drive manually to the space on my portable drive, or should I just copy everyone's user files and the cntents of the shared folder?
I'm not hugely experienced in this, so I'd be grateful for any useful suggestions.
Thanks, in anticipation.
~ Betty.

Thanks. All your help is really appreciated. I wish I could report a better outcome.
I gave it a try. Got this:
while ! curl -C - -O 'http://supportdownload.apple.com/download.info.apple.com/Apple_Support_Area/Appl e_Software_Updates/Mac_OS_X/downloads/041-4966.20110725.gt5tv/MacOSXUpdCombo10. 6 .8.dmg'; do sleep 10; done
** Resuming transfer from byte position 299
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:--  0:00:02 --:--:--     0
curl: (33) HTTP server doesn't seem to support byte ranges. Cannot resume.
So, no luck there.
Sleep is always nice, but I don't find I need it ar 2.28 in the afternoon! I'm in Western Australia, so I'm guessing we're in vastly different time zones.
I'm currently attempting to get 10.6.7 combo via speed download. Thus far, 1.6% received in around half an hour. CUrrent estimated time remaining approx 33 hours!
No ethernet cable.
DSL is not available to me. I'm on a pair gain, so the only way for me to get broadband is via my wireless modem.
I tried to do network diagnostics when software updated kept failing.
It's very odd. External modem, which is what I'm using, is greyed out, so I can't select it.
No point checking the other options. Ethernet just tells me I'm not connected to ethernet or DSL, which I know. Airport wants me to select a network to join. What? I'm connected to the net NOW, via my external wireless modem. Airport is turned on, but that's only so that the other folks in my house, should they choose to do so, can connect their laptops via airport through this machine.
I've never had a problem with software update until I did the first download of the 10.6.8 combo, following the instllation of which, everything went kablooie.
I guess I'll just wait however long it takes for this speed download (not speedy, due to my currently restricted to dial-up speed isp account - but at least I can resume if interrupted) of 10.6.7 to finish and see how that goes. It could be another couple of days before I know.
Failing that, I think my next step is to go to my local Mac expert (shop 30 minutes drive from home) and see what he can suggest. It occurs to me that he may be able to give me the 10.6.8 combo on a disc or USB drive, so I can give it another try before we proceed to costly investigations. He may or may not charge me a little something for copying the .dmg file for me, but I really dont want to have to get into paying his hourly service rate for further work, if I can manage to sort it for myself. The thought of spending more money on this iMac after already replacing the hard drive (TWICE! - we're on HDD #3) holds ittle appeal. The machine is almost 6 years old. I really wish I could afford to upgrade.
I'll let you know if I have a breakthrough.
Thanks again.

Similar Messages

  • Please help with the best way of adding together numbers like this ..

    Hey.
    What's the best way with J2ME to acheive this .. I have an integer, let's the it's value is "123456" and what I wanna do is to add them together this way: 1 + 2 +3 + 4 + 5 + 6. How would I do that? Thanks in advance!

    My solution should keep going until you have all the digits added, regardless of the number of digits. Because it divides the number by 10 each time through the loop, it'll stop when you have divided it enough to reach 0 using integer division. So if your number only has 1 digit, the loop will only run 1 time, and if you have a 20 digit long value (change types to long), it'll run 20 times.
    If you want all of the digits added up, this'll do it. If you want the first n digits, and don't know how many digits(m) there are it's going to need a different approach. If you know how many digits long the number is....
    int number = 12345678;
    int totalLength = 8;
    int usefulDigits = 3;
    int firstDigit = totalLength - usefulDigits;
    for(int i=0; i < totalLength; i++){
        if(i >= firstDigit){
            sum += a % 10;
        a = a / 10;
    }This requires you to figure out how many digits are in the number ahead of time. I'm not sure about the fastest way to do this, but I'd likely do it with a series of if() statements that look for the number of digits in a binary-search style...
    //pseudo code...
    if(num >= 10000){
        //at least 5 digits...
        if(num >= 1000000){
            //at least 7 digits...
            ... fill it in ...
        }else{
            //5 or 6 digits...
            if(num >= 100000){
                //six digits...
                return 6;
            }else{
                //5 digits
                return 5;
    }else{
        .... just like above...
    }Edited by: hooble on Jan 28, 2008 10:07 AM

  • Hi can you help with the following panic attack report,

    hi can you help with the following panic attack report, macbook pro OS 10.7.3
    Interval Since Last Panic Report:  157997 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    7ADCF50C-CC18-405E-9D5C-03325D3A83FA
    Thu Mar 29 05:37:28 2012
    panic(cpu 0 caller 0xffffff80002c266d): Kernel trap at 0xffffff800021d905, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffef801a845328, CR3: 0x0000000019452019, CR4: 0x00000000000606e0
    RAX: 0xffffff801a8450d8, RBX: 0xffffff800e79f340, RCX: 0xffffff801a8450d8, RDX: 0xffffef801a8450d8
    RSP: 0xffffff80a4623e90, RBP: 0xffffff80a4623eb0, RSI: 0x0000000020c85580, RDI: 0x0000000000000001
    R8:  0xffffff80008bd890, R9:  0xffffff80058aeac8, R10: 0xfffffe80539a9928, R11: 0x0008000000053d89
    R12: 0xffffff800e79f370, R13: 0xffffff8000846288, R14: 0xffffff801a8450c0, R15: 0x0000000000000001
    RFL: 0x0000000000010206, RIP: 0xffffff800021d905, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0xffffef801a845328, Error code: 0x0000000000000002, Faulting CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80a4623b50 : 0xffffff8000220702
    0xffffff80a4623bd0 : 0xffffff80002c266d
    0xffffff80a4623d70 : 0xffffff80002d7a1d
    0xffffff80a4623d90 : 0xffffff800021d905
    0xffffff80a4623eb0 : 0xffffff800021daad
    0xffffff80a4623ee0 : 0xffffff800023caa9
    0xffffff80a4623f10 : 0xffffff800023cb36
    0xffffff80a4623f30 : 0xffffff80005a3258
    0xffffff80a4623f60 : 0xffffff80005ca448
    0xffffff80a4623fb0 : 0xffffff80002d7f39
    BSD process name corresponding to current thread: SophosAntiVirus
    Mac OS version:
    11D50b
    Kernel version:
    Darwin Kernel Version 11.3.0: Thu Jan 12 18:47:41 PST 2012; root:xnu-1699.24.23~1/RELEASE_X86_64
    Kernel UUID: 7B6546C7-70E8-3ED8-A6C3-C927E4D3D0D6
    System model name: MacBookPro8,3 (Mac-942459F5819B171B)
    System uptime in nanoseconds: 5720232329361
    last loaded kext at 5694112402758: com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.3 (addr 0xffffff7f807a3000, size 86016)
    last unloaded kext at 248390619372: com.apple.driver.AppleUSBUHCI          4.4.5 (addr 0xffffff7f80a4e000, size 65536)
    loaded kexts:
    com.sophos.kext.sav          7.3.0
    com.apple.driver.AppleUSBCDC          4.1.15
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.26
    com.apple.driver.AppleHDA          2.1.7f9
    com.apple.driver.AppleMikeyDriver          2.1.7f9
    com.apple.driver.AppleIntelHD3000Graphics          7.1.8
    com.apple.driver.AGPM          100.12.42
    com.apple.kext.ATIFramebuffer          7.1.8
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.2
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.5d4
    com.apple.driver.AppleMuxControl          3.0.16
    com.apple.driver.AppleLPC          1.5.3
    com.apple.ATIRadeonX3000          7.1.8
    com.apple.driver.AppleUSBTCButtons          225.2
    com.apple.driver.AppleUSBTCKeyboard          225.2
    com.apple.driver.AppleIRController          312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.iokit.SCSITaskUserClient          3.0.3
    com.apple.iokit.IOAHCIBlockStorage          2.0.1
    com.apple.driver.AppleUSBHub          4.5.0
    com.apple.driver.AppleFWOHCI          4.8.9
    com.apple.driver.AirPort.Brcm4331          513.20.19
    com.apple.iokit.AppleBCM5701Ethernet          3.0.8b2
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleAHCIPort          2.2.0
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleUSBEHCI          4.5.8
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          167.3.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.1
    com.apple.driver.AppleIntelCPUPowerManagement          167.3.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.3
    com.apple.iokit.IOUSBMassStorageClass          3.0.1
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleAVBAudio          1.0.0d11
    com.apple.driver.DspFuncLib          2.1.7f9
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOFireWireIP          2.2.4
    com.apple.iokit.IOBluetoothSerialManager          4.0.3f12
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAVBFamily          1.0.0d22
    com.apple.driver.AppleHDAController          2.1.7f9
    com.apple.iokit.IOHDAFamily          2.1.7f9
    com.apple.iokit.IOAudioFamily          1.8.6fc6
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.ApplePolicyControl          3.0.16
    com.apple.driver.AppleSMC          3.1.1d8
    com.apple.driver.IOPlatformPluginFamily          4.7.5d4
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleGraphicsControl          3.0.16
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.iokit.IONDRVSupport          2.3.2
    com.apple.kext.ATI6000Controller          7.1.8
    com.apple.kext.ATISupport          7.1.8
    com.apple.driver.AppleIntelSNBGraphicsFB          7.1.8
    com.apple.iokit.IOGraphicsFamily          2.3.2
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.3f12
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.3f12
    com.apple.iokit.IOBluetoothFamily          4.0.3f12
    com.apple.driver.AppleThunderboltDPInAdapter          1.5.9
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.5.9
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.1
    com.apple.driver.AppleUSBMultitouch          227.1
    com.apple.iokit.IOUSBHIDDriver          4.4.5
    com.apple.driver.AppleUSBMergeNub          4.5.3
    com.apple.driver.AppleUSBComposite          4.5.8
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.3
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.7
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.driver.XsanFilter          403
    com.apple.iokit.IOAHCISerialATAPI          2.0.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.3
    com.apple.driver.AppleThunderboltNHI          1.3.2
    com.apple.iokit.IOThunderboltFamily          1.7.4
    com.apple.iokit.IOUSBUserClient          4.5.8
    com.apple.iokit.IOFireWireFamily          4.4.5
    com.apple.iokit.IO80211Family          412.2
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOAHCIFamily          2.0.7
    com.apple.iokit.IOUSBFamily          4.5.8
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          331.3
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.8
    com.apple.iokit.IOACPIFamily          1.4
    Model: MacBookPro8,3, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2.2 GHz, 4 GB, SMC 1.70f5
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.100.98.75.19)
    Bluetooth: Version 4.0.3f12, 2 service, 18 devices, 2 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK7559GSXF, 750.16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0245, 0xfa120000 / 4
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

    Get rid of Sophos Anti-Virus software you have installed. Use the uninstaller or:
    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash.  Applications may create preference files that are stored in the /Home/Library/Preferences/ folder.  Although they do nothing once you delete the associated application, they do take up some disk space.  If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application.  In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder.  You can also check there to see if the application has created a folder.  You can also delete the folder that's in the Applications Support folder.  Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item.  Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder.  Log In Items are set in the Accounts preferences.  Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab.  Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS.  Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term.  Unfortunately Spotlight will not look in certain folders by default.  You can modify Spotlight's behavior or use a third-party search utility, Easy Find, instead.  Download Easy Find at VersionTracker or MacUpdate.
    Some applications install a receipt in the /Library/Receipts/ folder.  Usually with the same name as the program or the developer.  The item generally has a ".pkg" extension.  Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications.  Here is a selection:
    AppZapper
    Automaton
    Hazel
    CleanApp
    Yank
    SuperPop
    Uninstaller
    Spring Cleaning
    Look for them at VersionTracker or MacUpdate.
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • Hi, can anyone tell me the best way to transfer my everything including itunes a/c to a brand new mac, thanks

    Hi, can anyone tell me the best way to transfer my everything including itunes a/c to a brand new mac, thanks

    Hello i recently transfered to a new mac and i have it perfectly figured out so first off dont use migration assestant if you don't want to get your old computer exactly on your new computer.  In my opinion starting on a fresh computer is best, BUT you still want your files so i have a video you can watch if my instructions don't make sense. 
    1. Go to finder and find your music folder
    2. click the folder labled itunes
    3. click itunes music or find the folder with all the folders in it that have names of artist or albums
    4. then select all those folders with the artis or album names with commant A this will select all those folders
    5. then drag these to and external hard drive or connect to your old mac from your new mac wirelessly to find these folder
    6. if you did wireless sharing option just drag all those folders to the itunes icon if you used an external harddrive find the folders on there and do the same.
    7. any questions please reply watching video will help.
    video link:
    http://www.youtube.com/watch?v=yI210AsGJ-o

  • Hello applecare  can you help with the macbook pro i did the update the last one and safari doesn't open anything .. what should i do ?

    hello applecare  can you help with the macbook pro i did the update the last one and safari doesn't open anything .. what should i do ?

    Hello John...
    You may have a Safari third party add on installed that was compatible with the previous version of Safari but not 5.1. Try troubleshooting > Safari: Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues
    FYI... this is a user to user forum. If you can't resolve the issue, information for contacting AppleCare  here.

  • Can anyone help with the installation of adobe creative suite 4 on windows 7

    can anyone help with the installation of adobe creative suite 4 on windows 7

    You're not going to get any help without providing FULL DETAILS about the problem and your system.
    Bob

  • Please can anyone help with the continuing password rejection problem with email.Ipad and other systems work fine but despite reloading my password on imac it bounces back.Apple store has been visited and I have tried everything they suggest.

    Please can anyone help with the continuing password rejection problem with email on my imac.My Ipad and other systems work fine but despite reloading my password on imac it bounces back.Apple store has been visited and I have tried everything they suggest.

    I use free Yahoo mail webMail access because folders I created in webmail access doesn't get set up in Apple Mail. While I was searching for post about password and keychain issues, I stumbled on several threads that complain about Mail folder issues, so I'm holding off on Apple Mail.
    On the password and keychain issue that your post is all about.  I've been using login keychain to save and automatical fill my login screens for a year or so successfully, with Safari and Chrome. Automatic form fill also works for Facebook login. Unfortunately, about 4 to 6 months ago, automatic password form fill stopped working with Yahoo webmail, while still worked for GMail (Safari and Chrome). I tried deleting the password entry for my two Yahoo email accounts to start fresh, but neither Safari not Chrome will even ask me if I want to save the password. I was so frustrated that I eventually installed the keypassX 0.43 (password manager) that is quite primitive sompare to OS X's keychain (when it works). Probably no surprise to you yet.
    The surprise, to me at least, is that, for whatever reason, password auto form-fill from keychain started working again for Yahoo webmail login on Safari about 5-7 days ago. Still doesn't work on Chrome!
    Two tips I can share, at least with webmail access:
    1. Password is save only for one of my yahoo mail accounts. When I login in with my other yahoo account, I get no prompt to save the password, and form fill doesn't work when I try to log in a second time with my other Yahoo mail account.
    2. On inspection of my login keychain, I see a webform password item saved for my Yahoo account that works with keychain. The name of the password is: login.yahoo.com(MyAccountName1#). When I open the password item and look in the Access Control tab, I see Safari and Chome are listed as allowed to access this password item..
         I also an "Internet password" item with a name of just login.yahoo.com. When I open the the password item, it looks just like the password item created for MyAccountName#1, but the MyAccountName#2 is listed in the Account field. Inside the Access Control tab, no apps are listed in access permission. I added Safari and Chrome to the lists of allowed app, saved the password item.
    Now when I bring up the Yahoo login page(by bookmark) on Safari, form fill fills in MyAccountname#1 for name and the proper password and I can login in. When I change the name to MyAccountName#2, the correct password is retrieved and I can log in! Alas, it still doesn't work on Chrome.
    BTW, I changed the password item type from "Internet password" to "Web Form password" and saw no difference! I also edited the name to be "login.yahoo.com (MyAccountName#2)" to look like the web form password item that works, but it has no effect either.
    From my experimentation, here's my observation:
    1. A Web Form password item is created for the first account name(MyAccountName#1) for login.yahoo.com and typed as Web Form password. When I log in using MyAccountName#2, an Internet Password is created, but no applications are listed as allowed to access the password item, even when the password item was created after just logged in and logged out to yahoo with the account name and password for MyAccountName#2.
    2. Manually adding Safari as an app that is allowed to use the password item works. Doesn't work with Chrome!
    The version of Safari I'm using is Version 5.1.7 (6534.57.2). My installed version of Chrome is Version 21.0.1180.79 beta.

  • Can you help with the code to publish Flash to my own domain.

    Thank you for your help, I publish the my site to my own domain, I do not use .Mac, I tested your code and ity works well on .Mac, can you help with the code to publish to my own domain.
    Thank you again

    You appear to have just collected a variety of code snippets and thrown them together, including a section of AS2 code ( gage.onRelease = function() {... )
    The suggestion I offered yesterday still stands.  You should find a tutorial regarding AS3 and the atan2 function.  Beyond that, what you show suggests this is a school assignment.  You should seek help from your fellow students and instructor if that is the case.

  • Hi, can anyone help with the problem I am having with pro book 4440s? I can't boot into windows 7.

    Hi, can anyone help with the problem I am having with pro book 4440s?  I can't boot into windows 7, nor can I enter the bios cause i fogot the password. the error I am getting says "windows failed to start. a recenr hardware or software change might be the cause.   it then gives me options to boot from a disc but I can't do that cause I am unable to get into the bios to change it to boot from a disc.
    The error message goes on :
    File: \Boot\BCD
    Status: oxcoooooof
    info: An error occurred while attempting to read the boot configuration.
    the only two options on the screen are enter=continue and ECS=exit
    I just can't get pass this screen.
    Please help.
    Thanks

    Hi,
    If you don't already have one, use another PC to create a Windows 7 Rescue CD.  Download the relevant ISO from the links below.
    Windows 7 32bit
    Windows 7 64bit
    You should use an application such as ImgBurn to burn the ISO to a CD - a guide on using ImgBurn to write an ISO to a disc is Here.  Once created, or if you already have this, tap away at the esc key as you start the notebook to enter the Start-up Menu.  Insert the Rescue CD.  Select Boot options ( usually f9 ), use the arrow keys to select the CD/DVD drive and hit enter.  You may also get a prompt to 'Press any key to continue' - do this if asked.
    When loaded, select Repair Your Computer and choose the Command Prompt.  When this loads, enter the following commands and hit enter after each one - include spaces as shown.
    Bootrec.exe
    bcdedit /export C:\BCD_Backup
    c:
    cd boot
    attrib bcd -s -h -r
    ren c:\boot\bcd bcd.old
    bootrec /RebuildBcd
    bootrec /fixmbr
    bootrec /fixboot
    Remove the Rescue CD and try rebooting the notebook.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • I had to reset my iphone 5 today because of software issues. what is the best way to restore all my apps?

    I had to reset my iphone 5 because of corrupt software issues. now I am trying to restore my apps. So are returning. Some are not. Some are making me pay for them again! What is the best way to restor all the apps?

    Sync them from your computer back to the iphone

  • I am needing help with the final steps in restoring my iPod Touch 5

    I need help with the final steps in restoring my iPod

    I was told that the iPod would automatically go to restore mode when connected to wifi. It did not do that

  • Can anyone help with the java applet issue

    Hello everyone,
    This is my first thread in this forum,
    I need a little help with the form developer...
    I have oracle 9i db , 9i form developer
    I don't want to run the form i created as a java applet
    HOW IS THAT DONE i.e NOT IN THE INTERNET EXPLORER?????????
    ***IF ITS POSSIBLE

    Hello,
    I don't want to run the form i created as a java applet
    No chance, because the Web Forms client is an applet and cannot be anything else.
    Francois

  • I need help with the best option for backup of itunes for laptop change?

    i want to change my itunes account from my existing laptop to my new laptop, whats the best way to back up or transfer my itunes?

    Try this link
    http://support.apple.com/kb/HT4527

  • What is the best way to restore the entire contents of Mac HD?

    After installing Snow Leopard my iMovie 6 project went haywire. As I found that others had the same problem, I backed up Mac HD with TM, and then re-installed Leopard using the erase procedure. After that I couldn't access my TM backups via TM, so I copied it to the Mac HD folder. This didn't work out too well, as I had to manually restore various applications and libraries. I then found out you can access the backups via TM by pressing Control, click. So I deleted almost all the files I copied and I'm ready to re-install the entire folder Mac HD via TM. Now it asks me for a folder's name or to create a new folder. I can restore it to the existing Mac HD folder, as a separate folder within it, but then it will be like the previous attempt I made to copy it. What is the best way to do it? Should I create a new Mac HD folder and try to delete the one that came with Leopard? Can it be done like that? Any help will be appreciated.

    I posted my question prematurely. I should have read the manual first. I did contact Apple Support, and they walked me through the restore process - it's so simple if you know what you are doing that it is embarrassing. I just didn't know where the Utilities section was - it was right there in the top bar. So now I have my computer the way I like it. I guess Snow Leopard is not for me until they fix iMovie 6.

  • What is the best way to restore very recently deleted partition ?, What is the best way to restore very recently deleted partition ?

    Can anyone please advise the best course of action here:
    I time machined what I thought to be my Mac Pro 1,1 but actually backed up my Macbook Pro 3,1
    I was having problems with main hdd and repair was not working so i deleted partition... and when i ran time machine realised i had not backed up from march.
    Is there anyway to revert to that partitioning or restore it? Any programs?
    Or do I just have to recover the lost files ?

    If the lost data is of high value to you, consider sending the drive to a professional recovery service such as DriveSavers. Otherwise, there's little hope, but some have had at least partial success with a product called "Data Rescue."

Maybe you are looking for

  • Didn't update for so long, and now "Kernel is too old"

    I had a pacman -Syu after a long time and now the system is completely unusable: # ls FATAL: kernel too old # cat FATAL: kernel too old Since I can't even cat the logs, I'll paste the screen report of the installation: # pacman -Syu :: Synchronizing

  • How to get context information?

    suppose i have created master detail.if i put mouse on any attribute of master ,related detail should be shown as context message.

  • Transport abap query from one client to another--v--urgent---v----urgent

    hi, i have an abap query in one client and want to copy to another client.can i do this if so what are the steps involved .i tried the options like in query go to environment and then to transport .i also tried to do by running the programe RSAQR3TR.

  • Major tree and display issue.........

    Hi guys! I am having a problem whereby when I click on a tree node(Folder), I want all the images contained in that folder to be displayed on a JPanel which I created. By the way, the tree and panel are added to a splitpane. Tree on the right, and pa

  • Constructing a linear color gradient from a string

    I am using the following string value for a linear color gardient. String value = "from 0% 0% to 100% 0%, white, yellow, black 60%, red, green"; LinearGradient lg2 = LinearGradient.valueOf(value);I am expecting it to use the following list of color-s