10.4.9 behaving like Winduh$ ME

Since, and only since, 'updating' to 10.4.9 several weeks back, I 've experienced consistent weirdness (have been a Mac addict since 1.0).
1. Most Apps, crash 'for no reason' even if/when not active.
(includes: Safari, Mail, iTunes, iPhoto Excel, Word, Photoshop, Vectorworks)
2. When manually shutting down apps, then reports "Application Quit unexpectedly" after closing and a short delay,.
3. Entire OS crashed 'out-of-the-blue' three times. Reboots by itself - from a HD not set as the boot device.
4. iTunes requires 6 to 8 boot attempts in order to fully load - every time I want it open (and not 're-open' or 're-try' which don't, but from cancel/close and relaunch - 6+ times EVERY time).
5. 'Lost' iTunes and iPhoto Libraries - twice. Rebuilding these is such a pain NTM that competely losing "rating" of over 8,000 tunes is a heartbreaker')
6. LimeWire Pro will not load properly (remain loaded/open)
7. Multiple 'weird' (unknown) emails "returned" as alleged Spam rejections. The accompanying reports indicate that I am NOT a stated recipient nor the sender (originator). I have no idea how/why I'm getting these
SO?
Virus?
Worm?
Trojan?
Remote Access?
Bad "update" copy?
Downloaded and ran MacScan today. Found nothing.
Firewall has NEVER been off.
Have been reporting app/OS crashes to Apple since they started (10.4.9 release). I've NEVER heard a thing back from Apple - several hundred 'reports'.
This instability reminds me of the Windows ME nightmares (with 3-6 viruses/worms/trojans).
Guesing I perhaps have a bad copy (download) of 10.4.9 but **** if I'm willingly staring over (from Panther Disk). Hoping for 10.5 release (fix?) ASAP but know enough to not to hold my breath on that.
Any other ideas on what's going on here?
MacMini (and others)   Mac OS X (10.4.9)  

Virus? - No.
Worm? - No.
Trojan? - No.
Remote Access? - No.
Bad "update" copy? - Possibly. Worth downloading the 10.4.9 Combo update for your type of Mac and re-installing it.
Poor maintenance in the past leaving unknown underlying faults to snarl up the update? Most probably.
You may find this recent article from Macfixit helpful:
Mac OS X 10.4.9 Special Report: Update procedure recommendation
First, make a full backup of your current Mac OS X installation -- preferably a clone ( try SuperDuper! or Carbon Copy Cloner). If something goes wrong, or you experience a major incompatibility after updating, the backup will prove invaluable.
Next, if you are the cautious type, run a disk repair on the volume targeted for installation. You can use an n alternative startup drive or your Mac OS X installation disc. If you are starting up from your Mac OS X install disc, put the disc in your optical drive and restart holding down the "C" key. After your system starts up and you've selected your language, go to the "Utilties" menu and select "Disk Utility." Use the "Repair Disk" function. After disk repairs are complete, restart from your normal startup drive and continue.
Avoid performing any other operations (in Mac OS X or third-party applications) while the update process is occurring. Performing other tasks during the update process potentiates various issues, including problems with prebinding (which is happening during the "Optimizing the system" phase of the update process) and others that can occur when files are being replaced by the update are also being read/written by the currently logged in user. You should not only refrain from launching applications or working with files during the update process, but also from putting the system to sleep, disconnecting/connecting devices, and other potentially interruptive actions.
In addition, before installing the update, make sure all Apple-installed applications and utilities are in their original locations. Moving one of these applications to a different location on your hard drive can lead to an incomplete update. Also, disconnect any FireWire/USB devices before applying Mac OS X 10.4.9 (except for your startup drive, if it is FireWire or USB, and your keyboard/mouse), then re-connect the devices one by one (checking for issues created by any particular device) after the update process is complete and the system has restarted. Also, note that the first restart after applying Mac OS X 10.4.9 may be abnormally long. Subsequent restarts should take place at normal speed.

Similar Messages

  • How do I create a title, that behaves like a button?

    Hi,
    I'm using XML to load data from asp to flash. Here's the XML
    example:
    1. <?xml version="1.0" encoding="iso-8859-1"?>
    2. <news>
    3. <item>
    4. <headline>Flash XML Based News reader out
    today!</headline>
    5. <date>05/09/1986</date>
    6. <message>Today my new xml based flash news reader
    came out, I am so excited!</message>
    7. </item>
    8. <item>
    9. <headline>One day until the Flash XML Based News
    reader is out!</headline>
    10. <date>05/08/1986</date>
    11. <message>Tomorrow my new xml based flash news
    reader comes out, I am so excited!</message>
    12. </item>
    13. <item>
    14. <headline>Two days until the Flash XML Based News
    reader is out!</headline>
    15. <date>05/07/1986</date>
    16. <message>The day after tomorrow my new xml based
    flash news reader comes out, I am so excited!</message>
    17. </item>
    18. </news>
    And here's the ActionScript part:
    1. // Initialize the xml object that our news will be loaded
    into
    2. var news_xml : XML = new XML();
    3. // ignore all whitespaces inside of our xml file
    4. news_xml.ignoreWhite = true;
    5. // when the xml recieves a return from the load() function
    call, execute this function
    6. news_xml.onLoad = function( success : Boolean ) {
    7. // if the xml file was successfully loaded
    8. if ( success ) {
    9. parseNews(this);
    10. }
    11. }
    12. // call the load function on the xml object, passing in
    the url of your xml file
    13. news_xml.load("xmlTutorial.xml");
    14. // this function will take our news xml object and parse
    it
    15. function parseNews( _xml : XML ) : Void {
    16. // first we create an array that holds all the values of
    the item nodes
    17. var items : Array = _xml.firstChild.childNodes;
    18. // now we want to iterate over every item in the items
    array
    19. // and parse the nodes as we see fit
    20. for ( var i : Number = 0 ; i < items.length ; i ++ ) {
    21. // here we set the text of the text field ( news_txt )
    22. // the first thing we add to the textfield is the
    headline then a line break
    23. news_txt.htmlText += "<b>" + items
    .childNodes[0].firstChild +"</b><br>";
    24. // next we add the string date followed by the date value
    in the xml file
    25. news_txt.htmlText += "Date: " +
    items.childNodes[1].firstChild + "<br>";
    26. // now we add the message, then two line breaks, only for
    formatting
    27. news_txt.htmlText += " " + items
    .childNodes[2].firstChild + "<br><br>";
    28. }
    29. }
    So far is everything clear to me. But what I want to do now
    is that after a user clicks on title, next happens:
    the current swf unloads
    the flash sends data to asp (ID of an article and ID of an
    author, which movie to load next).
    How do create a title/button?I know how to make a title to
    behave like a link (just add the
    http://... in the headline tag in XML
    document. But this,..... I just don't know how to do that.
    THX for any help

    2m, you are right. I should tell you about my concept. It's
    all on the paper yet, because this is how I work - first I write
    down everything on paper, study it and the next step in trying to
    make it work on computer.
    I have a main swf, I call it system.swf. System.swf receives
    the info about the swfs, it must be loaded from html tag
    <object><param>. The ID of the movies is send from
    flash to asp and then via <object>back to flash. Does that
    make sense? Is there a better way for that?
    So, the system.swf is loaded for the whole time - let's say
    it on level1. On level 2 are then loaded other swfs.It depends
    which content the user wants to see.
    About the article part:
    first the user sees the list of last articles (title, date
    and short description). When he/she clicks on the title, all the
    action happens:
    flash sends the data which article the user wants to read to
    asp, asp searches in data base for the requested article and
    creates xml, where are title, date and the whole content of the
    article.
    At the same time asp also sends via <object>tag in html
    the id of the swf that must be loaded and the id of the author of
    the article, so the swf, where the pictures of the all authors are,
    will know what picute must load (this is the second swf that is
    loaded on the article part - it's created like a gallery; the
    author of the active article is bigger and if the user wants to
    read the last article of other author, he/she just closes the
    picture and then the images are moving in a slider way and when
    he/she clicks on an image, it get larger and the last artcle of
    this author is loaded).
    And I wonder how can I make this all to happen: when the user
    clicks on a title, all the var action happens?
    If you have better idea how to create this, please, advice.
    THX for the help so far

  • My left shift key on Macbook Pro Retina (15") is behaving like the F11 key (show/hide open windows).  The key behaves the same for the laptop keyboard and for an external Apple keyboard?  This just started in last week after 6 months of use

    My left shift key on Macbook Pro Retina (15") is behaving like the F11 key (show/hide open windows). 
    The left shift key behaves the same on the laptop keyboard and on an external Apple keyboard. 
    This just started in last week after 6 months of use.  The right shift key and other keys on the keyboard all appear to work correctly.
    Suggestions greatly appreciated.

    I have a solution to this issue now after a discussion with Apple Support.  Some where in the last few weeks, there was a change in the key that would do a Show Desktop under the Mission Control settings in the System Preferences.  Even though the key sequence that was shown for the Show Desktop setting did not include the Left SHift key, by changing this first to having no key sequence and applying that and then changing it back to the F11 key, the Left SHift key issue that I was having has cleared up.
    A second issue that was uncovered was that the SSD had some issues (uncovered when I ran Disk Utility using the Repair Disk key).  I had to restart and use the Disk Utility through the Command R sequence to get to the stand alone Disk Utility.  The SSD appears to be running better as a result as well.
    Hope that this is of use to someone else in the future.

  • How do I get my Gmail account to behave like a POP account???

    Ok, I've been using gmail as a POP account on my Mac for a while. Just got my first iPhone (3Gs). I synced it and set it up and everything was hunky dory. Then I decided to try out IMAP so I made a new IMAP account for my Gmail and disabled the POP account in Mail and removed it from the iPhone. After trying that out I realised I prefer to use POP. So I deleted the IMAP account from both Mac and iPhone... But when syncing my old POP account it behaves like an IMAP account on the iPhone... It doesn't have the same settings as my other non-gmail POP accounts... and loads all the folders from gmail... I have disabled IMAP in my Gmail account too... Still the iPhone seems to refuse to add a gmail account as anything but IMAP? I've even restored my iPhone to no avail...
    Now if I delete a mail on the phone it never gets to my computer and I wanna be able to delete stuff from the phone without affecting the computer... gah!
    Any suggestions?
    < Edited by Host for language >

    I gave in and am now using IMAP but I still find the behaviour a bit wierd...

  • Itunes asking me my billing verification again and again on the same computer. I don't know why it behave like this. Anyone can solve my problem?

    Itunes asking me my billing verification again and again on the same computer. I don't know why it behave like this. Anyone can solve my problem?
    I already provided my 3 digit CVV number but Itunes again need to confirm the code whereas on my Office Computer I am purchasing Apps on Itunes without verifying my billing information again and again except once at the time of creation of account.
    Please help me as I am charging by my Credit Card bank by US$ 1 each time when I give verification code.
    Thanks
    Talat Khatri

    Try the following steps,
    Sign into your computer and removal of credit card information. Here are the steps:
    1) Open iTunes and sign in to the iTunes Store.
    2) Select "View My Account" from the Store menu.
    3) Enter your password and click the View Account button.
    4) Click the Edit Payment Information button.
    5) Select "None" as the payment type.
    6) Click the Done button at the bottom of the page.
    Reset your account password from the following link:
    http://iforgot.apple.com
    Phase 3:
    Download a free content on to get recognized in iTunes.
    To ensure your account is functioning, try downloading a free item from the iTunes Store. To do this, navigate to the iTunes Store main page by clicking the Home icon near the upper-left corner of the window. Scroll down and click the "FREE ON iTunes" link near the bottom of the main page, then select an item to download.
    After you are able to download the free App try updating the billing information as usual.

  • My 13" Mac Pro behaves like everything is in slow motion. Takes forever to do anything, on or offline. Would this be a software conflict or a hardware problem?

    My 13" Mac Pro behaves like everything is in slow motion. Takes forever to do anything. Wondering if this is a software issue or a hard drive problem?

    Maybe some maintenance will help:
    Kappy's Personal Suggestions for OS X Maintenance
    For disk repairs use Disk Utility.  For situations DU cannot handle the best third-party utilities are: Disk Warrior;  DW only fixes problems with the disk directory, but most disk problems are caused by directory corruption; Disk Warrior 4.x is now Intel Mac compatible. TechTool Pro provides additional repair options including file repair and recovery, system diagnostics, and disk defragmentation.  TechTool Pro 4.5.1 or higher are Intel Mac compatible;  Drive Genius is similar to TechTool Pro in terms of the various repair services provided.  Versions 1.5.1 or later are Intel Mac compatible.
    OS X performs certain maintenance functions that are scheduled to occur on a daily, weekly, or monthly period. The maintenance scripts run in the early AM only if the computer is turned on 24/7 (no sleep.) If this isn't the case, then an excellent solution is to download and install a shareware utility such as Macaroni, JAW PseudoAnacron, or Anacron that will automate the maintenance activity regardless of whether the computer is turned off or asleep.  Dependence upon third-party utilities to run the periodic maintenance scripts had been significantly reduced in Tiger and Leopard.  These utilities have limited or no functionality with Snow Leopard and should not be installed.
    OS X automatically defragments files less than 20 MBs in size, so unless you have a disk full of very large files there's little need for defragmenting the hard drive. As for virus protection there are few if any such animals affecting OS X. You can protect the computer easily using the freeware Open Source virus protection software ClamXAV. Personally I would avoid most commercial anti-virus software because of their potential for causing problems.
    I would also recommend downloading the shareware utility TinkerTool System that you can use for periodic maintenance such as removing old logfiles and archives, clearing caches, etc.  Other utilities are also available such as Onyx, Leopard Cache Cleaner, CockTail, and Xupport, for example.
    For emergency repairs install the freeware utility Applejack.  If you cannot start up in OS X, you may be able to start in single-user mode from which you can run Applejack to do a whole set of repair and maintenance routines from the commandline.  Note that AppleJack 1.5 is required for Leopard. AppleJack 1.6 is compatible with Snow Leopard.
    When you install any new system software or updates be sure to repair the hard drive and permissions beforehand. I also recommend booting into safe mode before doing system software updates.
    Get an external Firewire drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
    Backuplist
    Carbon Copy Cloner
    Data Backup
    Deja Vu
    iBackup
    JaBack
    Silver Keeper
    MimMac
    Retrospect
    Super Flexible File Synchronizer
    SuperDuper!
    Synchronize Pro! X
    SyncTwoFolders
    Synk Pro
    Synk Standard
    Tri-Backup
    Visit The XLab FAQs and read the FAQs on maintenance, optimization, virus protection, and backup and restore.
    Additional suggestions will be found in Mac Maintenance Quick Assist.
    Referenced software can be found at CNet Downloads or MacUpdate.

  • How to drag and drop a swing component that can make it behave like Visio.

    1) How to make a JComponent drag and drop that behave like visio? I understand it's possible to drag and drop a text or image, but no idea on how to do that on JComponent. 2) After the JComponent is dragged and dropped, how to make the JComponent to be able to resize by the user using mouse 3) The area that the JComponent dropped should it be GrassPane, LayerPane, or ContentPane?

    I see where you're going. I'm drawn to Thunderbird because it puts open emails in separate tabs, which makes finding a particular open message easier than searching the task bar for an open outlook message. I do see your point that tab happy programmers, probably too young to remember how cool we thought drag and drop was when it first came out, don't think much of it. As with a lot of software, each programmer has a very limited view of how it their program should be used vs how it is actually used in the wild.
    People work in different ways. When I schedule an appointment with a client, this is often preceded by a series of emails related to whatever the client wants to discuss. I drag and drop those messages into the appointment window so that on the date of the appointment, I have a nice neat summary of the issues right there in the appointment window. I could use workarounds (save email and then attach to the appointment), but that's like a trip back to Windows 3.0 and it's, if I'm not mistaken, 30+ years later. I guess I'll continue to use Tbird for email and outlook for calendar, not my preferred solution, I'd like to flip MS the bird and cut all ties to outlook, and was hoping Tbird was the solution. Not yet, and perhaps not ever, based on your thoughts.

  • Warning message behave like error message why

    hiii
    I have done a simple test program where i have put
    MESSAGE W015(ZXXX) with "XXXXXX"
    and this when i execute will bahave like error message
    I even did like MESSAGE I0015(ZXXX) with "Xxxxx" display like I.  and this also behave like error message
    Note: my code is found between the start or selection and end of selection

    That is the normal behaviour for warning messages issued in START-OF-SELECTION (as already suggested, check the documentation).
    If you want your program to issue a message and continue running (for example the behaviour of the status message) yet show it like a Warning message, you can use the DISPLAY LIKE addition (only in newer releases):
    START-OF-SELECTION.
      MESSAGE s000(oo) WITH 'test' DISPLAY LIKE 'W'.
      WRITE sy-uzeit.
    Adding to Suhas comment:
    In fact SAP documentation roxx
    Sure...when it does exist!

  • .indd file behaving like an .indl file.

    One of my .indd files is behaving like an .indl file. Anyone know how to get my .indd file back? The .indd file opens as if it is a library instead of a document.

    That looks normal enough. Just this one file giving you trouble?
    There are two things we could try next. First would be Replace Your Preferences. Next would be trying to open on another machine and do a Save AS and see if it can be cleaned up. Maybe even, if it opens properly on another system, try Remove minor corruption by exporting before bringing it back to your Mac.

  • Error message behaving like Abort Message

    Hi,
    In my program code , there is a error message written, but when this error message is triggered it is displayed as ABORT message and it is skipping the transaction.
      SORT zt5.
      READ TABLE zt5 INDEX 1.
      IF sy-subrc <> '0'.
        MESSAGE e208 WITH 'No tiene vistas autorizadas'.
      ENDIF.
    Could any one tell the reason why it is happening.
    Regards
    Prasanth Kasturi

    Hi Kasturi,
    if you issue a ERROR message in "PBO/ AT SELECTION-SCREEN OUTPUT it behaves like ABORT message.
    if it is of type "WARNING/INFORMATION then it behaves
    as "SUCCESS message(On the Status BAR)
    Hope this would clear the concept of MESSAGE types. For more info Take F1 Help on MESSAGE Key word
    Cheerz
    Ram

  • My iphone's screen goes black and it behaves like that it is switched off.No switches work and the power button also does not respond.The ringtone do not also respond.The only way to switch on the phone is to press  home button and  power button together.

    My iphone's screen goes black and it behaves like that it is switched off.No switches work and the power button also does not respond.The ringtone do not also respond.The only way to switch on the phone is to press  home button and  power button together.

    Pressing the Home button and the sleep/wake or on/off button together until you see the Apple logo and then release is called a reset.
    If no change after a reset, the next step is restoring your iPhone.

  • How to make spark datagrid columns to behave like mx datagrid columns

    Hello.
    I have a problem with spark datagrid component. I can't force spark datagrid columns behave like old mx datagrid columns. In mx datagrid columns fills 100% of datagrid regardles of resizing column or datagrid itself (it will not show horizontal scrolling bar). In spark datagrid last column (colC) will never word wrap, event after setting horizontalScrollPolicy=off. I would like to somehow constrain spark columns to behave like mx ones.
    App snippet (try to resize app and columns - especially colC - and you will see what I mean):
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx">
        <fx:Declarations>
            <s:ArrayCollection id="dp">
                <s:DataItem colA="some sample data" colB="some sample data" colC="some sample data"/>
                <s:DataItem colA="some sample data" colB="some sample data" colC="some sample data"/>
                <s:DataItem colA="some sample data" colB="some sample data" colC="some sample data"/>
                <s:DataItem colA="some sample data" colB="some sample data" colC="some sample data"/>
                <s:DataItem colA="some sample data" colB="some sample data" colC="some sample data"/>
                <s:DataItem colA="some sample data" colB="some sample data" colC="some sample data"/>
                <s:DataItem colA="some sample data" colB="some sample data" colC="some sample data"/>
                <s:DataItem colA="some sample data" colB="some sample data" colC="some sample data"/>
                <s:DataItem colA="some sample data" colB="some sample data" colC="some sample data"/>
            </s:ArrayCollection>
        </fx:Declarations>
        <s:layout>
            <s:HorizontalLayout/>
        </s:layout>
        <s:DataGrid id="grid" width="100%" height="100%" dataProvider="{dp}" variableRowHeight="true" horizontalScrollPolicy="off">
            <s:columns>
                <s:ArrayList>
                    <s:GridColumn headerText="Column A" dataField="colA"/>
                    <s:GridColumn headerText="Column B" dataField="colB"/>
                    <s:GridColumn headerText="Column C" dataField="colC"/>
                </s:ArrayList>
            </s:columns>
        </s:DataGrid>
        <mx:DataGrid id="grid2" width="100%" height="100%" dataProvider="{dp}" wordWrap="true" variableRowHeight="true">
            <mx:columns>
                <mx:DataGridColumn headerText="Column A" dataField="colA"/>
                <mx:DataGridColumn headerText="Column B" dataField="colB"/>
                <mx:DataGridColumn headerText="Column C" dataField="colC"/>
            </mx:columns>
        </mx:DataGrid>
    </s:Application>

    the datagrid has sortItems and sortItemsOn methods you can use.

  • MBP 2011 - Best way to make it behave like Mac Mini ?

    I have a 26" NEC monitor I like and use for photo editing. I come from the Windows world. Late last year I bought a Mac Mini, hooked it up to my monitor and was getting used to OS X. Then my mini was stolen.
    I recently replaced the stolen mac-mini with a 2011 13" MacBookPro i7 2.7, thinking I could hook it up to my NEC monitor like the mac mini, but I'm finding it's not really like that. It's more of a dual display setup that I'm finding awkward.
    How can I make the external monitor be the main screen with dock and menu bar ?
    Display settings are kind of primitive in this regard.
    I can drag firefox from the MBP screen to the external screen, but the menu bar stays on the MBP. It's kinda weird. Moving the mouse back and forth isn't so fluid due to vast difference in resolution between the two screens.
    Then there's the battery issue. If I leave the AC plugged in all the time, I read that isn't a good thing for battery life. It is however, convenient once in a while to pickup the MBP and carry it about the house.
    What's the best way to make the MBP behave like a mini?

    Thank you for the KB article, it helped.
    The key is to have the power AC adapter plugged in on the MBP. Then, when it wakes from sleep after closing the lid the attached display becomes the one and only display with Dock and Menu bar up top. Otherwise, in battery mode, wake from sleep is a complete disaster. This clamshell mode seems to be very stubborn in battery mode. It wakes up, monitor flickers, goes back to sleep. Press a key to wake it up again and it just keeps going in a circle, like ground hog day and I never get to actually use the MBP.

  • 'Darken' behaves like 'Multiply' in CMYK mode

    In RGB documents, the 'Darken' transparency blend mode doesn't change colours, but only shows a colour if it is darker that the colour underneath it.
    In CMYK documents, 'Darken' acts differently. It does the same thing as 'Multiply': it darkens the top colour based on the colour underneath. In CMYK mode, 'Darken' and 'Multiply' seem to do exactly the same thing.
    How can I get an object in a CMYK document to do what 'Darken' does in an RGB document - only show if it has a darker value than the colour underneath?
    (side question: why does 'Darken' behave like 'Multiply' in CMYK mode? What's the point of having two different blend modes that do the same thing?)
    Here's Adobe's official description of Darken. This matches how it behaves in RGB, but not how it behaves in CMYK:
    Darken
    Selects the base or blend color—whichever is darker—as the resulting color. Areas lighter than the blend color are replaced. Areas darker than the blend color do not change.

    Okay, so these two shapes (white stroke, solid fill) with 'Darken' blend mode look like this in RGB mode, which matches the description and expectations:
    ...but they look like this with 'Darken' blend mode when we switch to CMYK.
    Looking at it more closely, it seems like it might be something to do with the different seperations: in the RGB example the overlap area isn't exactly the same as the normal blue as I thought it was at first.
    It's also not always exactly the same as multiply as it was the first couple of times I tested: multiply seems to often blend darker.
    So is there anything that simply only shows the darker of the colours?

  • I have updated my iOS to 4.3.5.... And after that my 3gs iPhone still behaving like previous. Versions of iOS....... My iPhone. Showing no new feature which apple has added to iOS 5 like icloud , imessage... Should I update it again...?

    I have updated my iOS to 4.3.5.... And after that my 3gs iPhone still behaving like previous. Versions of iOS....... My iPhone. Showing no new feature which apple has added to iOS 5 like icloud , imessage... Should I update it again...?

    anshulmajoka wrote:
    I have updated my iOS to 4.3.5.... And after that my 3gs iPhone still behaving like previous. Versions of iOS....... My iPhone. Showing no new feature which apple has added to iOS 5 like icloud , imessage... Should I update it again...?
    iOS 4.3.5 is not the same as iOS 5. iOS 5 with the new features you list has not been released.
    Stedman

Maybe you are looking for

  • Please suggest me which features of SQL 2014 suit my situation

    Hi all, I would like to have HA databases across two different geo locations. The infrastructure is as follow: Location 1 Database Server A, Database Server B I would like to have this two databases mirrored or something like that without using datab

  • Tab pages on different canvases

    Dear All, I have multiple canvases in a form like canvas a, canvas b, and canvas c in a single window a , i create a tab page on canvas a but this tab page displaying in all cavases. Please tell me how i hide this tab page from other canvases. Thanks

  • Cannot see shared libraries

    I have a 1st gen iPad (ipad1) running iOS 5.1.1 Ipad1 is connected to iTunes 11.0.1.12 on my windows 32 bit laptop (laptop1) using my Apple ID (ID1) I have just bought a new iPad retina (ipad2) running iOS 6.0.1 for my partner Ipad2 is connected to I

  • Lost attachments

    Hi, I have a synchronous scenario ABAP client Proxy <> XI (7.1)<> ABAP server Proxy. The server proxy returns a SOAP response with one or more file as attachments. I have implemented the server with attachment_prot->set_attachments method and can see

  • My video clips are just black when i import them to iMovie! (they are mp4) p.s. i have alot of clips

    I keep importing all these video files which are mp4 format and they have thumbnail pics but when i hover over them to preview they turn black and i cant see any thing!? do i have the wrong format or what? I have worked with imovie alot and this has