| Author |
Message |
Topic: From the beggining, a countdown clock. |
Robbo
Replies: 9
Views: 619
|
Forum: Ask for Help Posted: Sun Sep 27, 2009 10:57 pm Subject: From the beggining, a countdown clock. |
Thanks guys, just a few small problems. I know how to do that pretty much. I want to count down the time from a certain date and time to a certain date and time.
Eg.
Right now it is 19:57 on the 1 ... |
Topic: From the beggining, a countdown clock. |
Robbo
Replies: 9
Views: 619
|
Forum: Ask for Help Posted: Sun Sep 27, 2009 8:41 pm Subject: From the beggining, a countdown clock. |
Hi all,
This is completely beyond me, so I thought I'd ask for some help. I want a GUI window to display a countdown timer. It counts down to a selected date and time. For example, I want it to cou ... |
Topic: Fixed - An illegal expression at line 70... What? |
Robbo
Replies: 7
Views: 672
|
Forum: Ask for Help Posted: Sun Aug 09, 2009 3:14 pm Subject: Fixed - An illegal expression at line 70... What? |
Hey to you to . That can't be the problem as none of the other comments like that haven't had any problems. Nice to hear from you - haven't been on AHK Forums for a while. Any way, problem's fixed ... |
Topic: Fixed - An illegal expression at line 70... What? |
Robbo
Replies: 7
Views: 672
|
Forum: Ask for Help Posted: Sun Aug 09, 2009 10:56 am Subject: Fixed - An illegal expression at line 70... What? |
And after even more random guessing, it's this line:
;--------------------TASK MANAGER TAB--------------------;
Quite frankly I want to know why that is causing problems with the rest of the scr ... |
Topic: Fixed - An illegal expression at line 70... What? |
Robbo
Replies: 7
Views: 672
|
Forum: Ask for Help Posted: Sun Aug 09, 2009 10:48 am Subject: Fixed - An illegal expression at line 70... What? |
After process of trial and error this is the part of the script that is causing the problem.
Gui, Tab, Task Manager
Gui, Add, Picture, x25 y50 w40 h40 , C:\Program Files\R Taskbar V2\Configu ... |
Topic: Fixed - An illegal expression at line 70... What? |
Robbo
Replies: 7
Views: 672
|
Forum: Ask for Help Posted: Sun Aug 09, 2009 12:50 am Subject: Fixed - An illegal expression at line 70... What? |
| I'm having trouble with part of a script. Error at line 70 - ";" is an illegal expression. I've cut a couple of lines of the script so you won't need the files to run it. If anyone can tell ... |
Topic: Hide GUI from Alt+Tab Menu |
Robbo
Replies: 4
Views: 297
|
Forum: Ask for Help Posted: Fri May 08, 2009 10:28 pm Subject: Hide GUI from Alt+Tab Menu |
I realised what i was doing wrong before! I must be having a dozey day:
"Gui, Show, x45 y75 +Toolwindow, Start" lol woops
Yes I know thats wrong...
Thanks for reminding me. |
Topic: Hide GUI from Alt+Tab Menu |
Robbo
Replies: 4
Views: 297
|
Forum: Ask for Help Posted: Fri May 08, 2009 10:04 pm Subject: Hide GUI from Alt+Tab Menu |
Which option enables me to hide a GUI window from the alt+tab menu without changing the GUI in any other way? Is this possible?
Thanks |
Topic: Need help writing some very simple calculator equations |
Robbo
Replies: 10
Views: 334
|
Forum: Ask for Help Posted: Fri Apr 03, 2009 12:41 am Subject: Need help writing some very simple calculator equations |
Ok, I decided to help:
#NoEnv
#SingleInstance force
SendMode Input
Gui, Add, Text, x38 y52 w30 h15 +Right, Kills:
Gui, Add, Text, x28 y82 w40 h15 +Right, Deaths:
Gui, Add, Text, x8 ... |
Topic: Need help writing some very simple calculator equations |
Robbo
Replies: 10
Views: 334
|
Forum: Ask for Help Posted: Thu Apr 02, 2009 11:34 pm Subject: Need help writing some very simple calculator equations |
| Don't tell me, you still need some help? |
Topic: Checkbox Variable Is Blank |
Robbo
Replies: 2
Views: 348
|
Forum: Ask for Help Posted: Wed Mar 25, 2009 12:34 am Subject: Checkbox Variable Is Blank |
God I must be slow tonight ! Of course! (I'm not usually that stupid.)
Thanks! |
Topic: MouseClickDrag with the push of a button? |
Robbo
Replies: 7
Views: 237
|
Forum: Ask for Help Posted: Wed Mar 25, 2009 12:22 am Subject: MouseClickDrag with the push of a button? |
You may want to take a look at this page:
http://www.autohotkey.com/docs/Hotkeys.htm
As for your suggestion of the "P" button:
P::
MouseClickDrag, L, x, x, 1638, 843
Return |
Topic: Checkbox Variable Is Blank |
Robbo
Replies: 2
Views: 348
|
Forum: Ask for Help Posted: Wed Mar 25, 2009 12:01 am Subject: Checkbox Variable Is Blank |
| I'm making a script and it relies on whether a checkbox in a GUI window has been checked or not. The only problem is, although the variable should be 1 for checked or 0 for unchecked it is just blank! ... |
Topic: tiny computer usage tracker |
Robbo
Replies: 16
Views: 1769
|
Forum: Scripts & Functions Posted: Thu Feb 26, 2009 12:14 am Subject: tiny computer usage tracker |
I'm still trying it out but I like this script, nice and easy and I think quite useful! Good one!  |
Topic: Start/Stop correctly |
Robbo
Replies: 10
Views: 340
|
Forum: Ask for Help Posted: Tue Feb 03, 2009 2:14 pm Subject: Start/Stop correctly |
If you want ^!y to pause it and not restart it then try this:
;ctrl-alt-x key starts it and ctrl-alt-y pauses it
^!x::
GoSub Start
Return,
^!y::
Pause
Return,
Sta ... |
| |