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:24 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 ... 26 27 28 29 30 [31] 32 33 34 35 36 ... 38next
751
Finished Programs / Re: IDEA: Keyboard and/or Mouse Movement Simulator
« Last post by skrommel on December 01, 2005, 01:45 AM »
 :o You're absolutely right!

I'll talk to Chris about it, it looks like a bug...

Skrommel
752
Finished Programs / Re: IDEA!: Transarent TaskBar When No Window is Maximized.
« Last post by skrommel on November 30, 2005, 05:07 PM »
 :) How about something like this?

NoTransMax - Maxes the taskbar transparent when no windows are maximized.

Feautures:
- Uses the existing transparency if any.

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

Skrommel
753
Post New Requests Here / Re: IDEA: Upload a picture to image hosting service
« Last post by skrommel on November 30, 2005, 01:54 PM »
 :tellme: Wget should return a html file, which could be searched for the url or error message.

Skrommel
754
Post New Requests Here / Re: IDEA: Upload a picture to image hosting service
« Last post by skrommel on November 30, 2005, 12:56 PM »
 :) I think wget --post-data=string should work. All that needs to be done is build the right post string from the <form></form> data on each site.

wget can be found at http://users.ugent.be/~bpuype/wget/

Skrommel
755
Finished Programs / Re: IDEA: Keyboard and/or Mouse Movement Simulator
« Last post by skrommel on November 30, 2005, 11:59 AM »
 :tellme: Thanks for donating, JxFriday!

But I don't understand why you get shifted keys, as Noise only sends random chars from A and Z. Please try holding down the A key for 20 secs while in Notepad and see what happens.

Skrommel
756
Finished Programs / Re: Idea: Movie Cache Viewer
« Last post by skrommel on November 30, 2005, 05:42 AM »
 :) In FireFox the default location is C:\Documents and Settings\[username]\Local Settings\Application Data\Mozilla\Firefox\Profiles\[profilename]\Cache directory

In Opera you can find the location by selecting Tools > Preferences > Advanced > History.

Skrommel
757
 :tellme: I don't think this is IdleMute... On the other hand, I don't see how another program could mess up the activation, unless it somehow disrupts the idle timer in AutoHotkey.

Skrommel
758
 :-\ Here's how I want it to work:

A red icon when IdleMute is muted, no matter what.
A green icon when enabled, inside time limits and not muted.
A grey icon when disabled or outside time limits and not muted.

Try the version I just uploaded!

Skrommel
759
 :tellme: Mine works just fine! What could this be? Anyone else with this problem?

Skrommel
760
 :) I give in!

IdleMute v1.5 has better icons and shows the Windows' volume slider on singleclick, so now you can just hide the original tray icon!

Skrommel
761
 :tellme: What version is that icon from? That one should be full color!

Skrommel
762
 :) I thought I'd have a look at this problem, but a Internet search for the file format turned up this page:

http://www.ust.hk/itsc/email/tips/tnef/
which describes how to install Fentun from
http://www.fentun.com/

Close enough?

Skrommel
763
 :) The topmost script does not handle <space>, and it also handles the separator chars individually. I just need to know if there's bug in the renaming or the dragging and dropping.

Skrommel
764
 :o Big error there!

Please try IdleMute v1.4!

@LuckMan212:
In 2. I used the TimeDate control, and never considered the regional settings!

About 1. and 3.: There are a few limitations in AutoHotkey, and this is the best I can do, so far. Some of the icons are 16 colors only, and to have both a doubleclick action and a bold text in the menu, they have to perform the same action. Hope you can live with it!  :)

Skrommel
765
 :-[ Just forgot to add http:// in the Run command... Try it now.

I don't know if I agree with you about the tray icons. The grey is used when IdleMute is diabled, and the red line when the speaker is muted. Anyone else care to comment?

Skrommel
766
 :tellme: Hmmm.... Is this a problem with the topmost script, too?

Skrommel
767
 :) Just uploaded IdleMute v1.3.

Reduced the CPU load even more, added a better About dialog and some more tray icons.

Skrommel
768
 :) Try IdleMute v1.2. I've reduced the CPU usage and added my first proper Settings dialog!

The memory usage displayed by TaskManager is unreliable, here's what Chris, the author of AutoHotkey writes: http://www.autohotkey.com/forum/viewtopic.php?t=2363

Skrommel
769
 :tellme: Still got problems? Care to elaborate?

Skrommel
770
 :tellme: Sorry about that! I just threw it together (and edited it about 10 times after posting it!) so I forgot to add the usual AutoHotkey info.

@mouser:
1) can we drag and drop files onto this autohotkey script from explorer to have them renamed?
2) if we compile the script can we do this?

This can easily be added if you compile or say yes to allow dropping on AHK-file when installing AHK.

3) in your line setting the separator, would there be a way to specify a SPACE character as a separator?

Check out the PatternRenamer script below.

It supports drag and drop or a command line, you can use <space> as a separator, and you can have a multichar separator or several singlechar ones. It also shows a preview of the first new filename before starting the renaming.

Skrommel


;PatternRenamer.ahk
; Rename files
;Skrommel @2005    www.donationcoder.com/Software/Skrommel

#SingleInstance,Force
SetBatchLines,-1
;AutoTrim,Off

separator   =-<space>            ;Char(s) separating the parts of the input filename, use <space> for space
oneseparator=1                   ;0=No 1=Yes  Treat the separator as one unit?
outpattern  =<4><2>test<2>-<1>   ;Pattern of the output filename
inpattern   =<1>- <2>- <3>- <4>  ;Pattern of the input filename, not in use, just to explain!

Loop,%0%
{
  StringReplace,inseparator,separator,<space>,%A_Space%,ReplaceAll
  outfile=%outpattern%
  shortpath:=%A_Index%
  Loop,%shortpath%
    longpath=%A_LoopFileLongPath%
  SplitPath,longpath,name,dir,ext,name_no_ext,drive
  If oneseparator=1
  {
    StringReplace,name_no_ext,name_no_ext,%inseparator%,``,ReplaceAll
    StringSplit,name_,name_no_ext,``
  }
  Else
    StringSplit,name_,name_no_ext,%inseparator%
  Loop,%name_0%
    %A_Index%:=name_%A_Index%
  Loop,%name_0%
  {
    part:=%A_Index%
    StringReplace,outfile,outfile,<%A_Index%>,%part%,ReplaceAll
  }
  Loop,10
    StringReplace,outfile,outfile,<%A_Index%>,,ReplaceAll
  If A_Index=1
  {
    msg=InFile:`t`t%longpath%
    msg=%msg%`nOutFile:`t`t%dir%\%outfile%.%ext%
    msg=%msg%`nSeparator:`t%separator%
    msg=%msg%`nOneSeparator:`t%oneseparator%
    msg=%msg%`nInPattern:`t%inpattern%
    msg=%msg%`nOutPattern:`t%outpattern%
    MsgBox,4,Is this correct?,%msg%
    IfMsgBox,No
      Break
  }
  FileMove,%longpath%,%dir%\%outfile%.%ext%,1
}
771
Skrommel's Software / Re: Problems with Ghoster
« Last post by skrommel on November 25, 2005, 02:45 PM »
 :huh: I'm blank.

Skrommel
772
 :) Here's a quick script I think works...

Just edit the three first lines.

Edited 2005.27: Changed the script to work properly with multiple files.

Skrommel


path       =C:\Temp             ;Path to the files to rename
inseparator=-                   ;Char(s) separating the parts of the filename
outfile    =<4><2>test<2>-<1>   ;Pattern of the output filename
;infile    =<1>-<2>-<3>-<4>     ;Pattern of the input filename, not used

Loop,%path%\*.*,,1
{
  outname=%outfile%
  Splitpath,A_LoopFileFullPath,name,dir,ext,name_no_ext,drive
  StringSplit,name_,name_no_ext,%inseparator%
  Loop,%name_0%
    %A_Index%:=name_%A_Index%
  Loop,%name_0%
  {
    part:=%A_Index%
    StringReplace,outname,outname,<%A_Index%>,%part%,ReplaceAll
  }
  FileMove,%A_LoopFileFullPath%,%dir%\%outname%.%ext%
}
773
 :) Try IdleMute v1.1!

Remember to delete the old ini-file before downloading the new version!

Skrommel
774
Finished Programs / Re: IDEA: auto-save AutoHotkey.ini daily to another folder
« Last post by skrommel on November 24, 2005, 10:40 AM »
 :) How about something along the lines of

SetTimer,BACKUP,60000

BACKUP:
IfNotExist,D:\AutoHotkey-%A_YYYY%-%A_MM%-%A_DD%.ini
  FileCopy,C:\AutoHotkey.ini,D:\AutoHotkey-%A_YYYY%-%A_MM%-%A_DD%.ini
Return

Skrommel
775
Finished Programs / Re: Idea: Movie Cache Viewer
« Last post by skrommel on November 24, 2005, 05:47 AM »
 :) Just change the source line in the ini-file.

Also, I've added an option to copy instead of moving the files from the folder, just remember to delete the existing ini file when downloading the latest version.

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