| Author |
Message |
Topic: Compile |
BluntShame
Replies: 6
Views: 514
|
Forum: Ask for Help Posted: Mon Oct 15, 2007 2:55 am Subject: Compile |
Well you can either RightClick on the AHK file then > Compile Script. Or you can use this...
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
Gui, Add, Text, x76 y10 w80 h20 , Compile Scri ... |
Topic: Put Cursor in a text box |
BluntShame
Replies: 4
Views: 153
|
Forum: Ask for Help Posted: Mon Oct 15, 2007 2:41 am Subject: Put Cursor in a text box |
#Persistent
SetTimer, WatchActiveWindow, 20
return
WatchActiveWindow:
WinGet, ControlList, ControlList, A
ToolTip, %ControlList%
return
That code is from the AHK Help file. It displays in R ... |
Topic: Put Cursor in a text box |
BluntShame
Replies: 4
Views: 153
|
Forum: Ask for Help Posted: Mon Oct 15, 2007 1:21 am Subject: Put Cursor in a text box |
I dont know much about AHK but maybe try looking for a Static Or Edit control and getting it to focus on it maybe? I dunno just a thought  |
Topic: IP/TCP related |
BluntShame
Replies: 2
Views: 396
|
Forum: Ask for Help Posted: Mon Oct 15, 2007 12:39 am Subject: IP/TCP related |
| Hmm, I am not sure how I am going to get it to go through my script... but thanks, Would i have to put it in with my script or change some G-Labs and stuff? Im not sure whats what anymore haha... but ... |
Topic: IP/TCP related |
BluntShame
Replies: 2
Views: 396
|
Forum: Ask for Help Posted: Sun Oct 14, 2007 9:52 am Subject: IP/TCP related |
Hello, All.
I have a question related to IP/TCP connection.. Is it possible to send text Typed into an edit control through TCP/IP And make a splash text appear in the top right corner of the scree ... |
Topic: Need Help With This Script.. |
BluntShame
Replies: 1
Views: 124
|
Forum: Ask for Help Posted: Sat Oct 06, 2007 8:44 am Subject: Need Help With This Script.. |
The script I am displaying below; Is realy stressing me out. I am in need of a timer that does hh:mm:ss, like you type in there...
allowedMinutes := 120
And it will display as "02:00:00&qu ... |
Topic: A bit about Menu and Edit controls... |
BluntShame
Replies: 8
Views: 238
|
Forum: Ask for Help Posted: Thu Sep 27, 2007 10:08 am Subject: A bit about Menu and Edit controls... |
| A little bit of both |
Topic: A bit about Menu and Edit controls... |
BluntShame
Replies: 8
Views: 238
|
Forum: Ask for Help Posted: Thu Sep 27, 2007 9:11 am Subject: A bit about Menu and Edit controls... |
A Toolbar, thats the one lol... would someone be able to help me with that or is it covered in the Help file? any help would be GREAT!
Thanks
~BluntShame~ |
Topic: A bit about Menu and Edit controls... |
BluntShame
Replies: 8
Views: 238
|
Forum: Ask for Help Posted: Wed Sep 26, 2007 8:39 am Subject: A bit about Menu and Edit controls... |
| I don't get what you mean by IE.Ok, to try to be more on target... You know the DropDown list in the IE window where you type in a web address... i am working on somthing that I would like an edit / ... |
Topic: A bit about Menu and Edit controls... |
BluntShame
Replies: 8
Views: 238
|
Forum: Ask for Help Posted: Wed Sep 26, 2007 5:55 am Subject: A bit about Menu and Edit controls... |
| I am just wondering if it is in anyway - possible to add an edit control in a menu, Where you have "File, Help, About" and what ever else... SmartGui is a good example... where it has all th ... |
Topic: creating a Web proxy? Can AHK do this for me? |
BluntShame
Replies: 2
Views: 162
|
Forum: Ask for Help Posted: Wed Sep 26, 2007 4:14 am Subject: creating a Web proxy? Can AHK do this for me? |
so you want somthing that will run that website? if so...
^!z:: ; CTRL+ALT+Z
Run, www.mydomainhideme.com
Return
Hope this is what you wanted!  |
Topic: Estimated time.. |
BluntShame
Replies: 8
Views: 489
|
Forum: Ask for Help Posted: Sun Sep 23, 2007 2:57 am Subject: Estimated time.. |
Tyvm engunneer.
One thing i changed though... you had:
elapsed := Round((started - A_tickcount)/1000 ,0)
Which gave the time with a - in the front... i changed it to...
ela ... |
Topic: Estimated time.. |
BluntShame
Replies: 8
Views: 489
|
Forum: Ask for Help Posted: Sat Sep 22, 2007 2:31 am Subject: Estimated time.. |
Here is the progress it is going by:
Random, Estimate, 50, 500
Gui, Add, Progress, vMyProgress w400 h20 -Smooth
Gui, Add, Text, vMyText wp cBlue, Estimated Time: 00:00:00
Gui, Add, But ... |
Topic: Estimated time.. |
BluntShame
Replies: 8
Views: 489
|
Forum: Ask for Help Posted: Fri Sep 21, 2007 12:55 pm Subject: Estimated time.. |
I have already told you... i cannot find anything
Not helping either... thanks anyway guys
This is what i have been able to come up with so far...
/*
any help with this script will be gre ... |
Topic: Estimated time.. |
BluntShame
Replies: 8
Views: 489
|
Forum: Ask for Help Posted: Fri Sep 21, 2007 12:14 pm Subject: Estimated time.. |
| ok, I have searched the forums for a count down timer and I have come up empty handed... I would like a timer that will estimate the time it will take a progress bar to get from 0 - 100 and display it ... |
| |