What do i need to get IOS5 if im running 10.5.8, do i need many upgrades?

what do i need to get IOS5 if im running 10.5.8, do i need many upgrades?

What iOS device do you have? You need one capable of running iOS5 plus the latest version of iTunes.
If you want iCloud you'll need Mac OS X 10.7.2 Lion plus a Mac capable of running that.

Similar Messages

  • I have tried to update my iphone 3gs and i need to get ios5 and when i click on check for updates it says that itunes can not be contacted and check my internet connection but i have internet? how else can i get ios5 on my phone?

    i have tried to update my iphone 3gs and i need to get ios5 and when i click on check for updates it says that itunes can not be contacted and check my internet connection but i have internet? how else can i get ios5 on my phone?

    edit the hosts file on your computer and remove any lines that contain gs.apple.com. Disable your antivirus and firewall.

  • What has to happen to get elements 10 to run in OSX 10.8?

    What has to happen to get elements 10 to run in OSX 10.8?

    can run editor and premiere but not photoshop.
    Which editor? How are you trying to open elements? The actual editor or organizer, the welcome screen, which?

  • What's it take to get LabView up and running?

    Hello. I'm new to LabView and in the process of learning what I can about it by working through a couple of training books. Anyway, what do I need to get LabView 6.1 to control Agilent and Anritsu test equipment -- specifically voltage supplies, a network analyzer, and a spectrum analyzer. I presently have a GPIB card in the computer. Is any other hardware required to get this operational? Where do I find drivers? Thanks for any response.

    Assuming you've got cables to connect your GPIB card to your instruments, I don't think you need any additional hardware in order to use LabVIEW to automate the control of the instruments.
    I'll assume that your GPIB card is installed and functional if not, try its self-tests or go to http://www.ni.com/support/gpib/ for help.
    To install LabVIEW instrument drivers for your instruments, go to http://ni.com/idnet and browse or search your way to the drivers you need. This will give you a suite of LabVIEW VIs to programmatically control your instruments from LabVIEW.
    After you download and install the drivers (instruction links on the driver pages), you can get up to speed by examining the Application Example that will likely appear in the palettes for your i
    nstruments. There's also a CD available of all of our instrument drivers; you can request one from your NI sales engineer.
    As a final note, the LabVIEW Basics I training course (http://ni.com/training) does an excellent job of teaching this topic (the final day of the course) as well as teaching LabVIEW programming fundamentals.
    Best of luck,
    John Lum
    National Instruments

  • Need help getting my applet to run..

    Hi, I am having the utmost trouble getting my applet to run. First I spent a month correcting syntax and other errors generated during compile. Now I find myself spending another month getting the compiled product to run. I don't care if the screen is completely blank and my logic is all messed up, I don't mind logic debugging. My applet just will not run at all, it won't even initialize.
    First when I tried to run my applet in Internet Explorer I got the following error in the statusbar:
    "load: tsorgi5 can't be instantiated"
    So, I researched that error message, and the solution appeared to be that I would need to use the Java Plug-In. So, I use that and now I find this message in the statusbar:
    "exception: null."
    That happens when the text "Loading Java Applet ..." is in the centre of the applet, and Internet Explorer acts like it is still doing something no matter how long I wait.
    I tried researching this, but only found "exception: null" with other things after the text "null."
    In Forte, when I choose "Execute" I get the following in the Output Window, I/O tab:
    java.lang.NoSuchMethodError: main
    Exception in thread "main"
    I would assume it expects me to add a method "main()," but I also get that same message with a different applet (which doesn't have a method "main()") which runs perfectly fine.
    I usually try to solve many of my problems myself, but with this one I have no idea where to start looking for answers. I'm relatively new to Java, been using Java for only half a year, so this particular problem is like looking for a four-leaf clover in the streets of New York City..
    I'm going to be chopping my applet into pieces, having a separate class file for each major engine. (It is a role-playing game, so I'll separate battle engine from cut-scene engine from world exploration engine etc..) Hopefully I will be able to narrow down my search for what is causing me all of these problems. Then once I solve my problems I can piece everything back together.
    In the meantime, I am hoping that some of you could help me out so that I may know what I am looking for.
    Thank You for your time,
    -Tony Slater

    Ah.. Forte is still a bit confusing to me, I have not and probably will not take the time to learn much about Forte, as the only real reason I use it is because unlike wordpad, I can see line numbers. =] Very helpful with my program being the size that it is.
    I do not think that the simple applet idea will be of much use, because one of my earlier applet projects (a main menu for my current project) which I mentioned above as another applet without a main() method which worked perfectly fine is very simple. Although I will try it anyway, as it could help and you are most likely much more experienced than I. =]
    Okay, I typed the following in the Dos Prompt:
    appletviewer TestApplet.class
    ..It printed a blank line, paused a little bit, then brought me back to the prompt, just like running a dos program that does not give any output. I'm not sure, but I would assume it should print a line containing the text "Here?" I have not used appletviewer before, so I do not know what it is supposed to do. =P
    I have already tried using System.out.println, but the problem occours even before the applet is started. I'll try enabling the Java Console first thing tomorrow morning, since a restart is required when enabling it.
    Now, I would be happy to post some code, but I'm not sure it would be best to post the code when my program is 2814 lines.. although 800 lines are probably comments, and most of those comments are probably irrelevant. Also I can sometimes be a messy coder. Although I can post some general information and can probably (with a little work) post an "outline" of the code.
    Since it is getting late I'll just post some portions of code which hopefully will prove important.
    // Import Packages
    import java.awt.Graphics;
    import java.awt.Color;
    import java.awt.*;
    import java.applet.*;
    import java.lang.System;
    import java.lang.reflect.Array;
    import java.lang.Math;
    import java.lang.Double;
    import java.math.*;
    import java.util.Random;
    import java.io.*;
    variable/object types created and/or declared between "public class.." and "public void init()...":
    int
    byte[]
    String
    RandomAccessFile
    int[][]
    double
    int[]
    double[][][]
    Random
    Image
    int[][][]
    arrays are filled in the init() method.
    public String getIniStrValue(String iniFile, String iniGroup, String iniItem) // Used for retrieving information from the game's external file system.
    another method getIniIntValue(int, String, String, String) is used for int values stored in external files.
    Within public void paint(), gameplay modes are detected and dealt with accordingly. With Cut-Scenes, proper charecter images and text is displayed, all cut-scene information is stored externally. Other modes do virtually the same, display graphics and text based on internal game data or un-changing external data files.
    Within public void mouseClick(), in certain modes of the game the mouse click will trigger a change no matter where the user clicked (such as cut-scenes, to advance to the next line of dialog), or different variables are set depending on where the user clicked. (What I like to call.. custom buttons) At the end of the method repaint(); is used, and the paint() method will alter the screen according to any changes that may have happened.
    public void charAttack() is a method called to handle battle equations when a playable and controllable charecter is making a move. It will detect the current charecter, detect the move being made by the charecter (attack, special move, magic, etc) and will change any variables accordingly and will then use repaint(); so that the player may know what has happened. (Whether or not attack was successful, how many HP the enemy lost, etc)
    public void loadBattle() is called when the charecter encounters an enemy. It will load possible enemies of the current part of the world being explored, select one, then load that enemy's "stats" from external game data files, and will then specify the new mode (Battle Menu, where the player chooses the moves to be made for the turn) by setting the int value "Mode." repaint(); is then called and it will paint the battle menu.
    public boolean keyDown() is of course used to detect keyboard events. In world exploration, the charecter will be moved accordingly. In modes such as cut-scenes, a variable will be changed to advance to the next line of speech. In menus, the keyboard events are used to switch between options. repaint(); is used to update the screen accordingly.
    Well, even though I very briefly summarized the code, it appears to have taken half an hour to do. I'll be getting some sleep in a few minutes, and when I wake up tomorrow morning I hope to both see and make some progress on solving this problem.
    Thank You,
    -Tony Slater.

  • Newbe at Applescript - Need Help Getting Applescript to Auto-Run

    Ok so I admit I'm new at creating Apple Scripts, but here's my dilemma:
    I have created an Apple Script to mount and unmount my new LaCie d2 Quadra 1TB drive (For use with the LaCie "Shortcut Button), the script "runs" great in Script Editor. However, when finally saved to a newly created Mac HD>Library Folder>Scripts Folder>LaCie d2 Shortcut Button Scripts Folder ... when I use the LaCie d2 front panel "shortcut button", the script launches the Script Editor app and the script shows in the script window. If I select "run" in the window the script will mount and then unmount the LaCie drive (in the Finder), as designed to do.
    My issue is, obviously, how do I get the script to run/activate "behind the scenes without always
    launching the Apple Script Editor app.
    Have I saved the script wrong or something else?
    Is the script something to be "run" through Apple Automator?
    Any assistance will be appreciated.
    This is the script:
    tell application "Finder"
    if not (exists the disk "LaCie 1TB") then
    do shell script "diskutil mount `disktool -l | grep 'LaCie 1TB' |
    sed 's/.\(disk[0-9s]*\)./\\1/'`"
    delay 2
    else
    eject "LaCie 1TB"
    delay 2
    end if
    end tell

    Ah yes ... changing the Apple Script from .scpt to .app., that works!
    But I still notice that when the LaCie d2 Quadra 1TB drive "front short-cut button"
    is selected, and it mounts and dismounts the drive from the finder as the Apple Script
    was written to do .... that the Apple script still launches the "script icon and the script saved text title", briefly in the bottom dock. It then disappears out of the dock once the script has "run".
    Is there any way to keep the "script icon and the script saved text title" from launching in the dock (when the script first runs), and just have it launch invisibly "behind the scene" so to speak?

  • Firefox works fine on version 26. When it updates to version 27, i get undefined entity. I've tried getting profile manager to run and it won't. Need help

    Version 26 works fine. When it updates to version 27.01, I get undefined entity. I've tried uninstalling and then reinstalling. I've tried to bring up profile manager but it doesn't come up. I've tried deleting Firefox folders. I'm very disappointed that Firefox rolls out an update that causes problems. None of your recommendations is working and I really hate to lose Firefox but this is pathetic. I'm using version 26 as much as i can till someone gives me the right solution. Is there a simple link to click on that will clear up any old profiles and simply fix this issue?

    That means you need to clean reinstall.
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    More information about reinstalling Firefox can be found [https://support.mozilla.org/en-US/kb/troubleshoot-and-diagnose-firefox-problems?esab=a&s=troubleshooting&r=3&as=s#w_5-reinstall-firefox here].
    Please report back to see if this helped you!
    Thank you.

  • Need help getting PC2 8500 to run at 1066

    I have an MSI MS-7510 P7N Diamond motherboard, Core 2 Quad Q6600 overclocked from 2.40 GHz to 3.0 GHz via raising FSB to 1333 MHz and running stable for ~ 3 years now.
    I just installed 2x PC2 8500 2GB G. Skill sticks for 4 GB RAM (replacing  4x 1 GB) and CPU-Z reports DRAM frequency at 400.0 MHz.
    I have tried setting DRAM Frequency to 1066, timings to 5-5-5-15 (the rating of the RAM sticks), DRAM Voltage at 2.1, and Memory Timing to 2T.  The systems starts to load Windows 7 and then it reboots back to POST screen and continues in this loop until I undo reset DRAM back to 800.
    Is it possible for me to get this RAM set to 1066 MHz?

    Thanks for the fast reply. Here’s what I did.
    DRAM Frequency set to 1066 (from original setting of 800)
    Timings to 5-5-5-15 (from original setting of AUTO)
    Memory Timing to 2T (from original setting of AUTO)
    DRAM Voltage to 2.1 (from original setting of AUTO)
    The only DRAM Frequencies that boot into Windows 7 are 800 and 533, which CPU-Z reports as 400 and 266.5 respectively. 1066 puts the PC into an endless boot/POST loop and I have to go into BIOS and adjust DRAM frequency off of the 1066 value to either 800 or 533 to get into Windows 7.
    Is DRAM Frequency of 800 (as reported in BIOS) the best I can do? If so the only difference to my machine now is going from 4x 1GB RAM sticks to 2x 2GB RAM sticks and I’m still at 4 GB RAM running DRAM 800 MHz.
    So I can use my machine again I set –
    DRAM Frequency 800 in BIOS (CPU-Z reports 400)
    Timings 5-5-5-15
    Memory Timing 2T
    DRAM Voltage 2.1
    I have a feeling that I am either overlooking something simple here or my machine just cannot handle RAM running at 1066 MHz. With all the OC functions this MSI board has I would think I could get the RAM rated at 1066 to run at 1066 instead of 800.

  • Can't find (and possibly don't have) the -lglut -lGLU -lGL libraries... or at least when I try to compile a program, it returns with that error.  Any ideas (I really need to get this popgen program running on Lion)? Thx!

    Hi all,
        I'm trying to compile a population genetic software program onto my Mac Lion.  It was originally compiled to Tiger and worked beautifully.  But now I'm getting an error  'library not found for -lglut', and now I'm trying to figure out how to download the library. I've installed the command line code for Xcode, and am thinking I possibly missed installing the libraries.  I could be very wrong here... all I know is that I'm no longer near the people I would ask to help me with this so I'm asking you!  Thanks in advance for any help!  I guess my questions are: 1) where can I download the glut (potentially OpenGL) libraries (if I don't have them already)? And 2) once downloaded, how do I install it so the makefile will compile my program (in terminal, not Xcode)? Cheers,
    C

    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!

  • Need help getting I-tunes to run on XP

    I have tried most all the tricks listed and still I-tunes will not run on relatively new windows XP, Dell machine (also newly purchased I-pod), - I have disabled virus protection, I have loaded most recent versions of i-tunes, I have cleared temp files and reloaded. I tried loading Q-time player as a stand alone. I deleted old folders of I-tunes and Q-time and reloaded.
    I-tunes down-loads without any error message. the I-pod connects to USB and charges - and shows up as an "E" drive. But clicking on i-tunes icon, or loading audio disk or connecting I-pod all fail to visably launch i-tunes (nothing is seen in task manager after attempting to launch I-tunes - but on shut down of the computer I get the message that I-tunes is not responding and must be shut down manually) (also for grins I tried launching newly loaded Q-time -> I get message saying its loading, but this message never clears). Already 10 hours spent on this

    Hello,
    Unfortunantly, I'm not quite good in JavaScript to give you a good response. But I can you give you an advise, that can help you:
    1. Add a simle system.out.println("Init called!"); message in public void init() method of the servlet RefreshInfo.
    2. Try to access servlet by simple browser request "http://localhost:8080/yourApp/RefreshInfo".
    2. If the message "Init called!" appears in the Tomcat console, your servlet code is correct and the serlet is described properly in web.xml . In this case, the possible problem is in the JavaScript code.
    Good day,
    http://www.myjavaserver.com/~voronetskyy/

  • Need help getting first servlet to run in tomcat

    hi,
    i've complied my first servlet ok, using tomcat as server, problem is it can't find it. i up the class file under Web-inf/myApp under tomcat directory, typed:
    http://localhost:8080/myApp/TestingServlet
    in the url but it can't locate it. also i did start tomcat before going to url. can someone tell me what am i missing?
    Thank you.

    ok i got it to run but i had to create a classes dir under web-inf and had to use the url:
    http://localhost:8080/myApp/servlet/TestingServlet
    but why the servlet in the url, i don't have a servlet dir, does tomcat map classes dir to servlet dir?
    Thank you.

  • Need help getting adobe air to run on windows

    how do i get windows to recognize adobe air as a program to open a .swf file?

    Hello,
    Unfortunantly, I'm not quite good in JavaScript to give you a good response. But I can you give you an advise, that can help you:
    1. Add a simle system.out.println("Init called!"); message in public void init() method of the servlet RefreshInfo.
    2. Try to access servlet by simple browser request "http://localhost:8080/yourApp/RefreshInfo".
    2. If the message "Init called!" appears in the Tomcat console, your servlet code is correct and the serlet is described properly in web.xml . In this case, the possible problem is in the JavaScript code.
    Good day,
    http://www.myjavaserver.com/~voronetskyy/

  • I need to get my mac to run Intuit Website builder, a windows-only program. Help?

    I've got 2 computers: a Macbook Pro and an iBook G4. Either will do. I might even prefer to put it on the iBook. I'm aware of bootcamp but it seems like an extreme and expensive route for a single program. Any alternate suggestions? I played a bit with CrossOver but the Intuit website wouldn't allow me to download the program since it could tell I was on a Mac. Thanks!

    Any alternate suggestions?
    For a Windows program, nope!  Suggest you re-post over in the Bootcamp community and/or the Windows Software community:  https://discussions.apple.com/community/windows_software 

  • My iPhone 5 is not catching up my website, although having a big screen... What does it need to get the pages in auto mobile queries converting?

    my iPhone 5 is not catching up my website, although having a big screen... What does it need to get the pages in auto mobile queries converting?

    You need to code your web site to recognize the mobile browser and send a page that's actually usable when it does.

  • Does my Mac need to have the OS5 to get iOS5 on my ipod touch? I plugged my ipod in, have the 10.5 version of itunes but not getting the update on my ipod.

    I am trying to get the iOS5 on my ipod touch. iTunes says I have the latest updates (10.5). My Mac does not have the iOS5. Do I need to get iOS5 for my computer before I can get the benefits on my ipod touch?

    If you have a 3G iPod it may really be a 2G iPod. If it is 8 or 16 GB it is a 2G iPod.  Apple only made 32 and 64 GB 3G iPods. A 32 GB one can be either. To identify ours see:
    Identifying iPod models

Maybe you are looking for

  • IPhone no longer plays any non-iTunes content

    I recently updated my iTunes and synced my iphone to it. Now any song I have in my iPhone library that was not acquired through iTunes (including music I imported from CDs and purchased on Amazon.com) will not play anymore. This is the first time thi

  • Backup an external hard drive to a time machine hard drive

    I know that in snow leopard a second hard drive that is connected to the computer was automatically excluded from the time machine backup. In order to included it you just removed it from the list. How do you get your second hard drive to be backed u

  • Help updating/removing itunes due to message, Error1327.InvalidDrive:F:/

    Right, my dad thought he was being helpful after I had some problems with my laptop by removing itunes and then reinstalling it. However, he used the disk I received when first getting my ipod and since then I havent been able to update to the newest

  • BAPI errors in Purchase Order

    i'm getting following errors plz help to  eradicate then |No instance of object type PurchaseOrder < PO header data still faulty              < Document number 1000222 not within define< Please only use plants with local currenc< |Can delivery date b

  • How to export application version??

    Hello all Environment: NW 5.1 SP7, ZFD3.2 SP2 I need to do a data export of the following info: Export fields: Asset.Tag, OS, Application name and Application version. Basically I am querying for an application name and I want the workstation Asset T