topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Tuesday November 11, 2025, 6:23 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 27 28 29 30 31 [32] 33 34 35 36 37 38next
776
Finished Programs / Re: IDEA - Personal Software Process Time Logger
« Last post by skrommel on November 23, 2005, 04:50 PM »
 :) Here's a simple one...

TaskLog - Logs the time spent on different tasks.

Features:
- User defined tasknames.



You'll find the downloads and more info at Skrommel Software.

Skrommel
777
IdleMute - Mutes the speaker when the computer has been idle for a while.

Features:
- User defined idle time.
- Remembers previous mute state on boot up.
- Force mute or umnute on startup.
- Muting can be disabled when your music programs run.
- Doubleclick the tray icon to mute/unmute.

You'll find the downloads and more info at Skrommel Software.

I didn't implement the cat sensor, but if you really want it, I'll look at it.

Skrommel
778
Finished Programs / Re: Idea: Movie Cache Viewer
« Last post by skrommel on November 22, 2005, 09:24 PM »
 :) Great idea, wr957!

CacheSort - Automatically moves files from Internet Explorer's cache into folders based on their extensions.

Features:
- Very handy for storing movies and other files downloaded from the Internet.
- Can be used to watch other folders.
- Run a program when a new file is found.



You'll find the downloads and more info at Skrommel Software.

What I really would like is to be able to extract the urls and more from the cache to sort and comment the downloaded files more accurately. Maybe later...

Skrommel
779
Post New Requests Here / Re: IDEA! Detect superfluous text & truncate filenames
« Last post by skrommel on November 22, 2005, 05:18 AM »
 :tellme: I thought the Loop,%folderpath%\*.*,0,1 did recurse folders? Hmmm.

Skrommel
780
 :) Just uploaded DoOver v1.2.

You can now start playback/recording from the menu, and I corrected the hotkey handling.

Skrommel
781
Post New Requests Here / Re: IDEA! Detect superfluous text & truncate filenames
« Last post by skrommel on November 21, 2005, 03:54 PM »
 :) Try this script!

To run it, download and install AutoHotkey from www.autohotkey.com. Save the script below as RemovePath.ahk and doubleclick to run.

Skrommel

;RemovePath.ahk
SetBatchLines,-1
FileSelectFolder,folderpath
StringSplit,folder_,folderpath,\
foldername:=folder_%folder_0%
Loop,%folderpath%\*.*,0,1
{
  StringGetPos,pos,A_LoopFileName,%foldername%_
  If pos=0
  {   
    StringReplace,filename,A_LoopFileName,%foldername%_,
    FileMove, %folderpath%\%A_LoopFileName%,%folderpath%\%filename%
    ;MsgBox,%filename%`,%A_LoopFileName%`,%foldername%`,%pos%
  }
}
782
Finished Programs / Re: AutoClick
« Last post by skrommel on November 20, 2005, 04:17 PM »
 :) This change should do the trick! Check the sript above...

Also uploaded new verion of MouseActivate.

Skrommel
783
Finished Programs / Re: AutoClick
« Last post by skrommel on November 20, 2005, 10:50 AM »
 :) Just uploaded a new version of MouseActivate at www.donationcoder.com/Software/Skrommel.
It includes the autoclick function, but it is disabled by default, so edit the ini file.

Also, delete the ini file if you have run MouseActivate before, so the new settings can be activated.

I also updated the script above to not click when the left or right mousebutton is down, but I don't know if it is enough.

Skrommel
784
Finished Programs / Re: AutoClick
« Last post by skrommel on November 19, 2005, 07:49 PM »
 :) Here's a script I made some time ago. I think I'll include it in my MouseActivate tool.

Skrommel


;AutoClick
;
;Clicks the left mousebutton automatically
;when the mouse is in the same place for 10*100ms

SysGet,dblx,36     ;SM_CXDOUBLECLK
SysGet,dbly,37     ;SM_CYDOUBLECLK

pause=10
counter=0

START:
  x2:=x1
  y2:=y1
  counter+=1
  disable=0
  KeyWait,LButton,D T0.05
  If ErrorLevel=0
    disable=1
  KeyWait,RButton,D T0.05
  If ErrorLevel=0
    disable=1
  MouseGetPos,x1,y1
  If (x1<x2-dblx Or x1>x2+dblx Or y1<y2-dbly Or y1>y2+dbly)
    counter=0
  If (counter=pause And disable=0)
    MouseClick,Left
Goto,START
785
Finished Programs / Re: simple tool needed: start x.exe in y seconds
« Last post by skrommel on November 10, 2005, 09:50 AM »
 :)

Here's what you're after

Sleep,%1%
Run,%2%

Skrommel
786
 :) Do anyone know where I can get in touch with the WinAmp people?

I've posted a petition at WinAmp Forums http://forums.winamp.com/showthread.php?s=f318116be2ec7c2898bf6ce883d96a1b&threadid=230454, but yet no contact.

Skrommel
787
 8) A bit further down the line...



And you can even have it watch for song titles or artist names, and change stream automatically!

Skrommel
788
 :( I think that has to do with a missing window. I have a 2 sec delay if a recorded window can't be found and another 2 sec delay if it can't be activated. Check your macro in the Settings menu.

I have tried with waiting until the active window is deactivated, but it's just not reliable.

But a class might work accurately enough. If your problems persists, I'll check it out.

Skrommel
789
 :tellme: I'd almost forgot.

I'm still not shure about this, but give me a few hours and I'll see if I can wrap it up.

My StreamCastTitle reads from WinAmp's bookmarks, and shows the title and more in a listview.

Any suggestions for improvements?

Here's a screenshot of the current version:



Skrommel
790
Unfinished Requests / Re: Suggestion for Skrommel
« Last post by skrommel on November 05, 2005, 09:17 PM »
 :tellme: How would you handle the sorting, Carol? I'm not shure if I understand.

Skrommel

791
 :tellme: Try the last uloaded version of DoOver. Also added option to move the mouse back to it's original position after playback. Remember to delete or move your DoOver.ini-file.

Some of the delay is due to playback having to wait until the Ctrl is release after pressng Ctrl-F5, as to prevent interferance with the macro.

Skrommel
792
Unfinished Requests / Re: Suggestion for Skrommel
« Last post by skrommel on November 05, 2005, 08:31 PM »
 :) A somewhat lazy solution. I'd prefer a neat column layout, but then I'd have to rearrange them for every new program.

Talking of lazy, what editor do you use to show the true layout of the index.html you use?
Now I have to keep posting it. I'm also afraid of breaking it.

Skrommel
793
 :) Try DoOver v1.1.

Features:
- User defined hotkeys.
- Recorded macro can be edited throught the Settings menu before playback.
- Change playback speed through the Settings menu.
- Press Ctrl-F12 to start and stop recording.
- Press Ctrl-F5 to start playback.

Won't move windows due to relative mouse actions.

Skrommel
794
 :) DoOver was not intended to record beyond the active window, but if you want, I can watch windows titles and slow down the playback.

Skrommel
795
Unfinished Requests / Re: Suggestion for Skrommel
« Last post by skrommel on November 05, 2005, 03:32 AM »
 :) The anchors are there, but an index would make things easier to find.

SKrommel
796
  :) Just one parameter short! Try it now, Carol!

I actually wasn't planning to show the recorded keys, I just forgot to remove the code before posting! But If you like it, I'll keep it in. I'll just shorten it.

Skrommel
797
 :) A late entry!

DoOver - Record and playback keyboard and mouse actions.

Features:
- User defined hotkeys.
- Recorded macro can be edited throught the Settings menu before playback.
- Change playback speed through the Settings menu.
- Press Ctrl-F12 to start and stop recording.
- Press Ctrl-F5 to start playback.
- Won't move windows due to relative mouse actions.

Changes:
- 2005.11.06: Updated to v1.1: Added userdefined hotkeys and settings to ini file, better window handling.

You'll find the downloads and more info at Skrommel Software.

Skrommel
798
Post New Requests Here / Re: IDEA: Proxy launcher which closes app when its "done"
« Last post by skrommel on November 02, 2005, 06:06 AM »
 :) My ProcessGuard can sort of do this, but maybe it's overkill?

Skrommel
799
Post New Requests Here / Re: IDEA: Compare File Properties
« Last post by skrommel on November 01, 2005, 02:08 AM »
 :) Yes, you can use the class as described in the ShowDialogsToo.ini-file.

To find the class name, you can download AutoHotkey from www.autohotkey.com and run AutoIt3 Window Spy.

Skrommel
800
Finished Programs / Re: IDEA: Program Closer
« Last post by skrommel on October 31, 2005, 05:37 PM »
 :) Just updated CloseMany to v1.1.

Added tooltip when selecting processes, and moved the buttons.

Skrommel
Pages: prev1 ... 27 28 29 30 31 [32] 33 34 35 36 37 38next