Keynote Update Help Needed

Hi.
When I start Keynote 4.0 ('08), it informs me that there is an update (4.0.2) available, and that I should use the software manager to obtain the update. However, the software manager does not find the update, and it is not hidden or ignored (at least I can not toggle the Reset Ignored Updates menu item in the Software Update application to determine if it is indeed ignored). How can I correct this injustice and download and install my update?
Incidentally, Pages 3.0 ('08) does this as well, but Numbers 1.0 ('08) does not.
Thanks.

OK, so I found the answer by searching deeper in the forums. http://discussions.apple.com/message.jspa?messageID=6477224#6477224

Similar Messages

  • Stuck with - Update- help needed

    Hello all and thank you for reading!
    I have the following problem with update statment. Tables and data in them are as follows:
    Table 1: XML_TRANSFER
    create table XML_TRANSFER as
    select 111111 TAX_NR, 1 TYPE, 3000 PRIJ, 3000 POBOT from dual union all
    select 222222 TAX_NR, 1 TYPE, 720.7 PRIJ, 350.70 POBOT from dual union all
    select 333333 TAX_NR, 1 TYPE, 2600 PRIJ, 2100 POBOT from dual;Table 2: FIR_SET
    create table FIR_SET as
    select 2011 LET, 7 KROG, 111111 TAX_NR, 10 STEV_FAK, 2000 VALUE_ODPR, 0 VALUE_POBOT from dual union all
    select 2011 LET, 7 KROG, 111111 TAX_NR, 11 STEV_FAK, 400 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 111111 TAX_NR, 12 STEV_FAK, 400 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 111111 TAX_NR, 13 STEV_FAK, 200 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 1 STEV_FAK, 200 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 2 STEV_FAK, 20.7 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 3 STEV_FAK, 100 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 222222 TAX_NR, 4 STEV_FAK, 400 VALUE_ODPR, 0 VALUE_POBOT  from dual union all
    select 2011 LET, 7 KROG, 333333 TAX_NR, 81 STEV_FAK, 2600 VALUE_ODPR, 0 VALUE_POBOT  from dual;Ok, tables and data are set now for the "update" logic.
    Lets look at the data in table XML_TRANSFER.
    First row (with TAX_NR = 111111):
    UPDATE statment in this case should work like: the VALUE_ODPR should be same as VALUE_POBOT in table FIR_SET.
    This part i managed to do with this SQL:
    PROCEDURE     xml_update is
    BEGIN
    update fir_set an
    set an.value_pobot = an.value_odpr
    where let = (select distinct max(let) from fir_set)
    and krog = (select max(krog) from fir_set)
    and
      (select sum(a.VALUE_ODPR)-b.POBOT
      from fir_SET a, xml_transfer b
      WHERE a.tax_nr = b.tax_nr
      and an.tax_nr = a.tax_nr
      group by a.tax_nr,b.POBOT) = 0;
      commit;
      end;Resoult is as:
    LET                     KROG                  TAX_NR                 STEV_FAK                VALUE_ODPR            VALUE_POBOT                 
    2011                    7                      111111                 10                     2000                   2000 
    2011                    7                      111111                 11                     400                    400
    2011                    7                      111111                 12                     100                    100 
    2011                    7                      111111                 13                     200                    200                Ok the next example is a bit more tricky and i cant figure it out. I dont know how to explain it properly ... i will
    just post the resoult and try to explain it:
    LET                     KROG                  TAX_NR                 STEV_FAK                VALUE_ODPR            VALUE_POBOT                 
    2011                    7                      222222                 1                      200                    200 
    2011                    7                      222222                 2                      20.7                   20.7
    2011                    7                      222222                 3                      100                    100 
    2011                    7                      222222                 4                      400                    30   So what we need to do is we check is XML_TRANSFER.POBOT - VALUE_ODPR > 0, IF this is it then we update VALUE_POBOT with VALUE_ODPR.
    In next row we check again if above statment is correct and if it is we do the same. The process will continue as long as statment
    will be correct.
    If statment is no longer correct we have to do this operation: XML_TRANSFER.POBOT - SUM(VALUE_ODPR) (INSIDE SAME TAX_NR!!! So group by tax_nr!!)
    and update last row with given resoult. By no means we can get negative numbers.
    I really do help i explained my problem so that you will understand what i want to achive. If you have any questions please feel free to ask.
    Thank you for your help!
    Best regards, Cain!

    Hello and thank you again for taking your time!
    SQL you posted is still not quite right but we are almost there ... let me show you how it should look like (i have add a little more data into tables):
    Table XML_TRANSFER:
        TAX_NR       TYPE       PRIJ      POBOT
        111111          1       3000       3000
        222222          1      720,7        200
        333333          1       2600       2100
        444444          1       1000       1000
        555555          1       5000       3000Those are resoults i get running your SQL .....
           LET       KROG     TAX_NR   STEV_FAK VALUE_ODPR VALUE_POBOT
          2011          7     111111         10       2000        2000
          2011          7     111111         11        400         400
          2011          7     111111         12        400         400
          2011          7     111111         13        200         200
          2011          7     222222          1        200         200
          2011          7     222222          2       20,7           0
          2011          7     222222          3        100           0
          2011          7     222222          4        400           0
          2011          7     333333         81       2600           0
          2011          7     444444         55       1000        1000
          2011          7     555555        111       2000           0
          2011          7     555555         82       1000        1000
          2011          7     555555         83       1500        1500the correct resoults should be:
           LET       KROG     TAX_NR   STEV_FAK VALUE_ODPR VALUE_POBOT
          2011          7     111111         10       2000        2000
          2011          7     111111         11        400         400
          2011          7     111111         12        400         400
          2011          7     111111         13        200         200
          2011          7     222222          1        200         200
          2011          7     222222          2       20,7           0
          2011          7     222222          3        100           0
          2011          7     222222          4        400           0
          2011          7     333333         81       2600         2100
          2011          7     444444         55       1000        1000
          2011          7     555555        111       2000       500  
          2011          7     555555         82       1000        1000
          2011          7     555555         83       1500        1500Note at line 2011          7     333333         81       2600         2100 and at line 2011          7     555555        111       2000       500    I hope its more clear now.
    PS at 2600 the correct resoult is 2100 and not 0.
    Thank you
    best regards!
    Edited by: Cain_oracle on 24.8.2011 1:08

  • P6-2141eo Bios update, help needed.

    So i bought a new graphics card, tried installing it and it wont work, and when asking around i have been told that what i need to do is update my BIOS. However, there are no updates available under the product page for my desktop, the p6-2141eo. What im wondering is if HP simply wont be suplying any more updates to my model anymore, and if so does anyone know where i would turn to find newer versions of the BIOS, if there is any?
    The current BIOS is ami 7.16
    Would appreciate any help i can get!

    First things first.  Most likely a newer version of the BIOS will not address the problem you think you have. So, it seems there is another reason for the problem.  In checking the specs for that model, it shows there to be a 300w power supply.  That will limit the choices for a video card upgrade.  What is/was the new card that you tried?
    Next, I see that you have an Intel i7 processor.  In many posts from users trying to the change the video cards on these type systems, it is a real problem.  For whatever reason, ( I have not seen a resolution as to why ) trying to change the video cards and getting a performance improvement is troublesome, to say the least.  The delicate balance between the video card and the processor on these is easily thrown off, I do not know the reason or the solution.  Most users give up and leave it as is.
    I know, not a help.  I too, will track this discussion  to see if there is a resolution so I can help someone else down the road.  Good luck!!!
    {---------- Please click the "Thumbs Up" to say thanks for helping.
    Please click "Accept As Solution" if my help has solved your problem. ----------}
    This is a user supported forum. I am a volunteer and I do not work for HP.

  • Ayttm PKGBUILD update/Help needed

    The PKGBUILD in the aur is  badly outdated..V0.6.2 of ayttm is out . .and the PKGBUILD in the aur was to build v0.5 ...
    I have made a PKGBUILD of ayttm git over here
    http://aur.pastebin.com/9sMXVMz4
    Apart from that ,  building of ayttm fails..
    Both with the stable release of Ayttm 6 and the git
    Got this error here..
    http://pastebin.com/vx514JTp
    was wondering if anyone cud help me out..
    Any help would be much appreciated
    Last edited by fplolz (2010-04-22 11:11:28)

    With Windows, you need to disable firewall/AV/antiphishing/malware software. Once you do this, you should be able to complete the update.

  • HT1338 OS update help needed

    I have a 4 year old macbook with OS X v 10.5.8. In order to use a new iPod classic, I have to update my iTunes. In order to update my iTunes, I have to update my OS to 10.6.8. I downloaded it but got a message saying that I can't install it unless I hhave OS X v 10.6.
    I can't find a 10.6 update download.
    Can anyone help? This is really frustrating.

    Try installing iTunes 10.6.3. If that doesn't work, there isn't a download and you need to buy the upgrade on DVD.
    (79853)

  • Update Help Needed

    When I try to update my 3GS, I get a window that pops up and says that my "network connection has timed out". I have been on the phone with Apple twice now and they have no idea what to tell me!!! So frustrated! Please help!

    With Windows, you need to disable firewall/AV/antiphishing/malware software. Once you do this, you should be able to complete the update.

  • J2SE 1.50 06 Update Help Needed

    I am struggling with Java installation on an XP SP2 machine. First off, I am not a developer or programmer nor do I write code beyond basic windows/dos/tagz functionality.
    I registered here only after exhaustive and unfruitful web search and following 'normal' troubleshooting guidelines a Google search would produce.
    So at the risk of having violated forum policy by posting here, I apologize. Here is the problem:
    First noticed excessive error logging by Java applet while in Firefox 1.5. Cryptic messages didn't reveal much (to me), but I went through cleaning and reinstallation of latest Java software.
    Problem has escalated to a point where any console related inquiry, whether through IE , Mozilla or Windows control pannel will either black-out monitor or freeze screen with very noticable degradation of video signal. This makes troubleshooting difficult! Running Dualview; 2nd panel shuts down immedeatly. While freeze may sometimes unlock after a few long minutes, secondary panel will not restart w/o rebooting.
    Attempted 'clean' boot, lowered resolution ,changed hard ware accelaration and disabled write combining in multiple combinations without improoving results. Also signed in with different user profile.
    XP patches are current (according to MS Update anyway) , install is fairly recent. BIOS to ASUS P5WD2 Premium is up-to-date (P830D processor, 2 GB RAM) All other hardware in my machine runs flawless. No RAID, overclocking or hazzardous Reg tweaks.
    I am suspecting inter-relation between Java program and graphics system is causing trouble. Nvidea 6600 GT runs Viewsonic 20 at 1600x1200 and a Dell 18 at 1200x1084. I tried single modes and switched from DVI to VGA on both. Still no beans.
    XP runs rather lean (by windows standards) Heaviest load after explorer and browser is generally software based KVM (Kazoom) . I disabled program during troubleshooting.
    Error is repeatable in both Firefox and IE. Following links to 'test' Java installation generally results in same issue; either a black screen or freeze with degraded video signal.
    I may have 'class path' issue. For one, it's not listed in sys prop variables! I do show PATH and PATHext. Local directories are not default (C:Temp; C:Data etc) but 'program' and 'application' directories are unchanged. No other managed installs complain (Adobe CS, Office 2003 Pro). Windoze Error log doesn't report Java problems of course.
    In Java directory, I find PATCH.ERR file:
    ENTRY: lib\charsets.jar
    warning wpt0015: Old File does not exist
    ENTRY: bin\eula.dll
    warning wpt0015: Old File does not exist
    ENTRY: lib\ext\localedata.jar
    warning wpt0015: Old File does not exist
    Any tips or protocols you can suggest would be helpful
    I appreaciate the time you spent reading my post.
    Cheers
    Frank

    Check the video driver settings for an anti-aliasing parameter; reset to application controlled if different.

  • Ipod touch 3.1 update help needed urgently

    please hepl!!!!
    ive just downloaded the 3.1 update for my ipod touch , but halfway through the transfer from my computer to my i touch , i lost power to my computer , now my i touch is stuck on a screen with the apple logo and a progress bar that is empty , ive unplugged and plugged my i touch in again and it isnt even recognised
    what do i do now
    please help
    thanks
    russ

    i have the same exact problem and i have tried all the trouble shooting steps and it still doing the same thing. any suggestions??

  • 600x bios update help needed

    i have a 600x, well its my daughters, but having a problem with the sound from speakers, i would like to try updating the bios, but all the updates i can find are for floppies, this machine doesnt have a floppy drive, so is there any other way to update the bios.

    First things first.  Most likely a newer version of the BIOS will not address the problem you think you have. So, it seems there is another reason for the problem.  In checking the specs for that model, it shows there to be a 300w power supply.  That will limit the choices for a video card upgrade.  What is/was the new card that you tried?
    Next, I see that you have an Intel i7 processor.  In many posts from users trying to the change the video cards on these type systems, it is a real problem.  For whatever reason, ( I have not seen a resolution as to why ) trying to change the video cards and getting a performance improvement is troublesome, to say the least.  The delicate balance between the video card and the processor on these is easily thrown off, I do not know the reason or the solution.  Most users give up and leave it as is.
    I know, not a help.  I too, will track this discussion  to see if there is a resolution so I can help someone else down the road.  Good luck!!!
    {---------- Please click the "Thumbs Up" to say thanks for helping.
    Please click "Accept As Solution" if my help has solved your problem. ----------}
    This is a user supported forum. I am a volunteer and I do not work for HP.

  • IOS7 update help needed

    I attempted to update from iOS 6 to iOS 7 had no problems downloading the update until it froze on the screen with only an apple and the loading bar.  To remedy this I factory restored my iPhone 5 and downloaded iOS 7 from iTunes.  Now I can make it through the setup stages until the activation screen where it reads "Your iPhone could could not be activated because the activation server cannot be reached.  Try connecting your iPhone to iTunes to activate it, or try again in a couple of minutes."  So I tried to connect my phone to iTunes (the current version) and it reads "We could not complete your iTunes store request the network connection was lost.  There was an error in the iTunes store.  Please try agian later."  This has been happening for a couple hours,  also I am in full range of my home wifi and have no problems with my internet connection.  Any suggestions/help would be appreciated.

    I am having the exact same issue, except I had only just performed a restore ! F***ing rediculous from apple this

  • N97 Firmware update, help needed!

    hi,
    i have following problem... i am a mac user, so i cant update my firmware. 
    got a pc from a friend, windows xp service pack 3, to update my firmware...  installed the new ovi suite from beta labs, works good, phone recongnised etc....
    if i try updating from ovi suite, i get following error when the programs wants to download the software: internal error 625. 
    when i try to update through nokia software update app, it can connect to the phone, but then can't identify my nokia n97... 
    so both ways aren't working. does anyone have a clue why?
    thanks
    alex

    I also have the new MBP with the C2D, and i checked everywhere to see if i needed the firmware upgrade, and couldn't find it anywhere. All the references that i found were toward the old MBP, not the new one. One question about your boot camp tho, does your cpu constantly run at about 75% load in windows, because i just installed boot camp with XP pro today, (NO problem with firmware that i found) and i was always under load. Might be something to look into.
    PS, mine is 1.12f5, just like yours

  • SMC Firmware update help needed

    I've just got this brand new MBP from Apple. As a MacUser for the last 15 years my work now requires that I get Windose XP- hence the upgrade (I think I would have stayed with my old G4 Ti if I hadn't needed to get XP- but now I'm pleased that I did get this computer after all).
    Anyhow, enough of that. I have to install boot camp and the instructions indicate that I need to check my firmware and to see if it needs updating. This mbp system profiler reads that the Boot ROM Version is;
    MBP22.00A5.B00
    and the SMC Version is;
    1.12f5.
    However to me this is really quite illogical, because this could mean anything as far as I'm concerened- as I can't find any reference to these numbers anywhere else on the Apple site. Can you Apple folks shed some more light on this- and if I need to update, would you be so kind as to point me in the right direction?
    PS, Send my thanks to everyone at Apple for such a smashing Power...ahem...Macbook Pro
    regards,
    Tom
    Macbook Pro   Mac OS X (10.4.8)   2.16 GHz Core Duo 2

    I also have the new MBP with the C2D, and i checked everywhere to see if i needed the firmware upgrade, and couldn't find it anywhere. All the references that i found were toward the old MBP, not the new one. One question about your boot camp tho, does your cpu constantly run at about 75% load in windows, because i just installed boot camp with XP pro today, (NO problem with firmware that i found) and i was always under load. Might be something to look into.
    PS, mine is 1.12f5, just like yours

  • Volunteer in Uganda struggling for iTunes update, help needed!

    I cannot connect my iphone 3GS to the macbook I have been issued with because the version of itunes on it is too old.  When I attempt to update it I get a message saying that the server cannot be verified, I select the option to continue anyway only to then by told that the server cannot be contacted.
    I am on a satelite uplink system in rural south western Uganda.  There is almost no music on this macbook but I have authorised this macbook and I want to sync with it.  Any advice?

    I think you are stuck for a bit Norman. iTunes 11.1.1 and is not working with my 3GS which can not be updated to iOS 7. You can not get iTunes 11.0.5 as a download from Apple, and it worked fine with the 3GS.
    You can use PhoneView from eccam or Senti to copy the music from the iPhone to your Mac, where you should be able to play then through iTunes then.
    Either is a lot smaller than an iTunes update, so should help with the satelite link.

  • Automatic Update Help Needed

    My OS is Windows 7 64bit and my browser is google chrome. I have Silverlight 5 (5.1.30514.0) and I am unable to check the automatic update setting. All of my updates are current with all of my microsoft products

    Hi,
    You could try to update your silverlight manually.
    You could download the latest silverlight that suits your system from :
    http://www.microsoft.com/getsilverlight/get-started/install/default.aspx?reason=unsupportedplatform
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Ipod update help needed

    Please help me with updating my Ipod to Itunes.  When I try it it doesnt recognize my ipod

    Have you carefully worked through each and every single suggestion in this Apple support document?
    iPod not recognized in 'My Computer' and in iTunes for Windows
    What shows up on the iPod's display when you connect it to your PC?  Does it charge?
    B-rock

Maybe you are looking for

  • Null value in Hierarchy Problem

    Hi, all: I have the following issue that need your help, any comments would be greatly appreciated. We have a table, say sponsor, sponsor has four different levels, say level1, level2, level3, level4, but not all sponsors have 4 levels, some may only

  • Classic report - Highlight row

    APEX 4.2.1 With all the latest and greatest dynamic action and jQuery goodness in 4.2.1, what is the easiest, declarative way to highlight rows in a classic report region (Generic Column Template) based on data condition using values on the row, usin

  • Is It Possible To Run 2 Routers At The Same Time.

    This might be the dumbest question of all time but I am not computer savy. My two wireless PCs operate beautifully on my Linksys WRT54G. If, when I get the MacBook Pro, and for some strange reason I have connection proglems, can I get one of the airp

  • Forms 11G and OLAF Colours

    I haven't managed to install forms 11G as yet, but I was wondering if the same oracle colour schemes were still available and if you could still use the OLAF colours such as: OLAFLight, OLAFDark, OLAFVeryDark,OLAFVeryLight, OLAF1, OLAF2, OLAF3 etc. F

  • Where to store Job Descriptions

    Hi all, I know we have HRP 1002, but what is the best place to store job descriptions so that we can use it to post for open recks, store the skills. From a bigger picture, what is the best place to store the job descriptions?