| Author |
Message |
Topic: [Help] Control, TabRight not working! |
biatche
Replies: 1
Views: 72
|
Forum: Ask for Help Posted: Sun May 18, 2008 1:10 pm Subject: [Help] Control, TabRight not working! |
Run, control mmsys.cpl
Control, TabRight, 2, SysTabControl321, Sounds and Audio Devices Properties
im trying to get to "Sounds" tab of Sounds and Audio Devices Properties control panel ... |
Topic: Put here requests of problems with regular expressions |
biatche
Replies: 254
Views: 9422
|
Forum: Ask for Help Posted: Mon May 12, 2008 8:02 am Subject: Put here requests of problems with regular expressions |
say i have this
testvar = random_key=random_settings hello=hi
and random would really mean it could be anything
I wish to use regexmatch to get random_key into a var, ok, it might not get it ... |
Topic: [How] Text Manipulation |
biatche
Replies: 8
Views: 279
|
Forum: Ask for Help Posted: Mon May 12, 2008 6:26 am Subject: [How] Text Manipulation |
ok, put it this way, what if the searchterm is like
the ??? is ???
the problem is, you don't know what's ???.. could be a dragon for all you know
this is the difficult part for me which is wh ... |
Topic: [How] Text Manipulation |
biatche
Replies: 8
Views: 279
|
Forum: Ask for Help Posted: Sun May 11, 2008 9:34 pm Subject: [How] Text Manipulation |
then would you know how i can get them into a variable in the case is like this
[section i want]
??random??key=the cat is black ; ??random??line
??random??key=the cat is black ; ??random??l ... |
Topic: [How] Text Manipulation |
biatche
Replies: 8
Views: 279
|
Forum: Ask for Help Posted: Sun May 11, 2008 8:04 pm Subject: [How] Text Manipulation |
anyone got ideas? am i on the right track?  |
Topic: [How] Text Manipulation |
biatche
Replies: 8
Views: 279
|
Forum: Ask for Help Posted: Sun May 11, 2008 1:50 pm Subject: [How] Text Manipulation |
Sub3:
matchsection = (colors)
Loop, read, %file%
{
LineNumber = %A_Index%
Loop, parse, A_LoopReadLine,`n,`r %A_Space% %A_Tab%
{
IfInString, A_LoopField, %Ma ... |
Topic: [How] Text Manipulation |
biatche
Replies: 8
Views: 279
|
Forum: Ask for Help Posted: Wed May 07, 2008 12:51 pm Subject: [How] Text Manipulation |
Say I have a textfile
abc.txt
which reads
i love autohotkey
the fox is brown
i hate monkeys
and def.txt
which reads
i love autohotkey
the fox is too brown
i hate monkeys
... |
Topic: [Help] How do I prevent duplicate Gui's? |
biatche
Replies: 8
Views: 182
|
Forum: Ask for Help Posted: Mon Apr 28, 2008 4:50 am Subject: [Help] How do I prevent duplicate Gui's? |
thanks for advice with show/hide... although my approach is wrong, ive solved it by using gui +LastFoundExist
but anyway, im a bit lazy to change all that code now, but in future ill be sure to use ... |
Topic: [Help] How do I prevent duplicate Gui's? |
biatche
Replies: 8
Views: 182
|
Forum: Ask for Help Posted: Mon Apr 28, 2008 3:14 am Subject: [Help] How do I prevent duplicate Gui's? |
im still new at this, i assume hGui is just a variable like any other..
and so i suppose the flaw has to do with hGui := WinExist() as when gui is destroyed, that variables remains unchanged....
... |
Topic: [Help] How do I prevent duplicate Gui's? |
biatche
Replies: 8
Views: 182
|
Forum: Ask for Help Posted: Mon Apr 28, 2008 2:51 am Subject: [Help] How do I prevent duplicate Gui's? |
| someone mind explaining to me what hGui is ? |
Topic: [Help] How do I prevent duplicate Gui's? |
biatche
Replies: 8
Views: 182
|
Forum: Ask for Help Posted: Sun Apr 27, 2008 4:37 pm Subject: [Help] How do I prevent duplicate Gui's? |
LicensePage:
If !hGui
{
Gui,1: +LastFound
hGui := WinExist()
msgbox, hi
}
else
{
WinShow, ahk_id %hGui%
msgbox, bye
}
Gui 1:+LabelLicense ... |
Topic: [Help] How do I prevent duplicate Gui's? |
biatche
Replies: 8
Views: 182
|
Forum: Ask for Help Posted: Sun Apr 27, 2008 4:00 pm Subject: [Help] How do I prevent duplicate Gui's? |
Say I have a Menu Tray item that calls a gui window
menu, tray, add, item, opengui
opengui:
gui blabalbala
problem here is, if i click "item" that opens the gui window... and ... |
Topic: [Help] How do I use Gui +Label?? |
biatche
Replies: 3
Views: 80
|
Forum: Ask for Help Posted: Sat Apr 26, 2008 5:34 pm Subject: [Help] How do I use Gui +Label?? |
| thanks |
Topic: [Help] How do I use Gui +Label?? |
biatche
Replies: 3
Views: 80
|
Forum: Ask for Help Posted: Sat Apr 26, 2008 1:56 pm Subject: [Help] How do I use Gui +Label?? |
I need control over my GUI's..
So far I've used
gui +labelsomething
somethingGuiClose:
sdfds
doesn't appear to work |
Topic: [Help] GuiClose / GuiEscape specific GUI's |
biatche
Replies: 7
Views: 100
|
Forum: Ask for Help Posted: Sat Apr 26, 2008 10:11 am Subject: [Help] GuiClose / GuiEscape specific GUI's |
| why not destroy them? |
| |