Quick Upgrade Question...

I started out w/ 7 Express. Then bought 8 express. Then upgraded Logic 8 Studio. Then upgraded to the latest Logic Pro.
Right now I'm re-installing my HD, and (maybe stupidly?) went ahead and went though installing 7 and 8 express... And now I'm looking at that huge PILE of Logic 8 Studio disks... and I'm wondering...
Can I just go ahead and install Logic Pro 9, and use my serial numbers to take care of the upgrade? Or do I need to physically upgrade to Logic 8 Studio, and then to Logic Pro 9? Are there files I need on the Logic 8 Studio disks?
Does that make sense?
Thanks in advance,
e

Can I just go ahead and install Logic Pro 9, and use my serial numbers to take care of the upgrade?
Yes,you don't need to install LP8 ….
unless you are working with people that are using LP8 and you need to work on projects compatible with their version.
Are there files I need on the Logic 8 Studio disks?
No
A

Similar Messages

  • Quick upgrading question...will give points to first helpful person

    I have never upgraded my iphone before (crazy I know). My version is 4.2.8.
    Here are my questions:
    Is it ok to download the firmware for ios5 directly, bypassing the consecutive upgrades? Or do I need to go through each consecutive upgrade file, until I reach ios5? Also, should I just go for ios6?
    Thanks for any input!
    Hannah

    You can only go to the highest iOS that is available. After Apple releases new software, they stop signing off on the older one and it cannot be installed. If you try and update your phone, it will go straight to iOS6.
    I have no issues with iOS 6 in a house of 4 iPhones.

  • Hi all .hope all is well ..A quick trim question

    Hi all
    Hope all is well ......
    I have a quick trim question I want to remove part of a string and I am finding it difficult to achieve what I need
    I set the this.setTitle(); with this
    String TitleName = "Epod Order For:    " + dlg.ShortFileName() +"    " + "Read Only";
        dlg.ShortFileName();
        this.setTitle(TitleName);
        setFieldsEditable(false);
    [/code]
    Now I what to use a jbutton to remove the read only part of the string. This is what I have so far
    [code]
      void EditjButton_actionPerformed(ActionEvent e) {
        String trim = this.getTitle();
          int stn;
          if ((stn = trim.lastIndexOf(' ')) != -2)
            trim = trim.substring(stn);
        this.setTitle(trim);
    [/code]
    Please can some one show me or tell me what I need to do. I am at a lose                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

    there's several solutions:
    // 1 :
    //you do it twice because there's a space between "read" and "only"
    int stn;
    if ((stn = trim.lastIndexOf(' ')) != -1){
        trim = trim.substring(0,stn);
    if ((stn = trim.lastIndexOf(' ')) != -1){
          trim = trim.substring(0,stn);
    //2 :
    //if the string to remove is always "Read Only":
    if ((stn = trim.toUpperCase().lastIndexOf("READ ONLY")) != -1){
       trim = trim.substring(0,stn);
    //3: use StringTokenizer:
    StringTokenizer st=new StringTokenizer(trim," ");
        String result="";
        int count=st.countTokens();
        for(int i=0;i<count-2;i++){
          result+=st.nextToken()+" ";
        trim=result.trim();//remove the last spaceyou may find other solutions too...
    perhaps solution 2 is better, because you can put it in a separate method and remove the string you want to...
    somthing like:
    public String removeEnd(String str, String toRemove){
      int n;
      String result=str;
      if ((n = str.toUpperCase().lastIndexOf(toRemove.toUpperCase())) != -1){
       result= str.substring(0,stn);
      return result;
    }i haven't tried this method , but it may work...

  • Security upgrade question - Getting 6.1.6 downloaded to iphone.

    Security upgrade question - I have a 4S phone v6.01 with an upgrade to IOS 7.04 already downloaded and ready for install.  I would like to install the 6.1.6 security upgrade instead. How do I delete the ios7 in the queue or have the 6.1.1 pushed as an option to the phone?

    You can't install iOS 6.1.6 on that device and must update it to 7.0.6.
    (101120)

  • How to quickly upgrade to latest versin (from 8.0.0. to now:Version 8.2.5 10/5/2010)

    I'm used AA8 (8.0.0)
    how to quickly upgrade to latest versin , from 8.0.0. to (now:Version 8.2.5 10/5/2010)
    if download all for each version, install, restart, install, restart...15 times install, 15 time restart windows.
    is crazy step.
    also, that Adobe Customization Wizard 8 can help me?
    any idea please!

    You only need to reboot on the last install. You do not need to do the other restarts since you are simply making changes to the registry and adding files. For these changes to become current for running Acrobat you need to do the reboot at the end.
    As far as faster, you might try the updates on the Help menu of Acrobat. Many of those are cummulative. If you see more than one, install the first one and then go back for the next one.

  • TA48312 how do i quickly upgrade my imac from os  x 10.5.8 to the latest version of OS software?

    Can anyone give me some advise on how i can quickly upgrade my imac from OS X 10.5.8 to the latest version OS?
    Thanks,

    Check to be sure your Mac meets the specs for Mountain Lion
    Backup your data
    Purchase Snow Leopard DVD
    Upgrade to Snow Leopard
    Update to Snow Leopard 10.6.8
    Using App Store on 10.6.8 purchase, download and install Mountain Lion
    Allan

  • Quick script question

    Hi all,
    Could anyone advise me if i can add anything within - header('Location: http://www.mysite.co.uk/thankyou.html'); in the script below so as the page
    re- directs back to the main index page after a few seconds ?
    Thankyou for any help.
    <?php
    $to = '[email protected]';
    $subject = 'Feedback form results';
    // prepare the message body
    $message = '' . $_POST['Name'] . "\n";
    $message .= '' . $_POST['E-mail'] . "\n";
    $message .= '' . $_POST['Phone'] . "\n";
    $message .= '' . $_POST['Message'];
    // send the email
    mail($to, $subject, $message, null, '');
    header('Location: http://www.mysite.co.uk/thankyou.html');
    ?>

    andy7719 wrote:
    Mr powers gave me that script so im rather confused at this point in time
    I don't think I "gave" you that script. I might have corrected a problem with it, but I certainly didn't write the original script.
    What you're using is far from perfect, but to suggest it would lay you open to MySQL injection attacks is ludicrous. For you to be prone to MySQL injection, you would need to be entering the data into a MySQL database, not sending it by email.
    There is a malicious attack known as email header injection, which is a serious problem with many PHP email processing scripts. However, to be prone to email header injection, you would need to use the fourth argument of mail() to insert form data into the email headers. Since your fourth argument is null, that danger doesn't exist.
    One thing that might be worth doing is checking that the email address doesn't contain a lot of illegal characters, because that's a common feature of header injection attacks. This is how I would tidy up your script:
    <?php
    $suspect = '/Content-Type:|Bcc:|Cc:/i';
    // send the message only if the E-mail field looks clean
    if (preg_match($suspect, $_POST['E-mail'])) {
      header('Location: http://www.example.com/sorry.html');
      exit;
    } else {
      $to = '[email protected]';
      $subject = 'Feedback form results';
      // prepare the message body
      $message = 'Name: ' . $_POST['Name'] . "\n";
      $message .= 'E-mail: ' . $_POST['E-mail'] . "\n";
      $message .= 'Phone: ' . $_POST['Phone'] . "\n";
      $message .= 'Message: ' . $_POST['Message'];
      // send the email
      mail($to, $subject, $message);
      header('Location: http://www.example.com/thankyou.html');
      exit;
    ?>
    Create a new page called sorry.html, with a message along the lines of "Sorry, there was an error sending your message". Don't put anything about illegal attacks. Just be neutral.
    By the way, when posting questions here, don't use meaningless subject lines, such as "Quick script question". If you're posting here, it's almost certain to be a question about a script. It doesn't matter whether it's quick. Use the subject line to tell people what it's about.

  • I have an upgrade question. I received a notification when I connected my computer to the internet that Lightroom 5.7.1 was available

    I have an upgrade question. I received a notification when I connected my computer to the internet that Lightroom 5.7.1 was available it included HDR & Panoramic photo merge. I cant find these. Where do I find them.

    well that was a big waste of my time & data allowance then ...
    I live in a flaky slow internet area & I keep my photo edit machine off the internet unless & want to update something. CC is no use to me & that useless update just used up a 12th of my allowance for the year ...

  • Another RAM upgrade question

    Hi everyone,
    I know there seems to be lots of RAM upgrade questions here but hey thats what forums are for.
    I'm looking to upgrade my macbook's RAM it's currently got 2GB (2x1GB)
    Is it possible to purchase 1x4GB and put that with one of my current 1GB sticks to create a total of 5GB?
    I would be interested to know if this is possible or if anyone has tried it.
    Thanks in advance
    Scott

    This will work if your MacBook is late '07 or newer.

  • Quick easy question, upgrading UCCX 7.1SR5 to 8.0.2

    I ordered CCX-UPG-P-70-80= (CCX PRE 7.0 to 8.0 PRE UCSS Major Upgrade) to upgrade our servers, however, we have 2 servers in a high availability enviroment. I am thinking i should have ordered CCX-UPG-PHA-70-80= (CCX PRE HA 7.0 HA to 8.0 HA PRE UCSS Major Upgrade). Looks like i made a mistake???
    Also, do i put 2 in the number to order?

    Correct, you need the PHA one, and you only need one.  Unless you want the second set of media for convenience.

  • Upgrading question (quick n00b thing)

    I only have Mac OS 10.3.9, and I want to upgrade to 10.4, but, 10.5 is coming out soon. It would cost £100 pounds to upgrade to 10.4, but if I did that I would only have to spend another £100 pounds in the new year, would it be better to wait until 10.5 comes out? Will it upgrade from 10.3 to 10.5 with no problems for the same amount of money?
    I also use Logic Express 7, will the audio units I have installed (minimonsta, oddity, M-Tron) remain compatable if I upgrade Mac OS?

    if you are happy right now with 10.3.9, then there maybe no reason to upgrade unless you just want to... Moving from Panther to Leopard will probably be easy enough as long as your computer meets the requirements for it (not yet stated, but historically going back several generations... some G3 Macs can still run Tiger effectively)
    As for 3rd party plugin compatibility, that depends on the developer. In some cases it's necessary for the developers to update their plugins in order to maintain compatibility with OS updates. You might want to check with M-tron or post in the Logic forums to see if anyone has experience with them under Tiger.

  • Quick RAM upgrade question.

    Just got new 3 GHz Mac Pro that came with 2GB of RAM in 4 x 512 configuration.
    I just took delivery of an extra 2GB of RAM from Crucial in the post. This new ram came as 2 x 1GB sticks.
    Can anyone advice which board I insert them into, the same one as where the 4 x 512 sticks are, or the empty board?
    Cheers.

    Yes and no. What you should do is to actually try it to see what gives better performance.
    The reason it's yes is that the Mac Pro, for whatever reason, does favour Riser A in some way. So, with the standard 1GB RAM you will get better performance with it being in Riser A than Riser B. Go figure! This is why Apple says to fill them in the order they do.
    The problem is though is that Apple does not presume as to the size of the DIMMs you're filling your slots with. The RAM in the Mac Pro performs best when there is balance. Where there is an inbalance you favour Riser A. So, from this you put your better 2GB RAM configuration into Riser A which is the 2 x 1GB DIMMs (lower latency when using the full 2GB as slots 3/4 aren't used). This goes against Apple's fill order.
    So what do you do. Well… try it both ways and just do what performs best. In actual fact the best thing to do is to buy 1 or 2 more GB (prefereably 2 x 1GB) to fill all 8 slots. It's why it is recommended that you either have 4 or 8 DIMMs so these "conflicts" don't come into play like they do here.

  • Upgrade Question / Frustration

    I just left a Verizon Wireless store location and have to be honest, I was pretty frustrated with the service and their unwillingness to basically do anything other than sell me something I wasn't even interested in.  Considering the customer service rep gave pretty much the bare minimum as far as "service" is concerned, I thought I'd see if I can actually get some answers from the Community instead.
    Here's my situation - my wife and I bought the original Droid when it first came out close to two years ago.  One of the lines came up for an "annual" upgrade at some point last year but we decided to wait.  I just upgraded that eligible line to an iPhone 4 this morning.  The other line shows that there is an upgrade available July 2nd, including a whopping $50 NE2 credit .
    My predicament is that the earpiece/speaker on my Droid is completely shot, basically leaving me with a garbled sound when someone calls.  I was hoping, stupidly I guess, that I could upgrade both lines today to the iPhone since this phone is basically useless at the moment.
    When I went to the store, they flat out told me there is "no way whatsoever to move this date up" but "hey, you can upgrade to another Droid."  Not sure why in the world I would upgrade to a completely different phone.  They said something about "we can't move or change contract dates" and "Apple has restricted our ability to change these dates and sell Apple products even a day early." 
    My question is this, is there absolutely no way to have the upgrade date moved up a few weeks?  It seems pretty ridiculous that I can't upgrade a few weeks early when I'm A) willing to give up my $50 NE2 credit  B) willing to continue my "loyalty" by signing on for another 2-year contract and C) willing to shell out more money for a phone.  I guess I don't see where Verizon is losing out on money here....it's not like I was trying to upgrade back in January when the iPhone 4 was first released.
    Do I have any options?  Am I basically stuck with continuing to pay my slightly overpriced service and sit with a broken Droid until early July?
    Thanks for any input.  Sorry for the rant.  Just a little frustrated that it appears to be so difficult to spend my money. 
    -Adam

    Thanks for the quick suggestion mdram4x4.  I gave them a call a bit ago and it sounds like if you're looking to upgrade (sounds like even an hour early) to either an Apple or 4G product you're basically stuck.  Seems like a great way to promote your technology and flagship products 
    I may give it one more shot and then just stick it out for a few weeks.

  • Upgrade question...not data related!

    Ok, I have learned to accept the fact I have no choice but to get a data plan if I want to get a new phone that my daughter can see the screen on since she is visually impaired.  The question I have now is both hers and my phone are due for early upgrade on the same day, the 29th/30th (depends on who I ask) of this month. I had planned on waiting til then to get the new phones but now we have several new issues. Her vision has degraded to the point where on her current phone, the Versa, she can no longer tell certain letters or numbers apart, even with the font set to the largest size available, so I need to do something quick for her. I have the EnV Touch, which until January was a great phone, never had a problem with it, since then it will not hold a charge for more than 3-4 hours, bought a new battery-same problem. constantly resets itself, will not keep my settings (i.e. wallpaper, background, clocks etc), 2 weeks ago the inside screen went bonkers and now it looks like a bad Picasso, even with all that I was going to limp it along until the end of the month. Well, today the touch screen has gone bonkers and the phone itself gets incredibly hot when I try to charge it. Is it possible to get our upgrade NOW even though it is 3 weeks early? Without getting charged a ridiculous price since I am extending 2 yrs?
    Sorry this is so long....hope someone can help

    My Droid 2 (motorola) never shuts off.  (only if I remove the battery) This is not a feature advertised when I purchased this phone.  I have had the phone replaced once already, and the new (used-refurbished) replacement has the same "feature".
    Ok, I've now called verizon and the responce was "tough" if you want a beter phone you have to pay for it retail price! 
    Now, I've been patient for enough months that I feel it's time to accually make my voice heard.   I would like to talk with someone who can remedy this situation.
    If you can't your replacement will!   

  • Upgrading questions regarding applications

    Hey all,
    I am upgrading from my black macbook running snow leopard to a new macbook pro 15''. A quick question about my applications- I have several licensed programs (Microsoft Office, Photoshop, some video games, etc.). When I move everything over from my time machine to the new computer, will I have to reenter these codes? I'm afraid they've been misplaced over time, and I don't want to have to pay again for these applications.
    Thanks in advance!!

    Good luck. Also, there is a great app that I couldn't live without, called Wallet (http://www.acrylicapps.com/wallet). It's probably the best $20 I've spent. This will keep all your personal information secure and help organize serial numbers, web passwords, bank accounts, etc. You can customize the categories to add as many options as you need. I don't know how much money this has saved me over the years as I surely would have forgotten serial numbers and would have had to re-buy the software.
    Bryan

Maybe you are looking for