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 75 matches
AutoHotkey Community Forum Index
Author Message
  Topic: Help with math.
Wouther

Replies: 41
Views: 583

PostForum: Ask for Help   Posted: Sun Jul 06, 2008 6:31 pm   Subject: Help with math.
You could try removing the 'Sleep, 100' in the loop. Razz I placed it there because when the square spiral got very big (almost my entire screen) and if you set the gap very small, The Gimp (probably al ...
  Topic: Help with math.
Wouther

Replies: 41
Views: 583

PostForum: Ask for Help   Posted: Sun Jul 06, 2008 2:48 pm   Subject: Help with math.
Though many have already provided solutions, I wanted to contribute something too. It was fun to do. The result is a function that uses math to calculate the coordinates of a point on the square spira ...
  Topic: Graphical Tab's?
Wouther

Replies: 3
Views: 86

PostForum: Ask for Help   Posted: Sun Jul 06, 2008 2:17 pm   Subject: Graphical Tab's?
Ok...I've solved the Problem (With a Lot "GuiControl, Hide/Show, "Control")... SmileI don't know for sure, but I think you can use a tab-control and use some picture controls with g-labels ...
  Topic: using the height/width of current window
Wouther

Replies: 2
Views: 47

PostForum: Ask for Help   Posted: Sun Jul 06, 2008 2:09 pm   Subject: using the height/width of current window
Browse the help file for WinGetActiveStats.
Edit: You can retrieve the position and size of the button with ControlGetPos. Use Window Spy (installed with Autohotkey) to find out what the control's cl ...
  Topic: What's your favorite FREE text editor?
Wouther

Replies: 38
Views: 515

PostForum: General Chat   Posted: Thu Jul 03, 2008 3:07 pm   Subject: What's your favorite FREE text editor?
My favourite editor (free) is ConTEXT.
1. line numbers at the sideYep
2. when i use { Check
3. hotkey to execute script immediately without double clicking the icon (Ctrl+L)Yes and it can also capt ...
  Topic: Running commands on standby, hibernation and resume events
Wouther

Replies: 11
Views: 1780

PostForum: Scripts & Functions   Posted: Wed Jun 25, 2008 5:11 pm   Subject: Running commands on standby, hibernation and resume events
I changed the path to my own tmp-directory and it works on my computer. I think the WM-part works, but you have to specify a file name instead of a folder for FileAppend.FileAppend, "powerbroadca ...
  Topic: [Solved] Sidebar: Limit the size of maximised windows
Wouther

Replies: 6
Views: 244

PostForum: Ask for Help   Posted: Sat Jun 21, 2008 1:28 pm   Subject: [Solved] Sidebar: Limit the size of maximised windows
Waoh! Shocked You just made my day, thank you! Razz
  Topic: [Solved] Sidebar: Limit the size of maximised windows
Wouther

Replies: 6
Views: 244

PostForum: Ask for Help   Posted: Thu Jun 19, 2008 7:36 pm   Subject: Re: Sidebar: Limit the size of maximised windows
That's perfect! Shocked Thank you very much! Razz

  Topic: [Solved] Sidebar: Limit the size of maximised windows
Wouther

Replies: 6
Views: 244

PostForum: Ask for Help   Posted: Thu Jun 19, 2008 3:46 pm   Subject: [Solved] Sidebar: Limit the size of maximised windows
To users searching the forum:
I found a program that does exactly this: [url=http://lifehacker.com/software/featured-windows-download/reserve-space-from-maximized-windows-with-desktopcoral-319540.php ...
  Topic: Question
Wouther

Replies: 4
Views: 145

PostForum: Ask for Help   Posted: Thu Jun 19, 2008 11:07 am   Subject: Question
It can be even shorter, using the ternary operator! Cool
Test := 0

!a::
Send, % (Test = 0) ? "Hello" : "Goodbye"
Test := !Test
Return
  Topic: simplified csv operations.
Wouther

Replies: 32
Views: 1085

PostForum: Scripts & Functions   Posted: Thu Jun 19, 2008 10:46 am   Subject: simplified csv operations.
Thanks for posting, it can be useful. Smile
However, I remember someone coded something to count the lines of a file without a loop. Something with StringSplit, then counting the number of items in the ...
  Topic: AlwaysOnBottom?
Wouther

Replies: 6
Views: 152

PostForum: Ask for Help   Posted: Sat May 17, 2008 2:57 pm   Subject: Re: AlwaysOnBottom?
See SKAN's excelent post Ehm... Isn't that the same method I posted? Wink
  Topic: AlwaysOnBottom?
Wouther

Replies: 6
Views: 152

PostForum: Ask for Help   Posted: Sat May 17, 2008 12:59 pm   Subject: Re: AlwaysOnBottom?
kinda like the desktop hasMaybe something like this.WinGet, Prnt, ID, Program Manager
WinGet, Chld, ID, YourWindowTitle
DllCall("SetParent", Int, Chld, Int, Prnt)
  Topic: Gui FIX, please help
Wouther

Replies: 6
Views: 222

PostForum: Ask for Help   Posted: Fri May 16, 2008 9:15 pm   Subject: Gui FIX, please help
It took some time, but it was an interesting problem so it was not boring to do. This is my 'solution':WinW := 478
WinH := 478
WinX := (A_ScreenWidth - WinW) / 2
WinY :=  ...
  Topic: Put here requests of problems with regular expressions
Wouther

Replies: 254
Views: 9422

PostForum: Ask for Help   Posted: Mon May 12, 2008 11:29 am   Subject: Put here requests of problems with regular expressions
You can save parts of a string with RegexMatch like this:testvar = random_key=random_settings hello=hi
RegexMatch(testvar, "^(.*?)=", Sub)
MsgBox, random_key = %Sub1%
 
Page 1 of 5 Goto page 1, 2, 3, 4, 5  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group