Archive - spriglets RSS Feed

Spriglet #14:Google Desktop and Launchy Living Harmoniously

If you are a Google Desktop and Launchy user like me, you’ll know that the Win+Space hotkey doesn’t work in Launchy if Google Desktop is installed — even if the GD hotkeys are “disabled”.

Well, here’s the answer.  You’ll have to hack the registry, but it works good.  Here’s the gist.

  1. Exit Google Desktop
  2. Add this a “hot_key_flags” DWORD in HKEY_CURRENT_USER\Software\Google\Google Desktop\Preferences
  3. Set the value to “0″ to disable all hotkeys.
  4. I rebooted afterward, but restarting GD may enable it.

Spriglet #13 – Posterize a photo in Adobe Fireworks

Adobe Photoshop has a nice posterize command built-in. Not so in Fireworks. I searched high and low for a nice way to do it. In desperation I posted an entry on the official Adobe Fireworks message board and Ilya Razmanov was posted exactly what I needed.

Here’s the steps with pictures to illustrate his technique:

1. Open a cool photo in Fireworks (Yes, Ray Allen is cool, if you didn’t already know).

[ray allen]

2. Add this effect: Adjust Color -> Levels

[posterize example 1]

3. Set the max value in Output Level to 4

ff-posterize2.jpg

4. Add another effect: Add this effect: Adjust Color -> Levels. This time set the max Input Level to 4

ff-posterize3.jpg

6. Voila! Here’s what you get. You can tweak the levels on both sides to get the amount of posterization you want.

ff-posterize4.jpg

Spriglet #12 – Merging PDFs in Windows

[pdfsam]

OK, so I have PDFs of several receipts that I need to fax into my health insurance company for flexible spending reimbursement.  The Windows Fax “printer” doesn’t allow me to string together multiple files, so I’m in a pickle.

I don’t have Adobe Acrobat, so I start Googling with “(combine|merge) (pdf|pdfs) -mac -apple -purchase -demo -trial -shareware -acrobat”

I find pdfsam, download & install it, add my PDFs, set the output file, click Run and, bam, a merged PDF.  Sweet.

I tried another option as well — pdftk.  If you’d rather go the commandline route, this’ll work just as good.

Spriglet #11 – Restore off-screen programs in Windows

move_window.jpgHave you ever had a program show in the taskbar as running, but not show anywhere on the screen? (I’ve only had it happen in a dual-screen environment, but I suppose it could happen with a single screen.)

Anyway. Alt-Space is your friend.

Hit Alt-space, choose Move and then use the arrow keys to move the window back to the visible screen.

Spriglet #10 – Hiding Taskbar Icons in Windows

taskbar1.jpg

If you are like me and often have a lot of apps open in Windows, here’s an easy way to get more room in your taskbar. If you’re wondering why my taskbar is dark gray, I’m using the Zune theme for Windows XP.

®= right-click, © = click, © © = double-click

taskbar2.jpg

1. ® on an empty place on the taskbar, © Properties

taskbar3.jpg

2. © Customize next to the “Hide inactive icons” checkbox

taskbar4.jpg

3. Note the Behavior column

taskbar5.jpg

4. Next to each “Hide when inactive” entry change it to “Always Hide”

taskbar6.jpg

5. © OK twice and you’re done. Voila. Nice, huh?

Spriglet #9: Conditionally hide columns in Excel using VB

I have time tracking worksheet that I use at work. It looks something like this:

Task Total Hours Friday, 9/7/2007 Saturday, 9/8/2007
Status Report 5.25 1.5 0
Staff Meeting 12.5 1.5 0

Since I don’t work on Saturday or Sunday, I’d like to hide all columns that have a date that’s a Saturday or Sunday.

Here’s a little VB macro that will do the trick:

Sub header()

Dim eCol As Integer
Dim i As Integer

eCol = Cells(1, Columns.Count).End(xlToLeft).Column

For i = 1 To eCol

With Cells(1, i)

If IsDate(.Value) Then
If (Weekday(.Value) = vbSunday) Or _
(Weekday(.Value) = vbSaturday) Then
.EntireColumn.Hidden = True
End If
End If

End With

Next i

End Sub

h/t Rowan

Page 2 of 4«1234»
Switch to mobile version