| Author |
Message |
Topic: 1000 |
Learning one
Replies: 49
Views: 3409
|
Forum: General Chat Posted: Sun Feb 05, 2012 10:25 am Subject: 1000 |
You were right nimda,
I made it! This is my 1000th post!http://www.freesmileys.org/smileys/smiley-happy105.gifNice, but am I hanging around on AHK forum too much?  |
Topic: ControlSend help! |
Learning one
Replies: 2
Views: 82
|
Forum: Ask for Help Posted: Sun Feb 05, 2012 10:15 am Subject: ControlSend help! |
It's because your script tells AHK to send keys to the active window.
WinGet, active_id, ID, Ahere you stored active window's ID in active_id variable
ControlSend, , {w}, ahk_id %active_id ... |
Topic: shift problem |
Learning one
Replies: 6
Views: 121
|
Forum: Ask for Help Posted: Sat Feb 04, 2012 11:54 pm Subject: shift problem |
That's unusual coding style noji. Try this;
xbutton2::suspend
$*LButton::Click 8or this
xbutton2::suspend
$*LButton::
Loop, 8
{
SendPlay, {LB ... |
Topic: shift problem |
Learning one
Replies: 6
Views: 121
|
Forum: Ask for Help Posted: Sat Feb 04, 2012 8:32 pm Subject: shift problem |
| I guess you'll have to put * in front of your hotkey, but you should post your script. |
Topic: HELP! Disabled person needs help. |
Learning one
Replies: 5
Views: 178
|
Forum: Ask for Help Posted: Sat Feb 04, 2012 8:01 pm Subject: HELP! Disabled person needs help. |
Welcome to the forum RibTickler
Try code below. Press F1 for Wheel up, and F2 for Wheel down.
F1::WheelUp
F2::WheelDown |
Topic: How could i see the color changing in real time? |
Learning one
Replies: 2
Views: 74
|
Forum: Ask for Help Posted: Sat Feb 04, 2012 7:41 pm Subject: How could i see the color changing in real time? |
#Persistent
SetTimer, CheckColorChange
return
CheckColorChange:
PixelGetColor,color1,100, 100
if color1 = 0x9F6C07
C1 = 1
else if color1 = 0xFF8A2C
C1 = 2
else if color1 = 0xEDF2 ... |
Topic: how to set IE, Firefox, outlook position & size |
Learning one
Replies: 3
Views: 109
|
Forum: Ask for Help Posted: Sat Feb 04, 2012 5:07 pm Subject: how to set IE, Firefox, outlook position & size |
Another example:
RunAndMove(A_ProgramFiles "\Internet Explorer\iexplore.exe", 0,0,600,600)
RunAndMove(A_ProgramFiles "\Microsoft Office 2007\Office12\POWERPNT.EXE", 6 ... |
Topic: how to set IE, Firefox, outlook position & size |
Learning one
Replies: 3
Views: 109
|
Forum: Ask for Help Posted: Fri Feb 03, 2012 6:35 pm Subject: how to set IE, Firefox, outlook position & size |
Welcome to the forum zt_lee.
That's really easy job. You'll have to use F1::WinMove, ahk_class IEFrame,, 0,0,800,600
F2::WinMove, ahk_class IEFrame,, 200,100,800,600Press F1, and i ... |
Topic: need to copy paste data from excel to IE(fields in IE) |
Learning one
Replies: 21
Views: 1571
|
Forum: Ask for Help Posted: Thu Feb 02, 2012 9:02 pm Subject: need to copy paste data from excel to IE(fields in IE) |
Thanks but what must i put in b1 and b2 cellHi zack10, you can type anything you want in those cells, and appropriate field in Internet Explorer will be updated.
For example, type word test in B1 ce ... |
Topic: Problem with copying from table |
Learning one
Replies: 9
Views: 271
|
Forum: Ask for Help Posted: Thu Feb 02, 2012 8:43 pm Subject: Problem with copying from table |
| When you copy cells from Excel, newline character - "`n" is automaticaly added. That's why there is no need to add another "`n". But if you are copying cells from not-Excel databas ... |
Topic: self-sending hotkey - how to make it run once? |
Learning one
Replies: 7
Views: 139
|
Forum: Ask for Help Posted: Wed Feb 01, 2012 10:39 pm Subject: self-sending hotkey - how to make it run once? |
$t::
send t
return |
Topic: Loop Parse remove leading blanks |
Learning one
Replies: 6
Views: 116
|
Forum: Ask for Help Posted: Wed Feb 01, 2012 8:35 pm Subject: Loop Parse remove leading blanks |
Use Trim() or OmitChars parameter in Parsing loop. Example:
Loop, Parse, Clipboard, `n, `r%A_Space%%A_Tab% |
Topic: Simple Script Request |
Learning one
Replies: 5
Views: 106
|
Forum: Ask for Help Posted: Wed Feb 01, 2012 8:28 pm Subject: Simple Script Request |
LButton::RButton
RButton::LButton |
Topic: text box |
Learning one
Replies: 3
Views: 77
|
Forum: Ask for Help Posted: Wed Feb 01, 2012 8:05 pm Subject: text box |
Welcome to the forum Tome
Here's example for you;
GMailLogIn("UserNameHere","PasswordHere") ; example
GMailLogIn(UserName,Password) {
pwb := ComOb ... |
Topic: need to copy paste data from excel to IE(fields in IE) |
Learning one
Replies: 21
Views: 1571
|
Forum: Ask for Help Posted: Wed Feb 01, 2012 7:40 pm Subject: need to copy paste data from excel to IE(fields in IE) |
Fill B1 and B2 cells in Excel and watch Internet Explorer.
;===========================
oExcel := ComObjCreate("Excel.Application")
oWorkbook := oExcel.Workbooks.Add
oWor ... |
| |