AutoHotkey Community

It is currently May 23rd, 2012, 4:00 pm

All times are UTC [ DST ]


Search found 41 matches
Search these results:

Author Message

 Forum: Scripts   Topic: simple alarm script

Posted: September 24th, 2009, 3:10 pm 

Replies: 9
Views: 1309


@guest:
Winrar is nagware.
nagware is trialware that never expires but keeps prompting for registration.
I have been using the 40 day trial for 6 years.

also, its OK to pay for good software. really.

 Forum: Scripts   Topic: simple alarm script

 Post subject: simple alarm script
Posted: September 24th, 2009, 8:57 am 

Replies: 9
Views: 1309


Its a simple alarm that beeps the motherboard beeper annoyingly at the specified time. Don't forget to actually click set. also, believe it or not, it doesn't work while the computer is in standby mode. =] However, it uses the motherboard beeper, so the volume doesn't affect it. Alarm (w/ sources) n...

 Forum: Support   Topic: local variables and subroutines

Posted: August 4th, 2009, 8:18 am 

Replies: 7
Views: 551


it seems that if a function is declared like this: function(params ...) { local onevar, twovar, threevar, etc ; This line is critical to the issue ;do some stuff return subroutine: ; This line is critical to the issue ;various commands have this problem. here is one example gui, add, te...

 Forum: Support   Topic: encoding problem

Posted: July 12th, 2009, 5:50 am 

Replies: 1
Views: 204


I have thought about using a 1 by 1 char parsing loop like this for a while. While such a code wouldnt be optimized at all, you could craft something like this: encode(str, alph_after) { alph_before := "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ``1234567890-=[]\;',./~!@#$...

 Forum: Support   Topic: GUI edit field AutoComplete possible?

Posted: July 12th, 2009, 5:31 am 

Replies: 5
Views: 1145


have you checked out rajat's intellisense?
at least I think it was rajat... (soz & credz if im wrong)
it is used as a syntax completor for editors that don't support it.
with some modifications, or even perhaps as is, you could use it for your purposes I bet.

 Forum: Support   Topic: GUI and taskbar menu

Posted: July 12th, 2009, 5:27 am 

Replies: 1
Views: 359


I suggest you create the gui upon loading the script, seperately of showing it, then package showing it into a function which, when called, disables the menu option. some code: toggleGUI() { static gui_visible = 0 if !gui_visible { gui, show, x y w h, Title menu, tray, disable, Sho...

 Forum: Support   Topic: Gui Placement on Desktop

Posted: July 12th, 2009, 5:09 am 

Replies: 1
Views: 317


the built in variables a_screenwidth a_screenheight contain the dimensions of your screen, in pixels. using an expression in your 'gui, show' command could yield something like this: win_width = 300 win_height = 200 gui, add, text, , This window should be in the lower`nright corner of the screen, wi...

 Forum: Support   Topic: Getting Blue screen error (STOP #50 error) after execution!!

Posted: July 10th, 2009, 7:58 am 

Replies: 10
Views: 1012


I would first try to isolate the error. Just because something is syntactically correct in autohotkey doesnt mean it is something the system can handle. Especially since your program uses dllcall. Which brings me a little further - you may want to put some msgboxes around calls to your 'hash' functi...

 Forum: Support   Topic: request code for emulating old dos screen

Posted: July 9th, 2009, 1:59 am 

Replies: 5
Views: 441


well, I'd try something like a window that is-
maximized (always)
has no title bar
is unminimizable
is always on top
has an edit control that covers the whole screen
edit control has wierd font and color

that might be enough for what youre doing.

 Forum: Support   Topic: SetTimer, Sleep or what I should be using?

Posted: July 9th, 2009, 1:03 am 

Replies: 11
Views: 374


im guessing you have something like this? ~rbutton:: while, % getkeystate("rbutton", "P") { ...do stuff } making it sleep is as easy as ~rbutton:: sleep, 200 ;;; add this line while, % getkeystate("rbutton", "P") { ...do stuff &#...

 Forum: Support   Topic: How do I remove "-" from selected text?

Posted: July 9th, 2009, 12:53 am 

Replies: 4
Views: 317


what might be even easier is to put a script on the computer used to enter stuff like this
Code:
-::return


this would prevent dashes from being typed

 Forum: Support   Topic: caret (text insertion point) movement

Posted: July 9th, 2009, 12:36 am 

Replies: 3
Views: 374


agreed - that way is just as disgusting as using send {down 25000}. perhaps even worse.

edit:
CHRISSS!!! help

 Forum: Scripts   Topic: Mandelbrot sets

 Post subject: yet more updates
Posted: June 8th, 2009, 3:31 am 

Replies: 10
Views: 2086


This one is a big one. The big help button is gone completely - if you need help (which you will, lots of new stuff) hit F1. Unfortunately, it is no longer compatible with the old save files, but it makes new better ones. cooler color schemes, animations, and a whole new kind of fractal. on an unrel...

 Forum: Scripts   Topic: Xbox 360 controller as mouse + hotkeys

Posted: June 8th, 2009, 3:18 am 

Replies: 10
Views: 8529


JoyMouse.ahk It is a joystick to mouse script specifically configured to work with an xbox 360 controller with the windows standard drivers. includes: deadzone support recentering of analog controls changable sensitivity useful, intuitive hotkeys (including customizable ones) lots of features (incl...

 Forum: Scripts   Topic: Mandelbrot sets

 Post subject: another update
Posted: April 24th, 2009, 8:14 am 

Replies: 10
Views: 2086


added ability to save and load coordinates, so you dont need to save 80MB bitmaps.
shrunk the help button.
did nothing about the .txt readme.

edit:
on a related note, I compiled with the wrong icon.
Sort by:  
Page 1 of 3 [ Search found 41 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group