| Author |
Message |
Topic: how? stop cURL interpreting comma(,) in path/filename |
BETLOG
Replies: 6
Views: 277
|
Forum: Ask for Help Posted: Thu May 17, 2007 1: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: 277
|
Forum: Ask for Help Posted: Thu May 17, 2007 9: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: 277
|
Forum: Ask for Help Posted: Thu May 17, 2007 4: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: 7
Views: 377
|
Forum: Ask for Help Posted: Tue May 15, 2007 3: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: 459
|
Forum: Ask for Help Posted: Sun May 13, 2007 8: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: 986
|
Forum: Ask for Help Posted: Thu May 10, 2007 9: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: 986
|
Forum: Ask for Help Posted: Thu May 10, 2007 4: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: 986
|
Forum: Ask for Help Posted: Wed May 09, 2007 1: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: 986
|
Forum: Ask for Help Posted: Wed May 09, 2007 10: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: 986
|
Forum: Ask for Help Posted: Wed May 09, 2007 12:59 am 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: 256
|
Forum: Ask for Help Posted: Tue May 08, 2007 11: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 |
Topic: how? send ctrl-c (break) to a hidden cmd |
BETLOG
Replies: 2
Views: 256
|
Forum: Ask for Help Posted: Tue May 08, 2007 8:48 am Subject: how? send ctrl-c (break) to a hidden cmd |
Is it possible to send a ^c (break) to a %comspec% thats hidden...
ie: RunWait, %comspec% /c %COMMANDLINE%,,Hide,
also; i plan to initiate this ^c action with a gui button... if that makes any dif ... |
Topic: how: properly format `n for feeding to cURL? |
BETLOG
Replies: 6
Views: 436
|
Forum: Ask for Help Posted: Tue May 08, 2007 4:08 am Subject: how: properly format `n for feeding to cURL? |
Maybe you have to specify data transfer mode?
If I'm not mistaken this would effect the file transfer, and not the input of form <input> fields... But I'll put that at the bottom of the list of ... |
Topic: how: properly format `n for feeding to cURL? |
BETLOG
Replies: 6
Views: 436
|
Forum: Ask for Help Posted: Mon May 07, 2007 1:58 pm Subject: how: properly format `n for feeding to cURL? |
hmmm...
http://www.bbsinc.com/iso8859.html
line feed, new line LF, NL ^J 0A
...
lets say i enter this:
...
....
the newline is actually an `n (i checked)
if i do this:
Str ... |
Topic: how: properly format `n for feeding to cURL? |
BETLOG
Replies: 6
Views: 436
|
Forum: Ask for Help Posted: Mon May 07, 2007 12:42 pm Subject: how: properly format `n for feeding to cURL? |
I'm using cURL as part of an AHK script to FORM submit "multipart/form-data".
Everything works fine except where I have newline (`n) in the forms 'comment' field (so the user can type in co ... |
| |