AutoHotkey Community

It is currently May 23rd, 2012, 10:42 pm

All times are UTC [ DST ]


Search found 279 matches
Search these results:

Author Message

 Forum: Offtopic   Topic: Reccomend a language please

 Post subject: Reccomend a language please
Posted: February 2nd, 2012, 9:43 pm 

Replies: 2
Views: 323


I want to write a simple program that will generate an adjustable continuous tone that can be changed at the touch of a button. I also need it to display what frequency its playing. Dont need any fancy gui's or anything. The only thing I know is ahk but SoundBeep isnt quite good enough for this. I'd...

 Forum: Support   Topic: Need help monitoring a webpage for changes

Posted: September 11th, 2011, 8:08 pm 

Replies: 3
Views: 465


Bumping this cause I wasnt asking for help before(was just using the thread to test the code) and I've changed the content of my first post.

Appreciate any help you can give me guys.

 Forum: Support   Topic: Need help monitoring a webpage for changes

Posted: September 11th, 2011, 6:37 pm 

Replies: 3
Views: 465


When I test this it always thinks the page has changed. Will a webpage's code always be different even when it doesnt look like it's changed? Does urldownloadtofile add stuff? Is there something wrong with my code? #Persistent SetTimer, CheckForChanges, 120000 Return CheckForChanges: URLDownloadtofi...

 Forum: Support   Topic: Break a loop without waiting

Posted: August 23rd, 2011, 9:26 pm 

Replies: 3
Views: 152


You dont want to reload/exit the script but could you put the loop in its own script and have the main script run/terminate it? You could use the clipboard to pass variable values between the two.

It's a pretty ghetto solution but I'm not a programmer.

 Forum: Support   Topic: ^NumLock Issue

Posted: August 23rd, 2011, 1:15 pm 

Replies: 1
Views: 176


Does it on XP too. I found this. http://en.wikipedia.org/wiki/Break_key On early keyboards without a Pause key (before the introduction of 101-key keyboards) the Pause function was assigned to Ctrl+NumLock, and the Break function to Ctrl+ScrLock; these key-combinations still work with most programs,...

 Forum: Support   Topic: Possible to detect mouse clicks on desktop?

Posted: August 23rd, 2011, 11:18 am 

Replies: 3
Views: 175


I thought I'd have a go at this. I couldnt get it to work with class. I managed it with ID though. ~^LButton:: WinGet, DesktopVar , ID, Program Manager MouseGetPos, , , IdVar If IdVar = %DesktopVar% MsgBox, You Clicked the Desktop Return Weird problem though. It works when first started but if I do ...

 Forum: Support   Topic: Roots

Posted: August 22nd, 2011, 11:44 am 

Replies: 6
Views: 190


Thanks for explaining it guys. Makes me wish I'd stayed on at school.

I was trying to make an octahedron on a square grid. I guess I'll just have to get as close as I can. Your script will help me do that gogo, thank!

 Forum: Support   Topic: Roots

Posted: August 21st, 2011, 11:54 pm 

Replies: 6
Views: 190


Oh well :( I appreciate you taking the time to explain. Its to do with triangles so hopefully I can find another way to approach it. Maybe you can save me some time and tell me if it's totally impossible. http://img846.imageshack.us/img846/7970/triangleequilateral001.gif I'm hoping to find if there ...

 Forum: Support   Topic: How to Run Stuff in a GUI

Posted: August 21st, 2011, 9:42 pm 

Replies: 2
Views: 304


Look in the help files for g-label

 Forum: Support   Topic: Roots

 Post subject: Roots
Posted: August 21st, 2011, 8:55 pm 

Replies: 6
Views: 190


I'm trying to see if there are any combinations of a and h that are both whole numbers. This is the formula: h = (1/2) * √3 * a Long time since I left school. Does that mean, 0.5 * (the cube root of a) or 0.5 * (the square root of 3) * a Either way I dont know how to enter it into ahk. Think t...

 Forum: Support   Topic: click, %A_CaretX%, %A_CaretY% question

Posted: May 9th, 2010, 11:19 pm 

Replies: 5
Views: 309


Maybe try going for a coordinate a bit lower?

Code:
F5::
yPos := A_CaretY + 5
Click, %A_CaretX% , %yPos%
return

 Forum: Support   Topic: need help with a keyboard script ><" can someone

Posted: May 9th, 2010, 10:47 pm 

Replies: 13
Views: 513


Just add the other keys.

The button you press goes on the left of the :: the one you want to simulate goes on the right :roll:

 Forum: Support   Topic: click, %A_CaretX%, %A_CaretY% question

Posted: May 9th, 2010, 12:31 pm 

Replies: 5
Views: 309


A workaround?
Code:
f5::
click, %A_CaretX%, %A_CaretY%
send, {down}
return

 Forum: Support   Topic: need help with a keyboard script ><" can someone

Posted: May 9th, 2010, 12:19 pm 

Replies: 13
Views: 513


Do you need to be able to bind them on the fly while you're playing the game or something? If not, then something like this is probably the simplest way for you to do it. Pressing F1 suspends the hotkeys so they perform their native function. e::g up::w down::s left::a right::d F1::Suspend

 Forum: Support   Topic: Capitalizing "I" changes other hotkeys

Posted: February 17th, 2010, 12:38 pm 

Replies: 3
Views: 276


Works ok for me also.

Just curious, does the letter d work normally when you press it with that scrpt running?
Sort by:  
Page 1 of 19 [ Search found 279 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group