| Author |
Message |
Topic: Crazy Scripting |
Carnifex
Replies: 21
Views: 831
|
Forum: General Chat Posted: Fri Apr 30, 2010 10:36 am Subject: Crazy Scripting |
#SingleInstance Ignore ;Ace Coder
SetBatchLines, -1 ;MasterFocus
MsgBox, Welcome to the AHK IDE project! ;Damein
Gui,Color,CCEEFF ;Ace Coder
Gui, Add, Button, x10 y10 w90 h20, Magic Button ;None
... |
Topic: script to access an executable |
Carnifex
Replies: 15
Views: 551
|
Forum: Ask for Help Posted: Fri Apr 30, 2010 7:30 am Subject: script to access an executable |
ok
thankyou
that sound resonable
so how then would you enter a phone number and text into skype
when an email arrives containing say header of email is sms
the body of the email is say first a m ... |
Topic: Load datafile into Listview |
Carnifex
Replies: 2
Views: 987
|
Forum: Ask for Help Posted: Fri Nov 13, 2009 3:13 am Subject: Load datafile into Listview |
Fixed it !
Gui, ListView, Inc
Loop, Read, %SaveFileInc%
{
Loop, parse, A_LoopReadLine, `,
{
if A_Index = 1
{
LV_Add("", "", "", &q ... |
Topic: Load datafile into Listview |
Carnifex
Replies: 2
Views: 987
|
Forum: Ask for Help Posted: Fri Nov 13, 2009 1:34 am Subject: Load datafile into Listview |
I made an easier version, but it still gives the same result: (I also changed the way the script saves the data to the file.
Maybe there's a way to save the column data to a text file using tab del ... |
Topic: Load datafile into Listview |
Carnifex
Replies: 2
Views: 987
|
Forum: Ask for Help Posted: Thu Nov 12, 2009 11:02 pm Subject: Load datafile into Listview |
I'm trying to write a program to keep track of my finances.
I made a simple GUI with the function to save added data in two different ListViews (one for income, one for outgoing(?))
The followin ... |
Topic: ControlSend using Subroutines |
Carnifex
Replies: 15
Views: 703
|
Forum: Ask for Help Posted: Wed Nov 11, 2009 1:27 am Subject: ControlSend using Subroutines |
Carnifex, have you tried any other send modes like SendPlay or SendInput? You may have already tried these, but I just thought I would check
wSend:
SendPlay {Up down}
Sleep 100 ... |
Topic: ControlSend using Subroutines |
Carnifex
Replies: 15
Views: 703
|
Forum: Ask for Help Posted: Wed Nov 11, 2009 1:09 am Subject: ControlSend using Subroutines |
| I fail to understand why you're using ControlGet to get the window's HWND. Does it not work if you specify WinTitle in ControlSend itself? There doesn't appear to be any unique designation in your c ... |
Topic: Mouse macro help |
Carnifex
Replies: 5
Views: 334
|
Forum: Ask for Help Posted: Tue Nov 10, 2009 5:45 pm Subject: Mouse macro help |
lbutton::
send,{lbutton down}
return
rbutton::
exitapp
actually it's
lbutton::
send,{lbutton down}
return
rbutton::
send,{lbutt ... |
Topic: ControlSend using Subroutines |
Carnifex
Replies: 15
Views: 703
|
Forum: Ask for Help Posted: Tue Nov 10, 2009 3:33 pm Subject: ControlSend using Subroutines |
SetTitleMatchMode, 2
SetKeyDelay, 100, 1000
ControlSend,, {up down}{up up}, ahk_id %handle%
Doesn't work. |
Topic: ControlSend using Subroutines |
Carnifex
Replies: 15
Views: 703
|
Forum: Ask for Help Posted: Tue Nov 10, 2009 11:51 am Subject: ControlSend using Subroutines |
I appreciate the help guys !
@amazed, it was a wild guess if "A_ThisLabel" would work with a ControlSend, thank you for explaining.
I know a Return was lacking from the wSend subroutin ... |
Topic: ControlSend using Subroutines |
Carnifex
Replies: 15
Views: 703
|
Forum: Ask for Help Posted: Tue Nov 10, 2009 3:24 am Subject: ControlSend using Subroutines |
I am writing an automation script for a game I play a lot, but I am in desperate need of some help with the ControlSend command using Subroutines in relation to Hwnds.
In the following piece of cod ... |
| |