Autohotkey!
WinActivate, [Full Window Title]
If the window title changes, you can either use the bundled Window Spy to grab the ID, or
SetTitleMatchMode, 2
to be able to match a window with only a partial title. (There's also a regex mode, if you're comfortable with it).
The maximising would be WinMaximise rather than activate. This does not focus it, though, so you'd need to use both to maximise and focus a window.
EDIT:
Ok, real world example time.
#\::
SetTitleMatchMode, 2
WinActivate, is currently
return
That fire on winkey and \ (# being winkey), then focuses any window with "is currently" in the title. In this case, "User is currently status", for my IM windows.
You should delete your post on SO. – Sinan Ünür – 2009-10-04T11:11:10.093
maximize means "expand the window to fill the screen". i think what you want is to raise a particular window, ie, "bring to front/focus". – quack quixote – 2009-10-04T11:17:11.267
sorry that's true, I'll edit question to make more sense – conspirisi – 2009-10-04T11:25:37.693