AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Search found 181 matches
AutoHotkey Community Forum Index
Author Message
  Topic: WinSlide (AHK_L) - Arrange windows, move between monitors
entropic

Replies: 0
Views: 389

PostForum: Scripts & Functions   Posted: Sat Oct 29, 2011 3:10 am   Subject: WinSlide (AHK_L) - Arrange windows, move between monitors
I wrote this little script to learn more about AutoHotKey_L. I had seen Lexikos' excellent script, Win + Numpad Dot - Move active window to next monitor (1->2->3->1 - up to 8 monitors& ...
  Topic: Quick & Dirty QR Code creator
entropic

Replies: 1
Views: 821

PostForum: Scripts & Functions   Posted: Sat Apr 10, 2010 6:23 am   Subject: Quick & Dirty QR Code creator
This is brilliant!

Here's a little test one
http://imgur.com/ZnBrm.png
  Topic: Checkbox to set to startup?
entropic

Replies: 3
Views: 283

PostForum: Ask for Help   Posted: Mon Apr 05, 2010 1:51 am   Subject: Checkbox to set to startup?
Alternatively you can create a shortcut to your program in %A_StartMenu%\Programs\Startup (for current user) or %A_StartMenuCommon%\Programs\Startup (for all users).
  Topic: IronAHK (alpha): cross platform .NET rewrite of AutoHotkey
entropic

Replies: 538
Views: 93619

PostForum: Scripts & Functions   Posted: Wed Mar 17, 2010 2:28 am   Subject: IronAHK (alpha): cross platform .NET rewrite of AutoHotkey
You can compile for 64 bit systems from a 32 bit system. You will just have to install the 64 bit compiler if it isn't already installed, I don't believe it is installed by default.
  Topic: Auto Assembly & AHk ?
entropic

Replies: 4
Views: 400

PostForum: Ask for Help   Posted: Sun Mar 14, 2010 4:58 am   Subject: Auto Assembly & AHk ?
You can covert it to machine code and run it with Laszlo's [url=http://www.autohotkey.com/forum/viewtopic.php?t=21172&start=0]MCode
  Topic: IronAHK (alpha): cross platform .NET rewrite of AutoHotkey
entropic

Replies: 538
Views: 93619

PostForum: Scripts & Functions   Posted: Wed Mar 10, 2010 3:37 am   Subject: IronAHK (alpha): cross platform .NET rewrite of AutoHotkey
DeWild1 - The first problem I see is that IronAHK does not yet support GUIs, it is a planned feature for the 0.7 release.
  Topic: randomizing elements in array
entropic

Replies: 6
Views: 542

PostForum: Ask for Help   Posted: Sat Mar 06, 2010 1:31 am   Subject: randomizing elements in array
This works fine for me

array0 = 2
array1 = a
array2 = b
array3 = c
array4 = d

Msgbox %array1% %array2% %array3% %array4%

Loop % array0-1
{
Msgbox %A_Index%
Random i, A_Index ...
  Topic: Hotkey to Execute to other Hotkeys
entropic

Replies: 10
Views: 365

PostForum: Ask for Help   Posted: Fri Mar 05, 2010 2:11 am   Subject: Hotkey to Execute to other Hotkeys
No problem, to get F5 to work try this:

SendInput {F5}
  Topic: Any way to easily: if last sring ends with %x%, trim %x%
entropic

Replies: 3
Views: 1772

PostForum: Ask for Help   Posted: Fri Mar 05, 2010 1:55 am   Subject: Any way to easily: if last sring ends with %x%, trim %x%
Here's how to do it with regular expressions

str = This is a test
var = t

Msgbox % RegExReplace(str, var "$")
  Topic: Hotkey to Execute to other Hotkeys
entropic

Replies: 10
Views: 365

PostForum: Ask for Help   Posted: Fri Mar 05, 2010 1:46 am   Subject: Hotkey to Execute to other Hotkeys
I totally read your first post wrong, glad you got it figured out.

You may need to put a Sleep between the calls to A() and B() if you find the application can't keep up.
  Topic: Any way to easily: if last sring ends with %x%, trim %x%
entropic

Replies: 3
Views: 1772

PostForum: Ask for Help   Posted: Fri Mar 05, 2010 12:56 am   Subject: Any way to easily: if last sring ends with %x%, trim %x%
Here's a way of doing it without regular expressions

removeChar = x
str = The quick brown fox jumps over the lazy dog.x
str2 = The quick brown fox jumps over the lazy dog.

Msgbox % "Star ...
  Topic: Hotkey to Execute to other Hotkeys
entropic

Replies: 10
Views: 365

PostForum: Ask for Help   Posted: Fri Mar 05, 2010 12:44 am   Subject: Hotkey to Execute to other Hotkeys
There are a bunch of ways to structure it, here's another one:

!^+<::A()
!^+>::B()

!^+a::
A()
B()
Return

A()
{ ...
  Topic: Hotkey to Execute to other Hotkeys
entropic

Replies: 10
Views: 365

PostForum: Ask for Help   Posted: Fri Mar 05, 2010 12:41 am   Subject: Hotkey to Execute to other Hotkeys
Does this work for you?



^!+<::
LabelA:
Msgbox A
Return

^!+>::
LabelB:
Msgbox B
Return

^!+a::
GoSub, LabelA
GoSub, LabelB
Return
  Topic: Run AHK scripts with less (half or even less) memory usage
entropic

Replies: 21
Views: 11531

PostForum: Scripts & Functions   Posted: Wed Mar 03, 2010 2:33 am   Subject: Run AHK scripts with less (half or even less) memory usage
You can set the function to a hotkey and call it many times.

The thing is you want to use as much RAM as possible, RAM you aren't using is being wasted. Data gets loaded to RAM to speed up access t ...
  Topic: [Library] Edit v1.1 - Update/Control any Edit control
entropic

Replies: 20
Views: 5391

PostForum: Scripts & Functions   Posted: Sat Feb 27, 2010 4:17 am   Subject: [Library] Edit v1.1 - Update/Control any Edit control
Very cool, thank you!
 
Page 1 of 13 Goto page 1, 2, 3 ... 11, 12, 13  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group