AutoHotkey Community

It is currently May 23rd, 2012, 9:51 pm

All times are UTC [ DST ]


Search found 1346 matches
Search these results:

Author Message

 Forum: Support   Topic: force minimize

Posted: January 6th, 2012, 12:08 am 

Replies: 8
Views: 186


You might try something like this. I used something similar to close a nag window from Microsoft Office before I finally got tired and uninstalled Office entirely and installed Open Office. What this does is allows you to select the popup window to close as soon as it pops up. It saves the window na...

 Forum: Support   Topic: Scrambled Eggs Part 2

Posted: January 5th, 2012, 1:13 pm 

Replies: 3
Views: 101


You said I want to create a random letters from A-Z and random number from 1-0 that is combined together from 2 character to 30 characters. What I mean is a word and number generator. I see the interesting thread from Leroxy http://www.autohotkey.com/forum/topic27728.html&highlight=random+lette...

 Forum: Support   Topic: Checkbox turn on

Posted: January 4th, 2012, 9:53 am 

Replies: 3
Views: 119


Gui, Add, CheckBox, Checked vText1, Text1
Gui, Add, CheckBox, Checked vText2, Text2
Gui, show
return

^q::
exitapp

 Forum: Support   Topic: Toggle script

Posted: January 3rd, 2012, 11:11 pm 

Replies: 6
Views: 201


@dmg I've seen it happen both ways in different games actually. In Age of Conan for example you hold down the arrow key to climb but a single send, {Up Down} ; or send, {Down Down} works perfectly. In other games you actually have to either send the key repeatedly or send the {ke...

 Forum: Support   Topic: Toggle script

Posted: January 3rd, 2012, 10:59 pm 

Replies: 6
Views: 201


Ok so here's the thing. if we loop it we have to have some way to break the loop while it's running. but we could do something like this which is much more tricky.. but it's fast. #NoEnv #SingleInstance, Force CoordMode, Mouse, screen CoordMode Pixel, Screen ; we're going to use the p key as a hotke...

 Forum: Support   Topic: Help! Double accent issue

Posted: January 3rd, 2012, 9:16 pm 

Replies: 3
Views: 141


Wow! that's a pretty wide open bug request. Difficult to know. But, from experience, All problems fall into one of 3 broad classes. 1) software problems, 2) hardware problems, and 3) User problems. If you can rule out the hardware, you're 1/3 of the way there. Also many times a problem can seem like...

 Forum: Support   Topic: Toggle script

Posted: January 3rd, 2012, 8:48 pm 

Replies: 6
Views: 201


Sure Piece-a-cake. But first let me qualify the word "toggle" as I understand it. To me a "toggle" is a "switch thingy" kind of like a light switch that turns the lights on and off. So from what i read of what you want is a "switch thingy" that turns the Z key...

 Forum: Support   Topic: Can't open program

Posted: January 3rd, 2012, 8:32 pm 

Replies: 5
Views: 156


Hi catty and welcome to the AutoHotkey forums. Did you get a satisfactory answer to your problem? I hope so, but if not just keep asking. We have a lot of really helpful people here. Have you ever programmed before? It's an exciting kind of experience if you haven't but it can be frustrating too. Re...

 Forum: Support   Topic: key releasing

Posted: January 3rd, 2012, 5:27 am 

Replies: 4
Views: 159


Inside your keyboard is a little hardware clock thingy that checks your keys to see if they're pressed. If they are it sends the key to the computer. Inside your computer is a little program thingy that checks your keys to see if it's pressed and turns it off. On the one hand you have two different ...

 Forum: Support   Topic: Terminate pop-up

Posted: January 3rd, 2012, 5:17 am 

Replies: 8
Views: 192


This is just a simple example of being able to close all windows of a given class using the unique window id found by the WinGet command ; programmed with AutoHotkey Basic V1.0.48.05 ; If the window class exists... IfWinExist ahk_class #32770 { ; get a list of all window handles matching that c...

 Forum: Support   Topic: Terminate pop-up

Posted: January 3rd, 2012, 3:36 am 

Replies: 8
Views: 192


To answer your question, yes you can distinguish between with two windows with similar classes and even names. The way to do that is to use the window's handle (called its ahk ID). Each window that is created has a unique numeric identifier assigned by the operating system. You can find that ID usin...

 Forum: Support   Topic: Programming Help!!!!!!!!!

Posted: January 3rd, 2012, 3:21 am 

Replies: 7
Views: 236


You said a program that can record a series of mouse clicks So maybe something like this perhaps? ; Programmed using AutoHotkey Basic V1.0.48.05 #NoEnv #SingleInstance, Force CoordMode, Mouse, Screen CoordMode Pixel, Screen ; wait for mouse click until told to stop Loop { tooltip, Press the Le...

 Forum: Support   Topic: Terminate pop-up

Posted: January 3rd, 2012, 2:35 am 

Replies: 8
Views: 192


I had that same problem with a different window. The answer was an embedded invisible character in the window title. The way I solved it was to use the ahk_class name or number with the winclose command
Code:
IfWinExist, ahk_class #32770
     winclose, ahk_class #32770
edited to add endcode tag

 Forum: Support   Topic: Add "Run script as admin" to context menu

Posted: January 2nd, 2012, 8:56 pm 

Replies: 15
Views: 466


#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. [color=Red]Return[/color] ^!r:: SetTitleMatchMode,2 ...

 Forum: Support   Topic: MouseGetPos and incorrect if condition

Posted: January 2nd, 2012, 8:46 pm 

Replies: 5
Views: 192


The main trick with understanding what ANY Autohotkey command does is to first clarify what you want. Then you open your help file and, at that point, I recommend copying the command syntax line directly into your code as a comment line. That way you have a model for how to set up the command in you...
Sort by:  
Page 1 of 90 [ Search found 1346 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group