I want the impossible?

Hey folks. I have my iTunes library on our main, intel imac. I have an old, G3 ibook in the bedroom hooked up to a pretty decent set of speakers. It is currently running iTunes 6, as the specs for iTunes 7 requires OS X 4 Panther. The iMac and all of my music shows up in the sources pane on the iBook and just mocks me, stating it requires a better version of iTunes (iTunes 7?). Is there any solution that does not require an upgrade to Panther so I can run iTunes 7?
I am between jobs, so dropping a hundred or more for a copy of Panther just is not in the cards for now.....

Sorry, but there's no way to get iTunes 7.x running on Mac OS X 10.2, and if you are sharing via iTunes 7.x on your iMac, an earlier version of iTunes will not work with it. If you shop around, such as on eBay, you may be able to find a retail copy of 10.3 for not much money (there's at least one "buy it now" price of under $40 with bids much lower. If you go that route, make sure you get a retail copy of 10.3, not the install disks from some other model of Mac.
Regards.
Message was edited by: Dave Sawyer

Similar Messages

  • I want the UV-meter instead of analog meter, where can I load this ?

    Hello...
    I want the digital uv-meter (5 green LED,3 Yellow LED,3 red LED) instead of the anolog meter that already have in function of Labview.
    I try to make it but when I use it as subvi with many inputs, the led always blink and it doesn't work properly.
    So, I think about maybe it already have somewhere that I can download !!
    Thank you for your help.

    Further the Dennis Knutson's comment, a program design maxim is the 'Black Box' approach. One should develop modules which isolate functionality in a 'black box'.
    You then use these modules at a higher level.
    Anyway my own rules of thumb are: -
    1) One screen height and no more than two screen
    widths for diagrams.
    2) Isolate functionality and modularise using SUB Vi's
    3) If you exceed 1 then proceed and implement 2
    If you take a look at the first example, what you will see is an approach which creates 5 bars and controls them - from a beautiful use of the inbuilt functions. All this is done in a quarter screen!
    When I first started with Labview I sometimes 'Spawned' modules that look like yours (screens were smalle
    r then). I learnt quickly to start fresh. I know that 5 years down the line, maintaining the code will be almost impossible as it will take longer to understand to amend / fix than to re-write.

  • I created a form, I want the email notices to go to several people. Why is this so difficult? It seems like they have to be a co-author/reader or something? I don't get it

    I created a form, I want the email notices to go to several people. Why is this so difficult? It seems like they have to be a co-author/reader or something? I don't get it

    This is crazy! I paid for this service to make it easier to create forms for a company that has had several acquisitions all over the globe. This was supposed to make it easy to create forms hosted on adobe so no matter what happens on all their servers, we would be safe using this forms service until we can integrate all acquisitions and build a permanent web site on a single server. Now I find out that even this is a major issue sending emails to team members, many I have never met so making them a collaborator or even setting up forwarded emails is not something I wanted to do. This service was advertised as simple and easily send notifications to many people. I am now frustrated and thinking this was a waste of money! Why is it like that?

  • How to avoid the duplicate values, I do not want the duplicate............

    i have one database table called "sms1" that table is updated every day or on daily basis it has the following fields in it:
    SQL> desc sms1;
    Name Null? Type
    MOBILE NUMBER
    RCSTCNATCNATCNATCNAWTHER VARCHAR2(39 CHAR)
    SNO NUMBER
    INDATE DATE
    From this table the is one column "RCSTCNATCNATCNATCNAWTHER VARCHAR2(39 CHAR)" . I am splitting it into different columns like :
    SQL> desc smssplit;
    Name Null? Type
    R VARCHAR2(2 CHAR)
    C VARCHAR2(2 CHAR)
    S VARCHAR2(1 CHAR)
    TC VARCHAR2(3 CHAR)
    NA VARCHAR2(3 CHAR)
    TC2 VARCHAR2(3 CHAR)
    NA2 VARCHAR2(3 CHAR)
    TC3 VARCHAR2(3 CHAR)
    NA3 VARCHAR2(3 CHAR)
    TC4 VARCHAR2(3 CHAR)
    NA4 VARCHAR2(3 CHAR)
    WTHER VARCHAR2(10 CHAR)
    SNO NUMBER
    INSERTDATA VARCHAR2(25 CHAR)
    Now I am written a procedure to insert the data from "Sms1" table to smssplit table...
    CREATE OR REPLACE PROCEDURE SPLITSMS
    AS
    BEGIN
    INSERT INTO scott.SMSSPLIT ( R,C,S,TC,NA,TC2,NA2,TC3,NA3,TC4,NA4,WTHER,SNO)
    SELECT SUBSTR(RCSTCNATCNATCNATCNAWTHER,1,2) R,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,3,2) C,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,5,1) S,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,6,3) TC,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,9,3) NA,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,12,3) TC2,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,15,3) NA2,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,18,3) TC3,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,21,3) NA3,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,24,3) TC4,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,27,3) NA4,
    SUBSTR(RCSTCNATCNATCNATCNAWTHER,30,10) WTHER, SNO
    FROM scott.SMS1 where SNO=(select MAX (sno) from SMS1);
    END;
    Now in order to update the second table with data from first table on regular basis I have written a job scheduler and I am using oracle 9.0. version...
    DECLARE
    X NUMBER;
    JobNumber NUMBER;
    BEGIN
    SYS.DBMS_JOB.SUBMIT
    job => X
    ,what => 'scott.SPLITSMS;'
    ,next_date => SYSDATE+1/1440
    ,interval => 'SYSDATE+1/1440 '
    ,no_parse => FALSE
    :JobNumber := to_char(X);
    END;
    Now this job scheduler is working properly and updating the data for every one minute but it is taking or updating the duplicate values also ..like example:
    R C S TC NA TC2 NA2 TC3 NA3 TC4 NA4 WTHER SNO
    INSERTDATA
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:49:16
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:49:16
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:50:17
    R C S TC NA TC2 NA2 TC3 NA3 TC4 NA4 WTHER SNO
    INSERTDATA
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:50:17
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:51:19
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:51:19
    R C S TC NA TC2 NA2 TC3 NA3 TC4 NA4 WTHER SNO
    INSERTDATA
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:52:20
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:52:20
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:53:22
    R C S TC NA TC2 NA2 TC3 NA3 TC4 NA4 WTHER SNO
    INSERTDATA
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:53:22
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:54:45
    33 35 2 123 456 789 543 241 643 243 135 RRRRRR 55
    06-SEP-2012 03:54:45
    Now I do not want the duplicate values to be updated ...and want them to ignore them.....
    please I need a help on this query........How to avoid the duplicate values............

    Look at the posts closely:might not be needed if formatted ;)
    create or replace procedure splitsms as
    begin
      insert into scott.smssplit (r,c,s,tc,na,tc2,na2,tc3,na3,tc4,na4,wther,sno)
      select substr(rcstcnatcnatcnatcnawther,1,2) r,
             substr(rcstcnatcnatcnatcnawther,3,2) c,
             substr(rcstcnatcnatcnatcnawther,5,1) s,
             substr(rcstcnatcnatcnatcnawther,6,3) tc,
             substr(rcstcnatcnatcnatcnawther,9,3) na,
             substr(rcstcnatcnatcnatcnawther,12,3) tc2,
             substr(rcstcnatcnatcnatcnawther,15,3) na2,
             substr(rcstcnatcnatcnatcnawther,18,3) tc3,
             substr(rcstcnatcnatcnatcnawther,21,3) na3,
             substr(rcstcnatcnatcnatcnawther,24,3) tc4,
             substr(rcstcnatcnatcnatcnawther,27,3) na4,
             substr(rcstcnatcnatcnatcnawther,30,10) wther,
             sno
        from scott.sms1 a
       where sno = (select max(sno)
                      from sms1
                     where sno != a.sno
                   ); ---------------> added where clause with table alias.
    end;Regards
    Etbin

  • Why doesn't firefox have an uninstall button ...Or don't run when it's update shows it isn't compatible with my wireless hp printer? I don't want the version installed when it takes away my being able to print wirelessly!!!!!!

    I don't want the updates...If they take away the ease of using my computer! The latest version didn't recognize the FB shortcut. and I use my wireless printer now I don't think I can because it had no updates for the printer after firefox updated I want to be able to back out of the update if it isn't compatible!!!!

    I am the original poster, and I got rid of CA Security Suite & and loaded the Avast! which has some great features even on the freeware. No more crashes or freezing & yes I think there is a problem with CA & Firefox, but am not sure what it is. CA was a big time hog. I also got rid of my ISP and installed a Intellinet Wireless G PCI Card & now am completely wireless on my PC. Faster by far than what I was paying $50/month for & I use my Windows Firewall.

  • I downloaded and bought a movie from iTunes on my iPad and now want the same movie on my MacBook Pro but its not offering me to download it, it giving me the options of buying it which I already did. How I get the movie onto my MacBook?

    I downloaded and bought a movie from iTunes on my iPad and now want the same movie on my MacBook Pro but its not offering me to download it, it giving me the options of buying it which I already did. How I get the movie onto my MacBook?

    You can connect the iPad to your Mac's iTunes and do File > Devices > Transfer Purchases, that should copy it over to the Movies part of your library.
    Depending upon what country that you are in, and whether the film studio allows it, you might also be able to re-download it on your Mac via the Purchased link under Quicklinks on the right-hand side of the iTunes store home page.

  • I want the cursor to be in the address bar when creating a new window; it works for new tabs and in a new private window, but not in safe mode.

    I have tried following the advice offered in the few different threads I have found on this but nothing fixes it. I want the cursor to be in the address bar when I open a new window and/or when firefox opens without restoring a previous session. I fixed the issue for new tabs via about:config but this doesn't work for new windows. I tried safe mode and the problem persists. In new private windows the cursor is in the address bar.

    The search box in about:home steals the cursor. Changing your home page to something else will cause the cursor to start in the address bar for new windows.

  • My daughter accidentally purchased something from an in app purchase, I haven't got the £2.99 in my account until tuesday, and do not want the in app purchase, my account wont log in now even to download free apps. How do I get my account back?

    My daughter accidentally purchased something from an in app purchase, I haven't got the £2.99 in my account until tuesday, and do not want the in app purchase, my account wont log in now even to download free apps. How do I get my account to log in again and function properly, I shouldn't have to wait until I have a meagre £2.99 in my account again do I because I need the app store for other apps etc and updating, even if it is only 3 days I want my account back, I do not want nor did I give permission for the in-app purchase and would be happy for it to be returned/credited back so I can have MY account available for my IPhone.
    Please can someone give me more information or let me know how else I can get my account working again, before pay day on tuesday.
    Much appreciated, Paddy.
    <Email Edited by Host>

    Hello paddyliverpool,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/ht1933
    Refund is an option.
    Best of luck,
    Mario

  • When I want to add items to the bookmarks toolbar, for example: -Zoom toolbar. The zoom Toolbar appears on the bookmarks toolbar, but it shows the favicons aswell the underlined text. I only want the favicons. How to do this, please help!!

    I want to add items to the bookmarks toolbar. for example: the Zoom Toolbar addon. This works, but not only the favicons appear on the bookmarks toolbar, aswell as the underlined text. How to avoid this?
    I only want the favicons from an addon to appear on the bookmarks toolbar, not with the underlined text. How to do this?
    This problem doesn't happen with any other toolbar. And this problem didn't happen with an earlier version of firefox. Please Help!
    Thanx, BassMann.

    If you only want the favicons and not the names of the bookmarks on the bookmarks toolbar, you can do that with the [https://addons.mozilla.org/en-US/firefox/addon/4072/ Smart Bookmarks Bar] add-on.

  • How can I backup my iPad to another iPad backup on my same account.  They're both listed on my list of backups, but it won't let me choose to backup to the one I want on my other iPad which I no longer have.  But I specifically want the pictures

    How can I backup my iPad to another iPad backup I have on my same iCloud account.  The old one is totally gone.  Both backups are listed on my iCloud account. So is there any way I can backup the one I have now to the other one.  I really just want the pictures that are in the old backup.  I have tried resetting and erasing all settings and data on the one I still have, but when I go to restore by iCloud;  it only gives me the choice of restoring the same iPad.  Then in iCloud>storage>backup, I'm still not able to choose which backup to backup to.  I've even tried deleting the backup to the iPad I still have, then resetting all setting and data on the iPad, hoping that in resetting up the iPad it would give me the option to backup to my old iPad.  But it doesn't.  It still has memory of the backup of my newer iPad.
    I JUST WANT THE PICTURES!!!
    Thank you!!!
    iPad (3rd gen) Wi-Fi + Cellular, iOS 6.1.3, iCloud Backup

    You now need to get your pictures back! The similar to you, after I updated my iPad Mini, I can't get my some files on device. I tried many ways, fortunately, I got a tool from http://tinyurl.com/Data-Recovery-iPhone to help me recover lost files easily! It supports iPhone, iPad, iPod, etc iOS devices!

  • In FBL5N report user wants the sales document number to be displayed,

    HI, Guys
    Need ur help to sort out the problem
    In FBL5N report user wants the sales document number to be displayed,
    but the sales ducument number column is coming blank and this needs to pick from VBRP table
    As I discussed with Abaper, he reqiures a key field which common in BSEG abd VBRP table
    So,Please guide me in approaching the right way
    Munender

    Hi,
        Speak with your SD consultant. They can set up the copy control in SD so that the sales order is populated in the invoice in field ZUONR (Assignment).This will then copy to the assignment field in accounting.
    Alternatively you can use an exit to populate another field during the Posting.
    Kind regards

  • Any ideas about how to restore old appearance on my iPhone?  I just updated to IOS7 and really dislike the new appearance. I have to log on to see percentage of power used since I can't see it on my opening screen. I also want the gray folders back.

    I just updated to ios7 and do not like the redesign. I want the old design back. Has anyone found out how to restore the old appearance. I do not understand why the change. I now have to unlock my phone to be able to check my battery level because my screensaver has a light color in the upper corner and I can't read the text. I want the gray panel back.

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • I have all my music on my external hard drive when I try to add it to iTunes it is automatically added to my MacBook Pro's hard drive. How do I stop this from happening? I just want the music to stay on the external hard drive. Thanks!

    I have all my music on my external hard drive when I try to add it to iTunes it is automatically added to my MacBook Pro's hard drive. How do I stop this from happening? I just want the music to stay on the external hard drive. Thanks!

    This is true of course, but doesn't cover the situation where some files are in the iTunes Media folder and others are on an external drive. In my case I keep my music in the Media folder and all my films on an external drive (there are too many to have on the internal drive). In iTunes 11, and before, it was easy to add those external files by holding down the alt/opt key while dragging to the sidebar. In iTunes 12 this is no longer possible. There are several workarounds: use TuneSpan to move the file after it's been added; delete the file from the Media folder and empty the trash then use iTunes Get Info which will report the file is missing and allow you to locate it; constantly switch the Add to iTunes toggle on and off as required. All of these require a lot more work than just holding down the alt/opt key while adding.
    It constantly gets harder.

  • We have multiple users, each with multiple devices, on 1 apple id - as we want to share music and ibooks etc.  We want the children to have access to the store, but with a financial limit. How do we do this?

    We have multiple users, each with multiple devices, on 1 apple id - as we want to share music and ibooks etc.  We want the children to have access to the store, but with a financial limit. How do we do this?

    Welcome to the Apple Community.
    That's simply not possible I'm afraid. You'd need to give them their own account and allowance or make it so you are required to be there to input the password when they wish to make a purchase.

  • I just updated iOS on my iPhone 5. What a shock!! Where is the premium look and feel I bought my iPhone for? If I wanted the lokale feel of iOS 7.0 I would have bought a much cheeper taiwanese smartphone. Please let me know how I can return to the origina

    I just updated iOS on my iPhone 5.
    What a shock!! Where is the premium look and feel I bought my iPhone for?
    If I wanted the lokale feel of iOS 7.0 I would have bought a much cheeper taiwanese smartphone.
    Please let me know how I can return to the original look and feel of the iPhone surface I bought my phone for.

    You had plenty of time to look at screenshots on the internet and read various blog posts about iOS 7.

Maybe you are looking for

  • Error while saving Excise Invoice

    Hi,    I am getting an error while saving an excise invoice. It is as follows :     BED :  Debit =  1,400.00  Credit =  392.00  Diff =1,008.00     Message no. 8I312 please help.... Thanks & Regards, S.Rajeswari

  • Macintosh Users: Beware the misleading advertising for Acrobat 9 Pro Extended

    b An important message to Macintosh users who are considering purchasing Acrobat 9: I am writing to let you Mac users know that the current marketing for Acrobat Pro is very confusing. On the page for Acrobat Pro, https://store1.adobe.com/cfusion/sto

  • Loading EJB problem with deployejb !

    I am working with Oracle 8.1.5 and jdk 1.1.6, when I am running the deployejb tool with the HelloWorld example of the demo directory, I have a problem when loadind EJB files into the database: deployejb -v -u workuser ... done Compiling Stubs...done

  • Single Line Text Control (H&J) Tip & Question

    The attached image is tip for anyone that is looking to constrain InDesign to use the width of a text field (maintaining a single line, good for a variable data field), while allowing characters to smash if they exceed the amount that would normally

  • Exchange Rate Difference in PO with cost center assignment

    Hi All, In case of exchange rate difference in a PO with a cost center assignment the system Do not post the difference in the exchange rate difference account (maintained under transaction type - KDM - in T-code OBYC). However if the PO is a normal