Messages - DyNama [ switch to compact view ]

Pages: prev1 ... 5 6 7 8 9 [10] 11 12 13 14 15next
46
Coding Snacks / Re: IDEA: Grammar Nazi Mass Rename
« on: March 30, 2012, 04:55 PM »
i learned a little regex just to use it in BRU!


47
General Software Discussion / scroll down to next picture
« on: March 29, 2012, 11:08 PM »
hi, gang! i frequently end up browsing blogs that start each post with a picture. the pic of course has no relation to how much the webpage scrolls down when i click in the scroll bar. if i'm interested in seeing every picture, i end up clicking once in the scroll bar, then clicking the up or down arrows a couple times, which is irritating. anyone know of a program or firefox addon that scrolls down to the next picture with 1 click? an example blog would be this cooking blog, http://mykentuckyhome-kim.blogspot.com/, that i wish i could press a button and scroll right down to the next picture.

48
Coding Snacks / Re: IDEA: Grammar Nazi Mass Rename
« on: March 29, 2012, 10:32 PM »
am i too late? i like a program called Bulk Rename Utility: http://www.bulkrenameutility.co.uk/Main_Intro.php

49
Post New Requests Here / Re: IDEA: Very simple timeclock utility
« on: March 22, 2012, 02:28 AM »
each preset msg is coded to show the msgbox then turn off the timer:
  Gui,3: show,,%Custom1%     ;this pops up the msgbox, no?
  SetTimer, logchanges, off     ;this turns off the timer
i don't really know, but it seems to me that the easiest explanation for it working under old AHK but not AHK_L is that AHK popped up the msgbox first but for some reason AHK_L turns off the timer first, so a new window, albeit one created by this program, doesn't get logged.

if just popping up a new window isn't going to work under AHK_L, we could have each of the 8 presets call a subroutine that ends the previous timer and logs the result, and starts a new timer for the preset. unfortunately i don't find one. i think Brett intended to make one out of the Logchanges sub, he has a comment ";move this section as a gosub", that does what each preset message would have to do. but i don't know how to do that.

50
Post New Requests Here / Re: IDEA: Very simple timeclock utility
« on: March 21, 2012, 12:26 AM »
i'm running the titlelog.ahk file with AutoHotkey_L on a win7 x64 laptop. i'm also running a hotstring.ahk file that i just created, and 2 AutoHotkey executable programs, CapShift and Close2Quit, that i got here a while ago on donationcoder.

actually i realized that if
Code: Text [Select]
  1. SetTimer, logchanges, off
is a line to turn off the timer, the timer must be on, therefore it's redundant to change that line to "on". there was 1 more line that Brett intended to turn it back on after it had been off:
Code: Text [Select]
  1. SetTimer, logchanges, ON                        ;turn the timer back ON
so i put semi-colons in front of the 9 lines rather than change them.

Pages: prev1 ... 5 6 7 8 9 [10] 11 12 13 14 15next
Go to full version