| Author |
Message |
Topic: COM help - AddEnum() Method in AHK? (Trying to find % CPU) |
OceanMachine
Replies: 2
Views: 71
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 5:57 pm Subject: COM help - AddEnum() Method in AHK? (Trying to find % CPU) |
| I managed to get something to work using the below code (based on some code I found by Sean), but the values always come back as 0 for this class (as explained SWbemRefresher object... which is what I ... |
Topic: COM help - AddEnum() Method in AHK? (Trying to find % CPU) |
OceanMachine
Replies: 2
Views: 71
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 7:41 pm Subject: COM help - AddEnum() Method in AHK? (Trying to find % CPU) |
Hi All,
I have used IE COM in the past to manupulate web pages, and I have found that great, once I got my head around it. I am trying to learn other things that can be done with COM, and am tryin ... |
Topic: Simple Question: Working with new lines in a script |
OceanMachine
Replies: 3
Views: 53
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 1:41 am Subject: Simple Question: Working with new lines in a script |
| Are you sure there is actually a new line character that you are looking for in your Edit control? A normal multi-line edit control will wrap text onto multiple lines, even if there are no newline ch ... |
Topic: ComboBox List - Setting Value |
OceanMachine
Replies: 14
Views: 163
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 9:43 pm Subject: ComboBox List - Setting Value |
even better jaco0646  |
Topic: ComboBox List - Setting Value |
OceanMachine
Replies: 14
Views: 163
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 9:21 pm Subject: ComboBox List - Setting Value |
Are you trying to load the stuff from a CSV file and then display it in a combobox, or the other way round?
Well If you are wanting to only save a new colour if it wasn't already in the list, try t ... |
Topic: unattended COM Help |
OceanMachine
Replies: 5
Views: 112
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 8:48 pm Subject: unattended COM Help |
I think it is because you are trying to run an actual VBA macro that is the problem.
I was however able to get the same functionality as a macro directly from AHK using COM, and this ran even when ... |
Topic: IronAHK: cross platform .NET rewrite of AutoHotkey |
OceanMachine
Replies: 71
Views: 4943
|
Forum: Scripts & Functions Posted: Thu Mar 18, 2010 1:18 pm Subject: IronAHK: cross platform .NET rewrite of AutoHotkey |
That link gives a 404. I think you mean http://www.macros.com/features.htm
Could you advise what features MacroExpress has that AHK does not already have please?
Also, that program is paid soft ... |
Topic: IronAHK: cross platform .NET rewrite of AutoHotkey |
OceanMachine
Replies: 71
Views: 4943
|
Forum: Scripts & Functions Posted: Wed Mar 17, 2010 6:51 pm Subject: IronAHK: cross platform .NET rewrite of AutoHotkey |
I'm not sure if it is just me, but I have an issue with SoundBeep using IronAHK.
It seems that the default values are not being used if (optional) parameters are not provided.
MsgBox, Sound 1
S ... |
Topic: IronAHK: cross platform .NET rewrite of AutoHotkey |
OceanMachine
Replies: 71
Views: 4943
|
Forum: Scripts & Functions Posted: Wed Mar 17, 2010 6:12 pm Subject: IronAHK: cross platform .NET rewrite of AutoHotkey |
Hi Titan,
Firstly thanks for all the work you have done with this (and any one else who has contributed).
I am looking at the documentation (e.g. http://www.ironahk.net/docs/commands/msgbox) and ... |
Topic: help with program for disabled son |
OceanMachine
Replies: 9
Views: 241
|
Forum: Ask for Help Posted: Wed Mar 17, 2010 4:47 pm Subject: help with program for disabled son |
Hi Mike,
You will have to post your "Esc::ExitApp" outside the auto-execute section (i.e. after the first Return encountered at the top of your script), otherwise it will get executed whe ... |
Topic: GUI for canned answers in email - help with concept needed |
OceanMachine
Replies: 7
Views: 111
|
Forum: Ask for Help Posted: Wed Mar 17, 2010 4:23 pm Subject: GUI for canned answers in email - help with concept needed |
So was it the lack of Return in my script which caused the double pressing of the button?
Yes, basically if you don't return then the script will "fall through" the label and execute ever ... |
Topic: GUI for canned answers in email - help with concept needed |
OceanMachine
Replies: 7
Views: 111
|
Forum: Ask for Help Posted: Wed Mar 17, 2010 4:06 pm Subject: GUI for canned answers in email - help with concept needed |
try this
:*:;can::
;show user input box
Gui, Font, Arial
Gui, Add, Text,, Select Response
Gui, Add, DropDownList, W200 vCanned, How to Register||How to Log On|Accessing Digital ... |
Topic: Random bouncing images |
OceanMachine
Replies: 5
Views: 77
|
Forum: Ask for Help Posted: Wed Mar 17, 2010 3:58 pm Subject: Random bouncing images |
| If you don't want key presses and mouse moves from the script (if any) to interrupt the Idle time, use A_TimeIdlePhysical instead. |
Topic: need script to remove line break |
OceanMachine
Replies: 4
Views: 57
|
Forum: Ask for Help Posted: Wed Mar 17, 2010 3:53 pm Subject: need script to remove line break |
Not the most elegant solution, but try the below. It seems to have the same results as that tool you linked for me.
String =
(
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam ... |
Topic: Need script |
OceanMachine
Replies: 12
Views: 278
|
Forum: Ask for Help Posted: Wed Mar 17, 2010 12:19 am Subject: Need script |
Try like this
#NoEnv
#Persistent
SetTitleMatchMode, 2
SetTimer, SendF1, 5000 ; this will send F1 to an active (or inactive/minimised) window every 5 seconds
Click, right, 1259, 351 ; th ... |
| |