| Author |
Message |
Topic: why this doesnt work |
garry
Replies: 3
Views: 54
|
Forum: Ask for Help Posted: Sat Jul 05, 2008 11:20 am Subject: why this doesnt work |
a := 3
b := 2
F1::
if (a>b)
{
msgbox, a larger than b
return
}
else
{
msgbox, a smaller than b
return
}
esc& ... |
Topic: Filter unwanted strings |
garry
Replies: 8
Views: 84
|
Forum: Ask for Help Posted: Thu Jul 03, 2008 8:49 pm Subject: Filter unwanted strings |
aargghh, one line, I knew it's possible with regex
thank you all for the examples above |
Topic: Precisely adjust Master and wave with OSD showing the value |
garry
Replies: 5
Views: 181
|
Forum: Scripts & Functions Posted: Thu Jul 03, 2008 8:39 pm Subject: Precisely adjust Master and wave with OSD showing the value |
hello TheLeO,
looks very nice , I tried the second example (have no volume key)
I was always missing the volume button on the keyboard
I had new keyboards with bad mechanic
now use an 20 years old ... |
Topic: Filter unwanted strings |
garry
Replies: 8
Views: 84
|
Forum: Ask for Help Posted: Thu Jul 03, 2008 7:54 pm Subject: Filter unwanted strings |
exist sure an easier way but it works (used ASCII codes)
used in Embed TV example
http://www.autohotkey.com/forum/viewtopic.php?t=27264
;---------- remove special characters from string -------- ... |
Topic: Removing Third Value in CSV File ? how to ? |
garry
Replies: 19
Views: 181
|
Forum: Ask for Help Posted: Tue Jul 01, 2008 9:56 pm Subject: Removing Third Value in CSV File ? how to ? |
I didn't tested , but I think the variable should be empty in the loop before reading
loop,read,%F1%
{
BX1=
BX2=
BX3=
BX4=
stringsplit,BX,A_LoopReadLine,`,
fileappend, %bx1%`,%bx2%`,%bx4 ... |
Topic: Microsoft without Gates |
garry
Replies: 0
Views: 81
|
Forum: General Chat Posted: Fri Jun 27, 2008 8:22 pm Subject: Microsoft without Gates |
Bill Gates: how a geek changed the world
http://news.bbc.co.uk/2/hi/business/7461783.stm
Microsoft without Gates
http://money.cnn.com/magazines/fortune/storysupplement/gates_microsoft/index.html
... |
Topic: vidplay(FileName,x,y,w,h,loop,ontop) function |
garry
Replies: 3
Views: 250
|
Forum: Scripts & Functions Posted: Thu Jun 26, 2008 3:43 pm Subject: vidplay(FileName,x,y,w,h,loop,ontop) function |
Thank you Trubbleguy, I like it
works fine |
Topic: My Argument With an AI Program. |
garry
Replies: 30
Views: 766
|
Forum: General Chat Posted: Thu Jun 26, 2008 11:22 am Subject: My Argument With an AI Program. |
page gwbasic, ELIZA "online live"
http://www.xs4all.nl/~hwiegman/ELIZA.HTM
---------------------------------------------
> Hi! I'm Eliza. Let's talk.
* I like autohotkey
> What m ... |
Topic: Preset Master Volume Fader |
garry
Replies: 7
Views: 141
|
Forum: Ask for Help Posted: Thu Jun 26, 2008 7:44 am Subject: Preset Master Volume Fader |
works in XP
soundset,0,master,mute ;SPEAKER=MASTER ON
SoundSet,95,master ;SPEAKER=MASTER volume set to 95 procent
|
Topic: I need a date stamp |
garry
Replies: 2
Views: 59
|
Forum: Ask for Help Posted: Thu Jun 19, 2008 6:19 pm Subject: I need a date stamp |
example, can also use Send or Fileappend to write it to a text file
FormatTime, var2,, MMMM dd yyyy hh:mm:ss
msgbox,%var2% - Mike |
Topic: Limiting text box input size |
garry
Replies: 3
Views: 77
|
Forum: Ask for Help Posted: Tue Jun 17, 2008 4:09 pm Subject: Limiting text box input size |
another example, must type in 4 numbers
;-------------------- INPUT with 4 digits only number with password -------
Gui, Add, Text,, Enter 4 Digit number:
Gui, Add, Edit, vAA1 gAA1 password Num ... |
Topic: AHK web browser |
garry
Replies: 12
Views: 312
|
Forum: Ask for Help Posted: Sat Jun 07, 2008 5:43 pm Subject: AHK web browser |
sorry, was thinking it's something similar
I was lost in the scripts...
I've downloaded IE4AHK.zip now , must read it , thank you tank |
Topic: AHK web browser |
garry
Replies: 12
Views: 312
|
Forum: Ask for Help Posted: Sat Jun 07, 2008 5:28 pm Subject: AHK web browser |
I try to embed something in ahk, like
see/listen >> television/radio/map/video
http://www.autohotkey.com/forum/topic27264.html
found this in forum (example with tabs)
;--------- saved at ... |
Topic: Problem passing params to convert doc to txt with >> |
garry
Replies: 2
Views: 100
|
Forum: Ask for Help Posted: Sat Jun 07, 2008 4:45 pm Subject: Problem passing params to convert doc to txt with >> |
I've tested this
SetWorkingDir, %A_scriptdir%
Loop, %a_scriptdir%\*.doc, 0, 1
{
StringTrimRight,FileName,A_LoopFileName,4
run, %comspec% /c c:\antiword\antiword.exe %A_LoopFileS ... |
Topic: TOMA - Internet TV [Url] |
garry
Replies: 1
Views: 272
|
Forum: Utilities & Resources Posted: Sat Jun 07, 2008 9:28 am Subject: TOMA - Internet TV [Url] |
thank you for the link, BoBo
What about to create your own TV-Streaming-Station using an AHK GUI embedded browser control ?
I tried this (first example-Y)
http://www.autohotkey.com/forum/viewto ... |
| |