Month: December 2011

  • The Web Development Kit Bundle

    Just hours remain to buy the The Web Development Kit Bundle.

    It’s got a useful mix of tools for Mac web development and its an excellent bargain even if you’re only looking for one or two items in the bundle. HTMLValidator is our contribution to the bundle which costs just 39.99

     

  • Web Development Toolkit

    HTMLValidator is one of the apps in the new Web Development Toolkit bundle, which is available now.

    The bundle contains 10 apps for a single low price of just $39.99
    If you’re doing web design, there’s probably something here for you
    (unless you already own all the apps, in which case, it also makes a great gift)

    The bundle includes:

    The offer is running until December 28th, so you will have to be quick, or you might miss out!

  • Versions, validateMenuItem: and NSMenuItem

    If you find when developing in 10.7 that you get a versions menu with a NSMenuItem as one of the items, it might be worth checking to see whether you’re correctly using validateMenuItem:

    This problem may happen if you return YES from validateMenuItem in a NSDocument subclass for menu items that you don’t actually control. (If you just return YES as a default for example)

    If instead you return

    [super validateMenuItem:item]

    You should get the correct “Revert to Last Saved Version” menu item

    I ran into this when I was doing testing on 10.7 and although documentation clearly states that you must call the super method in validateMenuItem: , it wasn’t immediately obvious to me what was causing the problem.

    Hope this helps if you have the same problem.

    Edit: This may have been fixed in OS X