August 13, 2012

Office for Mac 2014 to be the Next Release?

The new Microsoft Office for for Windows is still slated to arrive at the end of this year. But the big news for Office for Mac this summer is that when the new Windows Office is released, they will also release an update to Office for Mac 2011 that will bring the new cloud service to Office for Mac 2011.
The Next Web received a clarification from Microsoft:
When the new Office launches, we’ll deliver an update to Office for Mac 2011. With this update, Office for Mac licenses can count as part of your Office 365 Home Premium subscription. You will also be able to use SkyDrive and/or Office 365 to save and access all your documents from your Mac. Note that we’ve not announced any branding for future versions of Office for Mac.
This feels even later to the game than iCloud. If you're using Dropbox (and if you're not, why not?), then are you really going to move to Microsoft's solution? There is speculation on what additional features will be brought to Office for Mac 2011 in this update. The question then, is what will be the update schedule for a new major release. Will we see Office for Mac 2014, and will it include the elusive Unicode right to left support that drives so many of us away?

April 01, 2012

U.S. Notice 90813.23

Update:
Turns out it was a case of mistaken identity.

Hiatus Over

I gave myself a year hiatus from the blog to work on other projects. That time has ended, and I am very excited, and under no small amount of pressure, to announce the results of an unusual project that has taken the bulk of my time. It has been new territory for me, but I'm eager to make public later today what I've been working on.

August 25, 2011

Updated Accordance File Type Fixer for Intel

Sometimes, when you move files around, backup and restore, etc., files can lose their associated file type and creator type. For your Accordance files, this is where the Accordance File Type Fixer comes to the rescue. I recently updated the package to include new versions for Intel and Lion. You can find it on the Downloads page.

May 08, 2011

Applescript to remove and add login items

The login items for your user account in system preference is where you set applications to launch anytime you login to your computer, including restarts. My recent switch back to Quicksilver prompted the compilation of this script, which shows code that will remove other launchers from startup status and ensure that QS is set.

-- Script to remove other launchers from login items and add Quicksilver

tell application "Finder" to set QSpath to POSIX path of (application file id "com.blacktree.Quicksilver" as string)

tell application "System Events"
if login item "LaunchBar" exists then delete login item "LaunchBar"
if login item "Alfred" exists then delete login item "Alfred"
if (login item "Quicksilver" exists) is false then make new login item at end of login items with properties {path:QSpath, hidden:true, kind:application, name:"Quicksilver"}
end tell