| Author |
Message |
Topic: {HD - backup, sector-by-sector] |
BETLOG
Replies: 4
Views: 265
|
Forum: Ask for Help Posted: Thu Apr 01, 2010 12:04 am Subject: {HD - backup, sector-by-sector] |
clonezilla
why reinvent the wheel? |
Topic: why? : can't get rivatuner graph window size |
BETLOG
Replies: 2
Views: 242
|
Forum: Ask for Help Posted: Wed Mar 24, 2010 12:51 am Subject: why? : can't get rivatuner graph window size |
| What i mean is i had it working, and then just as I am happy with it and cleaning up/moving into my main (always running) script it just stops working on rivatuner. And yes, it works on any other win ... |
Topic: why? : can't get rivatuner graph window size |
BETLOG
Replies: 2
Views: 242
|
Forum: Ask for Help Posted: Tue Mar 23, 2010 9:17 pm Subject: why? : can't get rivatuner graph window size |
I wrote a script that shows the window size as it's being resized, and it works on everything except Rivatuners graph... actually it DID work.. but now it doesn't, and I have no idea why.
Any clues? ... |
Topic: how? paste a list of filenames into text doc |
BETLOG
Replies: 1
Views: 811
|
Forum: Ask for Help Posted: Tue Oct 28, 2008 6:50 am Subject: how? paste a list of filenames into text doc |
I do a filename search in explorer, and get a bunch of results, i sort by modified date to see the most recent, i select a bunch and ctrl-c to get a list of filenames on clipboard...
How do i paste ... |
Topic: how? stop cURL interpreting comma(,) in path/filename |
BETLOG
Replies: 6
Views: 778
|
Forum: Ask for Help Posted: Thu May 17, 2007 12:16 pm Subject: how? stop cURL interpreting comma(,) in path/filename |
| I probably should have clarified earlier: cURL interprets commas as a delimeter between multiple filenames. So it's functioning correctly... it's just odd that there is no method (that i can see) of ... |
Topic: how? stop cURL interpreting comma(,) in path/filename |
BETLOG
Replies: 6
Views: 778
|
Forum: Ask for Help Posted: Thu May 17, 2007 8:33 am Subject: how? stop cURL interpreting comma(,) in path/filename |
Titan, yeah I did that.
But it's cURL thats interpreting the comma, not ahk, so short of telling cURL to accept the string raw (which doesnt seem to be possible) i guess I'll just have to avoid comm ... |
Topic: how? stop cURL interpreting comma(,) in path/filename |
BETLOG
Replies: 6
Views: 778
|
Forum: Ask for Help Posted: Thu May 17, 2007 3:02 am Subject: how? stop cURL interpreting comma(,) in path/filename |
cURL question:
I am using cURL to send a filename, the path to which contains commas (,)
eg: x:\images\SomeActorName (Alias1, Alias2)\imagename.jpg
cURL internally interprets this comma as the d ... |
Topic: date picture taken |
BETLOG
Replies: 14
Views: 1466
|
Forum: Ask for Help Posted: Tue May 15, 2007 2:26 pm Subject: date picture taken |
using FileGetTime?
http://www.autohotkey.com/docs/commands/FileGetTime.htm |
Topic: SendMode Play vs SendMode Input question- see example script |
BETLOG
Replies: 6
Views: 1423
|
Forum: Ask for Help Posted: Sun May 13, 2007 7:47 am Subject: SendMode Play vs SendMode Input question- see example script |
Not sure if this is helpful, but I have also had success with a similar recent problem by using piping. <, >, etc
fieldContents = Your problem Text`r`n
FileDelete,TextContainingHardReturnsTh ... |
Topic: how? disable/enable a listview checkbox |
BETLOG
Replies: 10
Views: 8198
|
Forum: Ask for Help Posted: Thu May 10, 2007 8:47 am Subject: how? disable/enable a listview checkbox |
| Hmm, it seems that now that I have looked into imagelists a bit more, that the do not in fact offer much more simplicity as i had asumed. It seems that I'll need to be constantly creating and destroyi ... |
Topic: how? disable/enable a listview checkbox |
BETLOG
Replies: 10
Views: 8198
|
Forum: Ask for Help Posted: Thu May 10, 2007 3:41 am Subject: how? disable/enable a listview checkbox |
Hmm. Doesn't seem to work at all for me.
It occasionally seems to work for a fraction of a second, but then the checkbox goes and does it's thing anyway.
I assume this is because of in-built assum ... |
Topic: how? disable/enable a listview checkbox |
BETLOG
Replies: 10
Views: 8198
|
Forum: Ask for Help Posted: Wed May 09, 2007 12:30 pm Subject: how? disable/enable a listview checkbox |
| Hmm.... this certainly works... and as you said has the disadvantage of altering the checkbox original state.... but it also allows the 'invisible/disabled' checkbox to be checked/unchecked and made v ... |
Topic: how? disable/enable a listview checkbox |
BETLOG
Replies: 10
Views: 8198
|
Forum: Ask for Help Posted: Wed May 09, 2007 9:42 am Subject: how? disable/enable a listview checkbox |
prepend something to the first column of each row
Excellent point. I already have a couple of row items that would suit this quite well. (initially are empty, and after processing they contain either ... |
Topic: how? disable/enable a listview checkbox |
BETLOG
Replies: 10
Views: 8198
|
Forum: Ask for Help Posted: Tue May 08, 2007 11:59 pm Subject: how? disable/enable a listview checkbox |
Interesting.
That seems to be the same behaviour I have mine doing at the moment with:
GuiControl,-Checked +NoSort,FILEINFORMATION
....
GuiControl,+Checked -NoSort,FILEINFORMATION
In my case ... |
Topic: how? send ctrl-c (break) to a hidden cmd |
BETLOG
Replies: 2
Views: 653
|
Forum: Ask for Help Posted: Tue May 08, 2007 10:43 am Subject: how? send ctrl-c (break) to a hidden cmd |
Yes, thanks... that works well.
DetectHiddenWindows, On
IfWinExist, ahk_pid %CMDPID%, , ,
ControlSend, ,^c,ahk_pid %CMDPID%, , ,
DetectHiddenWindows, Off |
| |