Search found 230 matches

by w0z
21 Jan 2020, 10:58
Forum: Ask for Help (v1)
Topic: Perform AHK script only in particular window and only when Alt is pressed
Replies: 2
Views: 405

Re: Perform AHK script only in particular window and only when Alt is pressed

Perhaps this is what you want. ; replace "ahk_class Notepad" with the WinTitle or the ahk class of AE, you can obtain this with "Window Spy" that comes with autohotkey #IfWinActive ahk_class Notepad !WheelRight:: ;Alt + WheelRight if (A_PriorHotkey != A_ThisHotkey or A_TimeSincePriorHotkey > 100) Se...
by w0z
21 Jan 2020, 08:23
Forum: Ask for Help (v1)
Topic: Need help in remapping
Replies: 3
Views: 354

Re: Need help in remapping

look in docs there are examples that you want to do.
https://www.autohotkey.com/docs/misc/Remap.htm
by w0z
16 Jan 2020, 10:12
Forum: Ask for Help (v1)
Topic: Can You Make a Easy Script ? PLZ ;-;
Replies: 1
Views: 827

Re: Can You Make a Easy Script ? PLZ ;-;

You mean this way?:

Code: Select all

f1::
	Send, {1}
	Sleep, 100
	Click, down
	Sleep, 10000	;wait for ten seconds
	Click, up
	Sleep, 100
	Send, {Escape}
	Sleep, 100
	Send, {r}
	Sleep, 100
	Send, {Enter}
Return
by w0z
16 Jan 2020, 07:49
Forum: Ask for Help (v1)
Topic: Copy data from excel to paste it into another program
Replies: 1
Views: 745

Re: Copy data from excel to paste it into another program

If you have multiple excel open , be sure you to active the desire one , because the funtion XL excel points the last used or active window excel. You can view some nice tutorials on Joe Glines webpage: The-Automator.com #Include XL.ahk ; I attach the file XL.ahk, so place in the same directory of y...
by w0z
15 Jan 2020, 15:42
Forum: Ask for Help (v1)
Topic: Mouse functions not working (Win 10)
Replies: 2
Views: 412

Re: Mouse functions not working (Win 10)

You can use FindText function that also works with images to click on them. This is the topic in the forum where you can learn how to use it. https://autohotkey.com/boards/viewtopic.php?f=6&t=17834 ;Joe Glines has some nice tutorials on his webpage. ;https the-automator.com /find-and-click-image-sen...
by w0z
15 Jan 2020, 08:47
Forum: Ask for Help (v1)
Topic: Mouse functions not working (Win 10)
Replies: 2
Views: 412

Re: Mouse functions not working (Win 10)

;) try this:

Code: Select all

F7::
	send {shift}+{Space} ;Selects the row
	MouseClick, Left, 720, 155, 1 ;Clicks on the coordinates of the Fill Color button
return
by w0z
14 Jan 2020, 10:00
Forum: Ask for Help (v1)
Topic: Help with associative array inside function.
Replies: 4
Views: 452

Re: Help with associative array inside function.

So I was reading about the local variables,then I ended up knowing the global variable. I apply my variables the global and it works the way I expected ;) . I have some doubts , the use of "haskey" is more fast or the way I did is the same?. I want you to check my code if there are some improvements...
by w0z
10 Jan 2020, 15:39
Forum: Ask for Help (v1)
Topic: Help with associative array inside function.
Replies: 4
Views: 452

Re: Help with associative array inside function.

So your question is about XL_Copy_to_Var_omitBlank() . I do not see that function in @Joe Glines library and it might have been replaced by XL_Copy_To_Object. If that is the case, MsgBox, % NUM_FUA will show blank as NUM_FUA is an object. Please show the XL_Copy_to_Var_omitBlank() function. Sorry f...
by w0z
10 Jan 2020, 10:29
Forum: Ask for Help (v1)
Topic: Help with associative array inside function.
Replies: 4
Views: 452

Help with associative array inside function.

First of all I want to store in array from an excel file, so after that I can use the array to modify, show the info for print. So while insert into array i want to check duplicates, if it is another "cod" equal just find it, get from array sum the value of "entr" in this case, and save into array. ...
by w0z
12 Sep 2018, 19:03
Forum: Scripts and Functions (v1)
Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No IE!
Replies: 669
Views: 498773

Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!

It may sound stupid, but I'm not a Chrome user and I dont have a clue how do I need to start Chrome in Debug mode? Can someone tell me or give a link where it's showed up? Hi, you can add --remote-debugging-port=9222 on a shortcut properties after "C:\Program Files (x86)\Google\Chrome\Application\c...

Go to advanced search