| Author |
Message |
Forum: Offtopic Topic: anonymous moderator give your reason! |
| closed |
|
Posted: October 6th, 2011, 12:40 pm
|
|
Replies: 23 Views: 1550
|
| As i have received confirmation that the thread will not be unblocked (no reasons given to me) i regard it as a collective decision made by the " administration " of this forum and not by a single person. Free speech and open forums are important and if moderators and administrators show a... |
|
 |
Forum: Support Topic: Put preview in GUI |
| closed |
|
Posted: October 5th, 2011, 5:03 pm
|
|
Replies: 8 Views: 328
|
|
 |
Forum: Support Topic: scan for color |
| closed |
|
Posted: October 5th, 2011, 4:41 pm
|
|
Replies: 17 Views: 387
|
| gdip can see minimized windows where is the reference for gdip? can AHK send clicks and keys to minimized controls? Gdip cannot see minimized windows ! You can test it . SetBatchLines, -1 ;#Include Gdip.ahk ;if not in standard lib gui,color,red gui,show,h100 w100 gui +lastfound hwnd:=winexist(&... |
|
 |
Forum: Offtopic Topic: anonymous moderator give your reason! |
| closed |
|
Posted: October 3rd, 2011, 2:45 pm
|
|
Replies: 23 Views: 1550
|
| It is totally unacceptable that a topic in general chat is locked by an anonymous moderator! You can disagree with comments and remove bad language but stopping a discussion by blocking comments is unheard of! It only confirms some points of the OP and it would be a sad day if no action is taken to ... |
|
 |
Forum: Support Topic: Simulating a double click |
| closed |
|
Posted: October 2nd, 2011, 8:29 pm
|
|
Replies: 6 Views: 461
|
| http://www.autohotkey.com/forum/post-154994.html#154994 When you use it you also need to include Lexicos functions for getting the handle of the control to send to. example i used to test it ( ahk basic ): f4:: controlclick2(100,5,"ASticky") msgbox ok return ControlClick2(X, Y,... |
|
 |
Forum: Support Topic: [solved] - What does \K mean |
| closed |
|
Posted: September 30th, 2011, 6:31 pm
|
|
Replies: 10 Views: 382
|
| It is because .* is greedy! If it finds the first slash it is so greedy it will look for more! From the helpfile on regex and i found this to be very important (even it takes some time to put your head around it) Greed: By default, *, ?, +, and {min,max} are greedy because they consume all character... |
|
 |
Forum: Support Topic: [solved] - What does \K mean |
| closed |
|
Posted: September 30th, 2011, 4:41 pm
|
|
Replies: 10 Views: 382
|
| @engunneer Try it instead of assuming this ! :) Sinkfaze explained it with his usual clarity. but the match that is replaced will not include everything up to and including the last literal backslash, only everything after it. http://img801.imageshack.us/img801/4672/img0012zl.jpg |
|
 |
Forum: Scripts Topic: Storing data in NTFS alternate data stream |
| closed |
|
Posted: September 30th, 2011, 1:42 pm
|
|
Replies: 0 Views: 1481
|
| I wanted to use time info out of a mp3 file in a bass.dll powered player/editor http://www.autohotkey.com/forum/topic72017.html but it takes too much time to extract the data from a long file list for use in a changing display. see screenshot: http://img12.imageshack.us/img12/5025/clipboard01fq.png ... |
|
 |
Forum: Scripts Topic: Screen Capture with Transparent Windows and Mouse Cursor |
| closed |
|
Posted: September 29th, 2011, 6:37 pm
|
|
Replies: 180 Views: 92542
|
| You can use gdip library to get it done. #SingleInstance, Force #NoEnv SetBatchLines, -1 SetTitleMatchMode, 2 ;#include gdip.ahk ;http://www.autohotkey.com/forum/topic32238.html wintitle=IrfanView x=50 y=50 w=300 h=300 If !pToken := Gdip_Startup() { MsgBox, 48, gdiplus error!, Gdiplus f... |
|
 |
Forum: Support Topic: How can I force a "FileSelectFile" dialog to the t |
| closed |
|
Posted: September 27th, 2011, 11:37 am
|
|
Replies: 4 Views: 179
|
| Also is there a way to have the FileSelectFile centered when it appears? Yes it is the same with a messagebox using Skan's suggestion: http://www.autohotkey.com/forum/post-67132.html#67132 SetTimer, WinMoveFileSelect, 250 FileSelectFile, SelectedFile, S, , Open a file, Save new data as, (*.csv&... |
|
 |
Forum: Support Topic: [solved] - left-drag-select:copy;double-click:copy |
| closed |
|
Posted: September 26th, 2011, 8:07 pm
|
|
Replies: 10 Views: 396
|
woow very nice idea! It is rare to see these small gold nuggets code!
Nice coding Gogo
I only need to add an easy way to do nothing because i need selecting text for different actions like font change (and not changing the clipboard ). |
|
 |
Forum: Support Topic: AHK stopped warning messages for single instance |
| closed |
|
Posted: September 26th, 2011, 12:10 pm
|
|
Replies: 5 Views: 235
|
Quote: A script containing hotkeys, hotstrings, #Persistent, OnMessage(), or Gui is single-instance by default.
So if it does not contain those commands it will not give a warning unless you force it . |
|
 |
Forum: Support Topic: Gdip_GetPixel vs PixelGetColor. (GDIP giving wrong color?) |
| closed |
|
Posted: September 25th, 2011, 10:20 am
|
|
Replies: 5 Views: 382
|
| Hi jpjazzy I do not have much time right now so i can just give what i comes up in my morning head! you can get a bitmap from area i used it here: http://www.autohotkey.com/forum/viewtopic.php?p=476076#476076 or using the hwnd of the window you need (but it uses the PrintWindow function that is acco... |
|
 |
Forum: Support Topic: What for do you use a debugger? |
| closed |
|
Posted: September 25th, 2011, 7:44 am
|
|
Replies: 9 Views: 401
|
woow thank you girlgamer for bringing the debug into light!
I use PSPad that does not have an inbuild debug option so i never gave it a thought but using dbgview is so easy ! |
|
 |
Forum: Support Topic: Gdip_GetPixel vs PixelGetColor. (GDIP giving wrong color?) |
| closed |
|
Posted: September 25th, 2011, 7:37 am
|
|
Replies: 5 Views: 382
|
| I guess if you take a bitmap from screen for gdip you have to use the same reference for coordinates for pixelgetcolor . (btw F1 does not shutdown or dispose of bitmap so in principal can only be used once if it is not just for testing) :) Tic's library also contains easy functions for ARGB conversi... |
|
 |
| Sort by: |