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 ... 12 13 14 15 16 [17] 18 19 20 21 22 ... 38next
401
Post New Requests Here / Re: IDEA: Make a GUI for a program called Dustbin
« Last post by skrommel on December 22, 2006, 05:25 AM »
 :) I don't understand why you would want a GUI for Dustbin, 'cause I haven't found that it has any parameters, and I'm not shure what it deletes.

But here's one:

MsgBox,4,DustBin GUI,Run Dustbin?
IfMsgBox,Yes
  Run,d129en.exe

Skrommel
402
Kerio Personal Firewall v2.1.5 has a nice active connections window.
http://www.321download.com/LastFreeware/files/keriopf215.zip

Naviscope v8.7 has a less obstrusive view. It shows the active connections as an ever changing stack of lines attached to a toolbar.
http://download.softpedia.ro/software/INTERNET/nscope.exe

Skrommel
403
Post New Requests Here / Re: IDEA: Create shortcuts from a list
« Last post by skrommel on December 22, 2006, 04:54 AM »
 :tellme: Forgot one vital information: A \ must be added to the end of a lone destination folder! See the description above!

Skrommel
404
Post New Requests Here / Re: IDEA: WinCovers
« Last post by skrommel on December 21, 2006, 06:48 PM »
 :) So it's better late than never, then? Merry Christmas to you, too!

Skrommel
405
Finished Programs / Re: IDEA: Keyboard & Mouse cleaner
« Last post by skrommel on December 21, 2006, 08:19 AM »
 :) Try ToddlerTrap v1.1.

Changes:
- 2006.12.21 - v1.1: Added option to move ToddlerTrap out of the way.

Skrommel
406
Post New Requests Here / Re: IDEA: Create shortcuts from a list
« Last post by skrommel on December 21, 2006, 04:05 AM »
 :) Here's one I've actually tested!

Text2Shortcut

Drop a textfile with filenames on it to create shortcuts in the folder of the dropped textfile.
DoubleClick the drop window to select another target folder.
RightClick the drop window to edit the settings.

Syntax of dropped text file:
 <path to source file>
 <path to source file>,<target folder>\   <--- a \ must be added to a folder
 <path to source file>,<target folder>\<name of shortcut>
 <path to source file>,<name of shortcut>
;<path to source file> ;=line is ignored

Skrommel

Spoiler
;Text2Shortcut.ahk
; Drop a textfile with filenames on it to create shortcuts in the folder of the dropped textfile.
; DoubleClick the drop window to select another target folder.
; RightClick the drop window to edit the settings.
;Syntax of dropped text file:
; <path to source file>
; <path to source file>,<target folder>\    <--- a \ must be added to a folder
; <path to source file>,<target folder>\<name of shortcut>.lnk
; <path to source file>,<name of shortcut>.lnk
;;<path to source file> ;=line is ignored
;Skrommel @2006

#SingleInstance,Force
#NoEnv
applicationname=TS
Gosub,INIREAD
If target=
  TrayTip,%applicationname%,Target set to the folder of the dropped file
Else
  TrayTip,%applicationname%,Target set to the folder %target%
Gosub,GUI
Return

GuiDropFiles:
Loop,Read,%A_GuiControlEvent%
{
  SplitPath,A_GuiControlEvent,,dropdir,,,
  dir:=dropdir
  If target<>
    dir:=target
  StringSplit,part_,A_LoopReadLine,`,
  IfInString,part_1,`;
    Continue
  If part_0=1
  {
    SplitPath,part_1,name,,ext,name_no_ext,
    If ext In %noext%
      name:=name_no_ext
    FileCreateShortCut,%part_1%,%dir%\%name%.lnk
    TrayTip,%applicationname%,Created shortcut to %part_1% in %dir%\%name%.lnk
  }
  Else
  If part_0=2
  {
    SplitPath,part_2,name,dir,ext,name_no_ext,
    If dir=
      dir:=dropdir
    If name=
      SplitPath,part_1,name,,ext,name_no_ext,
    If ext In %noext%
      name:=name_no_ext
    FileCreateShortCut,%part_1%,%dir%\%name%.lnk
    TrayTip,%applicationname%,Created shortcut to %part_1% in %dir%\%name%.lnk
  }
}
Return

GUI:
Gui,Destroy
Gui,+ToolWindow +DropFiles +AlwaysOnTop -Border +Caption +Resize
Gui,Add,ListView,X0 Y0 W%w% H%h% GGUICLICK AltSubmit Icon
Gui,Show,X%x% Y%y% W%w% H%h%,%applicationname%
Gui,+LastFound
guiid:=WinExist("A")
WinMove,ahk_id %guiid%,,%x%,%y%,%w%,%h%
Return


GUICLICK:
If A_GuiControlEvent=DoubleClick
{
  FileSelectFolder,target,%target%,3,Select target folder
  If ErroLevel=1
    target=
  If target=
    TrayTip,%applicationname%,Target set to the folder of the dropped file
  Else
    TrayTip,%applicationname%,Target set to the folder %target%
}
Else
If A_GuiControlEvent=RightClick
{
  RunWait,%applicationname%.ini
  Reload
}
Else
  PostMessage,0xA1,2,,,A
Return

GuiEscape:
GuiClose:
WinGetPos,x,y,w,h,ahk_id %guiid%
IniWrite,%x%,%applicationname%.ini,Settings,x
IniWrite,%y%,%applicationname%.ini,Settings,y
IniWrite,%w%,%applicationname%.ini,Settings,w
IniWrite,%h%,%applicationname%.ini,Settings,h
IniWrite,%target%,%applicationname%.ini,Settings,target
ExitApp

INIREAD:
IfNotExist,%applicationname%.ini
{
  IniWrite,% A_ScreenWidth-140,%applicationname%.ini,Settings,x
  IniWrite,0,%applicationname%.ini,Settings,y
  IniWrite,37,%applicationname%.ini,Settings,w
  IniWrite,37,%applicationname%.ini,Settings,h
  IniWrite,%A_Space%,%applicationname%.ini,Settings,target
  IniWrite,exe`,com`,cmd`,bat,%applicationname%.ini,Settings,noext
}
IniRead,x,%applicationname%.ini,Settings,x
IniRead,y,%applicationname%.ini,Settings,y
IniRead,w,%applicationname%.ini,Settings,w
IniRead,h,%applicationname%.ini,Settings,h
IniRead,target,%applicationname%.ini,Settings,target
If (target="" Or target=" " Or target="ERROR")
  target=
IniRead,noext,%applicationname%.ini,Settings,noext
Return

407
Finished Programs / Re: IDEA: Replacement Power Options applet
« Last post by skrommel on December 20, 2006, 07:46 AM »
 :( I've posted the question on the AHK forum, but noone has answered...

Skrommel
408
Post New Requests Here / Re: IDEA: Create shortcuts from a list
« Last post by skrommel on December 20, 2006, 02:25 AM »
 :) Got a bit carried away there, only the first "s are needed.

Is it still broken?

Skrommel
409
Skrommel's Software / Re: TaskLog v1.1 - Small bug and an improvement or 2...
« Last post by skrommel on December 19, 2006, 05:54 PM »
 :) Great suggestions, guys!

Skrommel
410
Skrommel's Software / Re: thinking tiMes for DoOver
« Last post by skrommel on December 19, 2006, 05:52 PM »
 :) Have you given any thought to how you'd like to input the variables? Great idea, though, looks like I'll have to look into this one.

Skrommel
411
 :) Yepp.

Skrommel
412
Skrommel's Software / Re: Can't disable DragKing
« Last post by skrommel on December 19, 2006, 05:49 PM »
 :tellme: It looks like I'll have to redo the enabling/disabling, then...

Is ahkstructlib.ahk in use in DragKing? I'll look into it!

Skrommel
413
Skrommel's Software / Re: need help with runsaver please
« Last post by skrommel on December 19, 2006, 05:41 PM »
 :tellme: Hmm, very strang. I tried this too, and no luck. Then I tried an Excel file, and the same result!

I'll look into it...

Skrommel
414
Skrommel's Software / Re: MouseAvtivate requests ..
« Last post by skrommel on December 19, 2006, 04:56 PM »
 :) User definable edges and actions and delays are all great suggestions!

Skrommel
415
Skrommel's Software / Re: Idea for cutaway
« Last post by skrommel on December 19, 2006, 04:53 PM »
 :) I made it to cut away the border around Windows Media Player, but have it stay in the tray, and an option to invert the selection should be no problem.

Skrommel
416
Skrommel's Software / Re: TransOther requests + possible bug/conflict check ..
« Last post by skrommel on December 19, 2006, 01:07 PM »
 :) TransOther is just something I made to see if it would work, but on my own PC it's kind of slow, and I don't use it. I have no plans of expanding it further, but getting hold of the menus could be interesting.

I haven't had any of the symptoms you describe, but if you run another tansparency app, anything could happen, I guess.

The traytip .exe is removed in the next version.

It also didn't check any transparency on startup, so when it exist, all transparency is removed.

Ghoster is a bit more elaborate than TransOther, but without any transparency. WinWarden can set the transparency (and a lot more) to any window.

Skrommel
417
Skrommel's Software / Re: TakeABreak should be named "j00GotPwned!"
« Last post by skrommel on December 19, 2006, 11:56 AM »
 :) Sorry for your problems, Deozaan. Maybe I should state it more clearly in the information.

But adding a "nighttime" option is a great ide! I shure could need one!

Skrommel
418
Skrommel's Software / Re: CacheSorting Firefox as well
« Last post by skrommel on December 19, 2006, 11:54 AM »
 :) Have a look at the Settings. Change the sourcepath line to point to the location of the folder you want to sort.

I'll look into making it support multiple sources.

Skrommel
419
Skrommel's Software / Re: Problems with Ghoster
« Last post by skrommel on December 19, 2006, 11:23 AM »
 :) Try changing the showontop setting in the ini-file.

I've also removed the "hole punching", so the latest version should perform better on slow systems!

Skrommel
420
Skrommel's Software / Re: LabelControl
« Last post by skrommel on December 19, 2006, 10:48 AM »
 :) Great feedback, chrisk!

Sorry for your troubles, but try the latest version of LabelControl, it addresses a lot of your problems.

Skrommel
421
Post New Requests Here / Re: IDEA: Create shortcuts from a list
« Last post by skrommel on December 19, 2006, 09:31 AM »
 :) No, it's <source file>,<target folder>
But <shortcut name> could be added, too.

Try the script above now. I've added "s in the shortcut creation.

Skrommel
422
Post New Requests Here / Re: IDEA: The Holy Grail of text reading on a PC
« Last post by skrommel on December 18, 2006, 12:41 PM »
 :) The voices are bundled with a lot of TTS tools, for example NaturalReader.

Skrommel
423
Post New Requests Here / Re: IDEA: Create shortcuts from a list
« Last post by skrommel on December 18, 2006, 02:23 AM »
:) How about this?

Now you can add the target path after the file in the text file, separated by a comma:
<source file>,<target folder> for example c:\boot.ini,c:\archive.
To change the default path, that is, override the path of the dropped text file, doubleclick in the drop window.
To remove the default path, just cancel the browse dialog.

Skrommel
424
Finished Programs / Re: IDEA: Replacement Power Options applet
« Last post by skrommel on December 17, 2006, 07:30 PM »
 :) Man, you must really have a slow computer!

But seriously, what CPU is in there? I've never gotten any negative values, and they correspond very well with Task manager's tray icon. The code is lifted from the Autohotkey site, and noone has reported any anomalies...

I've just uploaded a new LowToSleep that checks if the icon exists, and I've changed the settings to show threshold in % and checking interval in seconds. Remember to delete your existing ini file!

Please keep me informed.

Skrommel
425
Post New Requests Here / Re: IDEA: The Holy Grail of text reading on a PC
« Last post by skrommel on December 17, 2006, 06:18 PM »
 :) Talking of holy grail, I myself use a text to speech engine, and a pair of wireless headphones. Have you tried NeoSpeech? It's amazing!

Skrommel
Pages: prev1 ... 12 13 14 15 16 [17] 18 19 20 21 22 ... 38next