Messages - Nod5 [ switch to compact view ]

Pages: prev1 ... 223 224 225 226 227 [228] 229 230 231 232 233 234next
1136
I noticed RSSOwl version 2.0 is in development. They have a very informative five part flash demo (made in wink) up at http://boreal.rssowl.org/ . Some really interesting new features have been added (group tagging, smart saved searches as filters and much more). I think RSSOwl will be a really strong competitor to GreatNews in the freeware slot. I'm not sure how it compares with GreatNews resource wise though, since it uses Java.

1137
Post New Requests Here / Re: IDEA: Count my jazz albums
« on: May 19, 2007, 04:53 AM »
given a folder structure like this,
x:\cds\ARTIST1\ALBUM1\file.mp3
x:\cds\ARTIST1\ALBUM2\file.mp3
x:\cds\ARTIST2\ALBUM1\file.mp3
x:\cds\ARTIST2\ALBUM2\CD1\file.mp3
x:\cds\ARTIST2\ALBUM2\CD2\file.mp3
x:\cds\ARTIST2\OTHERFOLDER\no .mp3/.ogg/.wma/.wav files
...
the AHK script below takes a folder as input, counts the total number of artists, counts the total number of albums and output a list with this format:
total albums = XX
total artists = YY
-----------

ARTIST1
  ALBUM1
  ALBUM2
ARTIST2
  ALBUM1
  ALBUM2
...
script:
FileSelectFolder, xroot,,3, Select root CD folder. Example:
C:\rootCD`nThen click OK to run script
if xroot =
 exitapp
Loop, %xroot%\*.* , 2, 0
{
xartist = %A_LoopFileName%
xtext = %xtext%%xartist%`n
xartistcount += 1

Loop, %xroot%\%xartist%\*.* , 2, 0
{
xalbum = %A_LoopFileName%
Loop, %xroot%\%xartist%\%xalbum%\*.*,,1     ;recursive file loop
{
if A_LoopFileExt not in mp3,ogg,wma,wav             ;add ext. for other music file formats if needed
 continue
xtext = %xtext%%A_space%%A_space%%xalbum%`n
xalbumcount += 1
break
}
}
}
xout = total albums = %xalbumcount%`ntotal artists = %xartistcount%`n-----------`n%xtext%
xfile = %A_Temp%\%A_Now%.txt
FileAppend, %xout%, %xfile%
run, %xfile%

1138
Living Room / Re: What's your pet's favorite toy?
« on: May 09, 2007, 01:12 PM »
I agree on Q-tips and laser pointers. Both are on the cat toplist for sure.

Also, a tiny RC car can be great fun for cats to chase around (and escape from when you turn it around and charge ). Buy the really cheap ones though, because they will break pretty soon. I've seen cats transform into Godzilla at the sight of the RC car.

I've also been thinking of buying a tiny battery driven toy boat and put in the tub after filling it with a few centimeters of water. If I could put some dry food on the boat in a way that makes it hard, but not impossible, to get to then I bet the cat could play with that for quite some time.

1139
Post New Requests Here / Re: IDEA: Triple-Click Mouse Utility
« on: May 09, 2007, 12:33 PM »
Great that it works for you!  :) You can also easily modify the script to send other commands when other applications have focus.

1140
Post New Requests Here / Re: IDEA: Triple-Click Mouse Utility
« on: May 07, 2007, 02:55 AM »
Ralf,
glad to hear StrokeIt is working for you... Here's a triple click script for Autohotkey. It lets all clicks through to windows so watch out for accidental single/double click commands when trying to triple click. Also, it only sends the command tied to triple click if a certain process has focus (notepad.exe below, change that to whatever process name you want to send SHIFT + F2 to)

~LButton::
WinGet, xproc, ProcessName, A
if xproc != notepad.exe
 return

if t1 =
 {
 t1 = %A_Now%
 return
 }

if t2 =
 {
 if (A_Now - t1) < 1
   t2 = %A_Now%
 else
   t1 =
 return
 }

if (A_Now - t1) < 1
 {
 Send +{F2}
 t1 =
 t2 =
 return
 }

t1 = %A_Now%
t2 =

Pages: prev1 ... 223 224 225 226 227 [228] 229 230 231 232 233 234next
Go to full version