AutoHotkey Community

It is currently May 23rd, 2012, 11:06 pm

All times are UTC [ DST ]


Search found 44 matches
Search these results:

Author Message

 Forum: Utilities   Topic: Pidgin - all inclusive IM client (MSN, ICQ, IRC, AIM, Yahoo)

Posted: February 7th, 2008, 4:24 pm 

Replies: 9
Views: 1966


After trying Gaim(Pidgin), Trillian, and Miranda IM, I personally prefer Pidgin simply because of its interface.

 Forum: Support   Topic: Arrays and Lists

Posted: January 31st, 2008, 7:29 am 

Replies: 3
Views: 458


mmm Looks like string parsing rather than lists, but as long as it works xD

Thanks MU, Skan

-leg

 Forum: Support   Topic: Arrays and Lists

 Post subject: Arrays and Lists
Posted: January 31st, 2008, 6:21 am 

Replies: 3
Views: 458


Hey, I'm on and off AHK but recently needed to create something involving lists and arrays. I searched around the site but couldn't really find what I needed. All I want to do is create a list a-z and access the letters stored in the list. Basically, [a,b,c,d,e,f,g..z] How would I go about creating ...

 Forum: Support   Topic: Anyone can help with shortcut???

Posted: January 7th, 2008, 2:58 am 

Replies: 1
Views: 767


Perhaps

~Lbutton

 Forum: Offtopic   Topic: AutoHotkey vs. AutoIt?

Posted: January 5th, 2008, 2:55 am 

Replies: 103
Views: 45702


Yeah, I first stumbled upon AutoIt and used that for a few weeks. I realized I could not grasp the syntax and concept. However, I found AHK and it seems that AHK has simpler methods and calls.

 Forum: Support   Topic: everytime i press d hotkey it's disconnecting

Posted: January 5th, 2008, 2:50 am 

Replies: 1
Views: 587


Perhaps that game has an anti-cheat application that detects artificial input and automatically disconnects you.

 Forum: Support   Topic: InputBox

Posted: December 23rd, 2007, 6:22 pm 

Replies: 2
Views: 507


Code:
if ErrorLevel
{
; Do something
}
else
{
; Do something else
}

 Forum: Offtopic   Topic: Such a simple question! How come no one can answer?!

Posted: December 17th, 2007, 6:30 am 

Replies: 35
Views: 2600


It's different for every web browser.

Code:
Loop
{
IfWinExist Internet Explorer
{
        ;Write something here to detect whether page loads
        goto restOfcode
}
else
{

}
}



restOfcode:
;rest of your script goes here
return

 Forum: Support   Topic: Including Image in GUI

 Post subject: Including Image in GUI
Posted: December 16th, 2007, 9:03 pm 

Replies: 1
Views: 317


Hey, I looked at the docs. There seems to be quite a few calls with "image" in it.

Mind if somebody point me in the right direction? xD

I need to implement an image in the GUI

-leg

 Forum: Support   Topic: MouseClickGetPos? Lol

Posted: December 16th, 2007, 7:30 pm 

Replies: 10
Views: 906


Thank you. That works smoothly.

I thought := was used for integers and = was for strings. my bad

 Forum: Support   Topic: Spacebar Script Help

Posted: December 16th, 2007, 2:28 am 

Replies: 2
Views: 917


I doubt you could forget that xD but here:


Code:

^q::                          ;hotkey
Loop                          ; Forever
{
Send {Space}
Sleep 300000             ; 5 minutes
}
return

$F12::ExitApp             ; Kill

 Forum: Support   Topic: MouseClickGetPos? Lol

Posted: December 16th, 2007, 2:06 am 

Replies: 10
Views: 906


Thanks for that Dra_gon I thought it would work with my object with a few modifications But it seems like its not working I understand that myClick+ increments it by one every time the left button is clicked, but I want to do something else at some other time. I tried this but it was a complete fail...

 Forum: Support   Topic: GUi Window off screen when executed

Posted: December 16th, 2007, 1:31 am 

Replies: 1
Views: 426


My Gui Window is always located like halfway off the screen when I load my script.

How do I change that?

 Forum: Support   Topic: How To Create A Login Box?

Posted: December 14th, 2007, 4:16 pm 

Replies: 8
Views: 918


Indeed, but that input box would not be persistent. The user could simply ignore the inputbox and continue whatever he/she was doing. However, that is the basic logic behind it.

 Forum: Support   Topic: MouseClickGetPos? Lol

Posted: December 13th, 2007, 4:14 pm 

Replies: 10
Views: 906


The problem with using ~LButton is that the script after that executes EVERY time the user mouse clicks. How do i set it so that it only does the stuff after

~Lbutton::

once?

-leg
Sort by:  
Page 1 of 3 [ Search found 44 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group