Search found 12 matches

by Peared
06 Nov 2017, 05:09
Forum: Off-topic Discussion
Topic: AHKathon! [AHK Hackathon] 12/17
Replies: 80
Views: 29681

Re: AHKathon! [AHK Hackathon] 12/17

I'll be there Entries will be judged on performance, UI, ease of use, and readability. Performance :roll: My scripts almost never perform, unless unwanted rapid shutdown is the goal, i've nailed that one Ui :crazy: the G ui usually terminate the script, but it looks cool, i've seen it 5-6 sec in to...
by Peared
06 Jul 2017, 06:03
Forum: Scripts and Functions (v1)
Topic: AHK ColorDialog
Replies: 2
Views: 1637

AHK ColorDialog

https://i.gyazo.com/2db2f81e53551955a952852fa76cbb07.png Add to your script folder and runwait, colordialog.ahk IniRead, color, colors.ini, Color, color_selected,0x000000 ; ====================================================================================================================== version...
by Peared
29 Jun 2017, 16:25
Forum: Ask for Help (v1)
Topic: No WM_MOUSEMOVE Message sent in Win 10 Gui w/ Transcolor set Topic is solved
Replies: 7
Views: 2369

Re: No WM_MOUSEMOVE Message sent in Win 10 Gui w/ Transcolor set Topic is solved

#NoEnv Hidden:=0 DetectHiddenWindows on CoordMode, Mouse, Screen WM_MOUSEMOVE=0x200 OnMessage(WM_MOUSEMOVE, "MOUSEMOVE") x:=5 y:=A_ScreenHeight-420 yi:=0 x2:=A_ScreenWidth-40 width:=30 height:=220 WinSet, Transparent,220 ; <----------- Gui +LastFound +AlwaysOnTop -Caption Gui, Color, %CustomColor%,...
by Peared
29 Jun 2017, 15:28
Forum: Ask for Help (v1)
Topic: Random sleep timers and mouse positions are ignored
Replies: 3
Views: 850

Re: Random sleep timers and mouse positions are ignored

^!m:: Inputbox, number, Quest, Repetir quantas vezes (1-5)? If (number < 1 || loop > 5) ; <-- loop should not be here Return ^!e:: Inputbox, number, Event, Repetir quantas vezes (1-5)?. If (number < 1 || number > 5) ; [1] is only possible input number that does not end in return, numbers [2-5] will...
by Peared
28 Jun 2017, 11:36
Forum: Scripts and Functions (v1)
Topic: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)
Replies: 391
Views: 244599

Re: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)

Working script that give you an easy custom GUI to use with your script . Is inspired by the GUI-Demo from this forum, https://autohotkey.com/board/topic/90723-achieve-rainmeter-style-gui-via-gdip-library/ I have stripped this from my program just to inspire others, and tried to make it as easy to ...
by Peared
28 Jun 2017, 00:58
Forum: Ask for Help (v1)
Topic: How to loop through characters in an edit-box?
Replies: 1
Views: 646

Re: How to loop through characters in an edit-box?

First you need to assign a variable to you edit control : Gui Add, Edit, x3 y31 w474 h150 vMyEdit alt1 : Add [ Gui,Submit,Nohide ] to top of your Sub1 so content of editcontrol is saved to variable. The contens of %MyEdit% contain the text as a string alt2: [ GuiControlGet, OutputVar , Edit, MyEdit,...
by Peared
27 Jun 2017, 23:41
Forum: Ask for Help (v1)
Topic: Help creating script
Replies: 1
Views: 605

Re: Help creating script

Try this

Code: Select all

Xbutton2::
Send +g       ;---  Send the letter G  (shift+g)
return

by Peared
27 Jun 2017, 23:27
Forum: Scripts and Functions (v1)
Topic: Custom GUI Demo
Replies: 1
Views: 2849

Custom GUI Demo

Working script that give you an easy custom GUI to use with your script . Is inspired by the GUI-Demo from this forum, https://autohotkey.com/board/topic/90723-achieve-rainmeter-style-gui-via-gdip-library/ I have stripped this from my program just to inspire others, and tried to make it as easy to ...
by Peared
03 Dec 2015, 16:16
Forum: Gaming Help (v1)
Topic: MouseMove to Pixel X and Y Topic is solved
Replies: 9
Views: 4256

Re: MouseMove to Pixel X and Y Topic is solved

What game are you trying to make it work in? Battlefield or Blockade?
by Peared
03 Dec 2015, 16:01
Forum: Gaming Help (v1)
Topic: MouseMove to Pixel X and Y Topic is solved
Replies: 9
Views: 4256

Re: MouseMove to Pixel X and Y Topic is solved

Try adding top top section of script : Sendmode Play
by Peared
03 Dec 2015, 15:32
Forum: Gaming Help (v1)
Topic: MouseMove to Pixel X and Y Topic is solved
Replies: 9
Views: 4256

Re: MouseMove to Pixel X and Y Topic is solved

Try this:

color := "0x31C308"
CoordMode, Pixel, Screen
PixelSearch, TargetX, TargetY, 1, 1, A_ScreenWidth, A_ScreenHeight, %color%, 25, Fast
MouseMove, %TargetX%, %TargetY%
by Peared
03 Dec 2015, 14:59
Forum: Gaming Help (v1)
Topic: MouseMove to Pixel X and Y Topic is solved
Replies: 9
Views: 4256

Re: MouseMove to Pixel X and Y Topic is solved

I have a fix that works for my similar use, drop the PixelSearch and use ImageSearch instead. Make an image 2x2 - 4x4 in size, and test it out, you might haveto jack up colorvariations to a level around *45-*80. If bot click on other items than intended try to use an image with Two seperate colors (...

Go to advanced search