| Author |
Message |
Topic: Bring control ontop of other control |
icefreez
Replies: 3
Views: 211
|
Forum: Ask for Help Posted: Tue Apr 26, 2011 5:20 pm Subject: Bring control ontop of other control |
Yes, sorry I am talking about their zindexing.
Thanks VxE, I will try out these techniques and see which one works best in my situation. |
Topic: Bring control ontop of other control |
icefreez
Replies: 3
Views: 211
|
Forum: Ask for Help Posted: Mon Apr 25, 2011 10:23 pm Subject: Bring control ontop of other control |
Is it possible to bring a control on top of other.
For example:
gui, add, edit, x10 y10 w100 h20, Control1
gui, add, edit, x10 y10 w200 h20, Control2
gui, show
If I want to make Control2 to ... |
Topic: Simple Weather |
icefreez
Replies: 5
Views: 784
|
Forum: Scripts & Functions Posted: Tue Mar 01, 2011 7:35 pm Subject: Simple Weather |
I know there are plenty of more advanced weather apps made, but I wanted just a simple little weather script to add to some of my scripts.
You are free to fix or manipulate this code anyway you see ... |
Topic: Disabling "CTRL &" hotkeys |
icefreez
Replies: 3
Views: 169
|
Forum: Ask for Help Posted: Fri Feb 04, 2011 4:52 pm Subject: Disabling "CTRL &" hotkeys |
You will have to put a ~ in front of your hotkey. This will send the key as well as trigger your script?
~^end::F1 |
Topic: LV_Add Help |
icefreez
Replies: 4
Views: 333
|
Forum: Ask for Help Posted: Tue Jan 25, 2011 7:34 pm Subject: LV_Add Help |
You are going to have to split your line up.
gui, add, ListView, w300 h500, Action|Date
Loop, Read, C:\punches.txt
{
StringLeft, inout, A_LoopReadLine, 3 ; cut three characters off the ... |
Topic: Listview click problem |
icefreez
Replies: 3
Views: 294
|
Forum: Ask for Help Posted: Mon Jan 24, 2011 10:06 pm Subject: Listview click problem |
I managed to find my solution. Thanks for helping me narrow down the problem.
currowid := LV_GetNext(0, "F") ;Gets the row from the current focused row |
Topic: Listview click problem |
icefreez
Replies: 3
Views: 294
|
Forum: Ask for Help Posted: Mon Jan 24, 2011 10:01 pm Subject: Listview click problem |
Hmm this works this way but doesn't work for other parts of my script like edit and delete which are commands in a menu that is displayed.
Is there a way to target a the listview and get the inform ... |
Topic: copy and paste from excel to telnet session |
icefreez
Replies: 1
Views: 287
|
Forum: Ask for Help Posted: Mon Jan 24, 2011 9:26 pm Subject: copy and paste from excel to telnet session |
You will need to learn a little AHK to set this up properly.
You can set up a hotkey to copy the current field then target your telnet session and paste the info in.
Here is a rough outline of w ... |
Topic: iweb |
icefreez
Replies: 2
Views: 178
|
Forum: Ask for Help Posted: Mon Jan 24, 2011 9:19 pm Subject: iweb |
| Something like this? http://www.autohotkey.com/forum/viewtopic.php?t=45459twitter+status |
Topic: New Guy and his' phrase script Help request |
icefreez
Replies: 2
Views: 178
|
Forum: Ask for Help Posted: Mon Jan 24, 2011 9:17 pm Subject: New Guy and his' phrase script Help request |
You can try a context menu.
That would look something like this. Press E to open the menu. Press ESC to close the application
Menu, guidropmenu, Add, Option 1, guioption1
Menu, guidropmenu, Add ... |
Topic: Listview click problem |
icefreez
Replies: 3
Views: 294
|
Forum: Ask for Help Posted: Mon Jan 24, 2011 9:05 pm Subject: Listview click problem |
I have a problem with listview and how it reacts to a click on a already selected object.
How this works
On click of a row I store the current row number, and the name and score.
I want to be a ... |
Topic: Disabling "CTRL &" hotkeys |
icefreez
Replies: 3
Views: 169
|
Forum: Ask for Help Posted: Mon Jan 24, 2011 8:58 pm Subject: Disabling "CTRL &" hotkeys |
If you want to override say CTRL + END you make a hotkey like this
^end::F1 |
Topic: Change right click menu on edit box |
icefreez
Replies: 2
Views: 290
|
Forum: Ask for Help Posted: Tue Jan 11, 2011 3:05 pm Subject: Change right click menu on edit box |
Ya that is what I was afraid of. What I want to do is make a custom menu when right clicking in an edit box with text selected to perform actions on it.
Right now I have to do this with a separate ... |
Topic: Change right click menu on edit box |
icefreez
Replies: 2
Views: 290
|
Forum: Ask for Help Posted: Mon Jan 10, 2011 4:55 pm Subject: Change right click menu on edit box |
| Is there a way to change or add to the right click menu when you right click an GUI edit box? |
Topic: Counting occurring of a string inside a variable. |
icefreez
Replies: 5
Views: 213
|
Forum: Ask for Help Posted: Wed Aug 18, 2010 7:03 pm Subject: Counting occurring of a string inside a variable. |
| Thanks, I knew it was buried in one of the string functions I just overlooked it. |
| |