Search found 111 matches

by HIAC
17 Nov 2017, 19:09
Forum: Ask for Help (v1)
Topic: Sound detection Topic is solved
Replies: 12
Views: 4862

Sound detection Topic is solved

Can AHK detect while sound is playing? Music from game
by HIAC
14 Nov 2017, 04:28
Forum: Ask for Help (v1)
Topic: OnMessage problem Topic is solved
Replies: 2
Views: 541

Re: OnMessage problem Topic is solved

Thanks a lot!
by HIAC
14 Nov 2017, 02:41
Forum: Ask for Help (v1)
Topic: How to change keyboard layout? Topic is solved
Replies: 2
Views: 476

Re: How to change keyboard layout? Topic is solved

Yeah, did that, thanks!
by HIAC
14 Nov 2017, 02:19
Forum: Ask for Help (v1)
Topic: OnMessage problem Topic is solved
Replies: 2
Views: 541

OnMessage problem Topic is solved

OnMessage(0x201, "AutoLang") AutoLang() { If A_GuiControl = RuskiTxt Send, ^+2 else if A_GuiControl = SrpskiTxt Send, ^+1 else if A_GuiControl = PREVODILAC { if NaRuski = 1 Send, ^+1 else if NaSrpski = 1 Send, ^+2 } else Send, ^+1 } return Everything works, except "if NaRuski = 1" and "else if NaSr...
by HIAC
13 Nov 2017, 23:40
Forum: Gaming Help (v1)
Topic: No one can do this Topic is solved
Replies: 1
Views: 499

Re: No one can do this Topic is solved

Did it! :dance:

Code: Select all

#NoEnv
#SingleInstance, Force

f1:: ; F1 to Activate
Loop,
{
  Click Down Right
  Sleep, 10000
  Click Up Right
  Sleep, 120000 ; 2 minutes, 1000 = 1 minute
}
return


esc:: ; ESC to force close the App
  exitapp
return
by HIAC
13 Nov 2017, 23:31
Forum: Ask for Help (v1)
Topic: Click on a button
Replies: 5
Views: 1246

Re: Click on a button

Perhaps try by class name

Code: Select all

pwb.document.getElementsByClassName("txt_botao1").item(0).click()
by HIAC
13 Nov 2017, 21:02
Forum: Ask for Help (v1)
Topic: Pulovers ¨ Loop , find string and select the next characters help_?
Replies: 1
Views: 397

Re: Pulovers ¨ Loop , find string and select the next characters help_?

Hi. I hope this helps:

Code: Select all

#NoEnv
#SingleInstance, Force

Loop, 
{
  If RegExMatch(Clipboard, "(?:instagram.com)\/([^&]+)", user) ; If Clipboard contains instagram link with username
    Break ; Exit loop
}
Clipboard = ; Clears the clipboard
MsgBox, 0, Info, User detected: %user1%
return
by HIAC
13 Nov 2017, 18:53
Forum: Ask for Help (v1)
Topic: How to change keyboard layout? Topic is solved
Replies: 2
Views: 476

How to change keyboard layout? Topic is solved

How to change keyboard layout from SR to RU? I can change it by clicking on language tray icon but what would be the code to do it?
by HIAC
13 Nov 2017, 11:48
Forum: Scripts and Functions (v1)
Topic: Youtube to MP3
Replies: 27
Views: 8978

Re: Youtube to MP3

scriptor2016 wrote:can this be modified to work with Google Chrome?
Unfortunately not, only IE support automation like this
by HIAC
11 Nov 2017, 23:53
Forum: Ask for Help (v1)
Topic: Is it possible to change keyboard layout only when writing in specific gui field?
Replies: 3
Views: 655

Is it possible to change keyboard layout only when writing in specific gui field?

hy
Is it possible to change keyboard layout only when writing in specific gui field?
by HIAC
11 Nov 2017, 23:33
Forum: Ask for Help (v1)
Topic: Gui focus on edit field last line
Replies: 4
Views: 1070

Re: Gui focus on edit field last line

Well thanks m8, but I don't think that did focus on the last line.. I added more text and it didn't scroll down.. :(
by HIAC
11 Nov 2017, 20:33
Forum: Ask for Help (v1)
Topic: Gui focus on edit field last line
Replies: 4
Views: 1070

Re: Gui focus on edit field last line

I misread your post as saying 'read-only' instead of disabled. Hopefully the script is still of some use. Cheers. q:: ;Notepad - make Edit control read-only ControlGet, hCtl, Hwnd,, Edit1, ahk_class Notepad SendMessage, 0xCF, 1,,, % "ahk_id " hCtl ;EM_SETREADONLY := 0xCF SendMessage, 0xE,,,, % "ahk...
by HIAC
11 Nov 2017, 19:29
Forum: Ask for Help (v1)
Topic: Gui focus on edit field last line
Replies: 4
Views: 1070

Gui focus on edit field last line

Everything that I write in GUI Edit1 box goes into Edit2, but Edit2 is set Disabled and smaller size than Edit2.. So once it reachs end of size, i must scroll down to view it, but i cant since its disabled.. i dont want to have it enabled.. any way to focus on last line? tnx
by HIAC
09 Nov 2017, 23:42
Forum: Scripts and Functions (v1)
Topic: Youtube to MP3
Replies: 27
Views: 8978

Re: Youtube to MP3

OK SHOULD BE FIXED NOW! :lol: :superhappy: :superhappy: well whatever you did, it works just fine now. :) just have to change a few things. thanks for all the hard work! :superhappy: :superhappy: Glad to hear that. :superhappy: I improved script, and will probably continue doing it, so please keep ...
by HIAC
09 Nov 2017, 20:03
Forum: Ask for Help (v1)
Topic: While-loop Topic is solved
Replies: 2
Views: 744

Re: While-loop Topic is solved

Delta Pythagorean wrote:

Code: Select all

While ((Inprogress := pwb.document.getElementById("file").href) = "https://ytmp3.cc/")
	Sleep, 100
thanks m8
by HIAC
09 Nov 2017, 18:47
Forum: Scripts and Functions (v1)
Topic: Youtube to MP3
Replies: 27
Views: 8978

Re: Youtube to MP3

OK SHOULD BE FIXED NOW! :lol:
by HIAC
09 Nov 2017, 18:22
Forum: Ask for Help (v1)
Topic: While-loop Topic is solved
Replies: 2
Views: 744

While-loop Topic is solved

Code: Select all

Inprogress := pwb.document.getElementById("file").href
How can make a code that will sleep for 100ms while Inprogress is "https://ytmp3.cc/"
by HIAC
09 Nov 2017, 15:35
Forum: Scripts and Functions (v1)
Topic: Youtube to MP3
Replies: 27
Views: 8978

Re: Youtube to MP3

Completely redesigned and improved the script, hopefully it's gonna work fine this time.
by HIAC
09 Nov 2017, 13:57
Forum: Ask for Help (v1)
Topic: Status bar change Topic is solved
Replies: 3
Views: 803

Re: Status bar change Topic is solved

Solved with

Code: Select all

SB_SetText("Text")
Thanks!

Go to advanced search