AutoHotkey Community

It is currently May 24th, 2012, 1:27 pm

All times are UTC [ DST ]


Search found 28 matches
Search these results:

Author Message

 Forum: Scripts   Topic: :: SmartGUI Creator ::

 Post subject: Re: :: SmartGUI Creator ::
Posted: April 26th, 2012, 5:13 pm 

Replies: 815
Views: 319203


Hi, this is pretty great, thanks for all the hard work on it.

What are the Gui Style and Gui Extended style properties? I am having a hard time searching this thread, and the documentation doesnt seem to address those properties specifically. Thanks!

 Forum: Scripts   Topic: C# Surround Function With Region

Posted: March 13th, 2012, 9:33 pm 

Replies: 0
Views: 205


I just wrote a script to encapsulate a c# method with a #region. Heres a sample c# function: /// <summary> /// Documentation and whatnot /// </summary> /// <returns>Yay</returns> public string helloWorld() { return "Hi"; } And my desired end result: #region helloWorld ///...

 Forum: Scripts   Topic: JumpList library for Windows 7

Posted: March 8th, 2012, 11:05 pm 

Replies: 7
Views: 1821


This is really great, thank you for sharing!

 Forum: Scripts   Topic: Set "Disable display scaling on high DPI settings"

Posted: February 8th, 2012, 11:30 pm 

Replies: 2
Views: 376


On windows 7 and Vista, there are compatibility options that can be set on the properties for an exe. I use firefox on my HTPC that has a high dpi set, and need the "Disable display scaling on high DPI settings" option to be set so that Flash videos display in proper full screen (youtube, ...

 Forum: Custom   Topic: [AHK_L] Crypt - ahk cryptography class (Encryption, Hashing)

Posted: October 31st, 2011, 4:19 am 

Replies: 48
Views: 5997


I must really be missing something up here... No, I'm pretty sure you just downloaded the latest version of AHK_L, in which the var prefix is no longer allowed inside of classes: [color=red]var[/color] StrEncoding := "UTF-16" I believe if you change those instances from var to static it s...

 Forum: Support   Topic: Command Speed

Posted: August 4th, 2009, 8:36 pm 

Replies: 2
Views: 371


Holy crap, I didnt even notice anything about WinDelay. Its much much faster now - great success! currentWinDelay := A_WinDelay SetWinDelay, 0 ; Un Maximize the window so that it can be moved if (IsMaximized == 1) { WinRestore } WinMove, %newX%, %newY% ; Resume the maximized state ...

 Forum: Support   Topic: Hotkeys, Fn key and volume control

Posted: August 4th, 2009, 8:05 pm 

Replies: 2
Views: 499


Thats some useful information it looks like. To get the Fn key to get detected, i think you have to use the scan code: http://www.autohotkey.com/docs/KeyList.htm#SpecialKeys Go to the key history (as suggested above) and get the FN keys scan code. I dabbled with this a little but not enough to have ...

 Forum: Support   Topic: Script works outside of game, but not in.

Posted: August 4th, 2009, 8:02 pm 

Replies: 7
Views: 798


No experience with it myself yet, but maybe try sendplay?

http://www.autohotkey.com/docs/commands ... PlayDetail

 Forum: Support   Topic: Activating the last used window?

Posted: August 4th, 2009, 7:55 pm 

Replies: 3
Views: 389


I believe your problem is simple! You are using the variable Title, so you need to wrap it in %'s:

WinActivate, %Title%

It is seeing "Title" as a string when you dont, so it is failing to activate a window with a title of "Title". Hope this helps.

 Forum: Support   Topic: Command Speed

 Post subject: Command Speed
Posted: August 4th, 2009, 7:21 pm 

Replies: 2
Views: 371


Is there any way to speed up commands? Namely, the block at the bottom that will call WinRestore, WinMove, then Winmaximize. There is a noticeable delay in how fast the commands chain together. WinGet, IsMaximized, MinMax, A ;..... Some other code in here to calculate the newX and newY ; Un Maximize...

 Forum: Support   Topic: Close Window Under Mouse

Posted: July 30th, 2009, 7:55 pm 

Replies: 4
Views: 423


Thanks for the reply. Slight refactoring (don't need yPos or Control variables, and I use ultramon): CloseWindowUnderMouse() { MouseGetPos, , , id, WinGetClass, class, ahk_id %id% If class not in DV2ControlHost,WorkerW,Shell_TrayWnd,UltraMonDeskTaskBar WinClose, ahk_id %id% } I rea...

 Forum: Support   Topic: Close Window Under Mouse

 Post subject: Close Window Under Mouse
Posted: July 30th, 2009, 7:27 pm 

Replies: 4
Views: 423


Greetings. I wrote this function but it only works when the window is currently active. What gives? I even tried activating it and waiting for it to become active. CloseWindowUnderMouse() { MouseGetPos, , yPos, id, control yBottom := A_ScreenHeight - yPos ;Don't close the start menu! if...

 Forum: Support   Topic: Window's 7 Superbar

Posted: July 16th, 2009, 9:40 pm 

Replies: 2
Views: 441


What do you mean by not sending keystrokes? I use this full time and really like it. MButton:: CoordMode, Mouse, Screen MouseGetPos, x, y, WinUnderMouseID ;WinActivate, ahk_id %WinUnderMouseID% ;Get y position relative to the bottom of the screen. yBottom := A_ScreenHeight - y ; Close taskbar progra...

 Forum: Support   Topic: Discover Visual Studio Tab

Posted: July 15th, 2009, 10:01 pm 

Replies: 4
Views: 397


I just ran that - it returned FAIL :(

 Forum: Scripts   Topic: .NET Framework Interop

Posted: July 15th, 2009, 7:41 pm 

Replies: 132
Views: 33543


Great stuff you have here, I love it. I had the idea to interop to my dlls while commuting to work this morning, and pulled this up in no time. Excellent work. Looking over your documentation, I have a question: CLR_Stop() Stops the Common Language Runtime. Once stopped, it cannot be reinitialized i...
Sort by:  
Page 1 of 2 [ Search found 28 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group