Search found 26 matches

by kanat
16 Feb 2017, 07:34
Forum: Ask for Help (v1)
Topic: Problem passing list of window ids to function
Replies: 9
Views: 2527

Re: Problem passing list of window ids to function

Really weird behaviour. Somebody of the gurus should explain it.
by kanat
16 Feb 2017, 02:04
Forum: Ask for Help (v1)
Topic: How to make 64-bit IE the default browser?
Replies: 8
Views: 3063

Re: How to make 64-bit IE the default browser?

Code: Select all

Run, %A_ProgramFiles%\Internet Explorer\iexplore.exe https://autohotkey.com/
by kanat
31 Dec 2016, 11:28
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4898
Views: 1413898

Re: « What's on your mind? » Topic is solved

As the New Year approaches us with hopes anew, here is wishing you all a wonderful year ahead !
by kanat
30 Dec 2016, 04:52
Forum: Ask for Help (v1)
Topic: Close specific 'Windows Security' dialog window
Replies: 7
Views: 2399

Re: Close specific 'Windows Security' dialog window

I assume wintitle, wintext do not match exactly. Check them again.
by kanat
29 Dec 2016, 07:12
Forum: Ask for Help (v1)
Topic: Close specific 'Windows Security' dialog window
Replies: 7
Views: 2399

Re: Close specific 'Windows Security' dialog window

Instead of WinClose try to close the window with WinKill or PostMessage (uncomment the line in the script).
by kanat
29 Dec 2016, 06:22
Forum: Ask for Help (v1)
Topic: Close specific 'Windows Security' dialog window
Replies: 7
Views: 2399

Re: Close specific 'Windows Security' dialog window

Specify #Persistent in the script for permanently running.
by kanat
29 Dec 2016, 05:57
Forum: Ask for Help (v1)
Topic: Close specific 'Windows Security' dialog window
Replies: 7
Views: 2399

Re: Close specific 'Windows Security' dialog window

Try using this #NoEnv #SingleInstance force HookProcAdr := RegisterCallback( "HookProc", "F" ), hWinEventHook := SetWinEventHook( 0x3, 0x3, 0, HookProcAdr, 0, 0, 0 ) HookProc( hWinEventHook, Event, hWnd, idObject, idChild, dwEventThread, dwmsEventTime ){ If Event { WinGetClass, Class , A WinGetTitle...
by kanat
10 Feb 2016, 06:06
Forum: Ask for Help (v1)
Topic: adding {Enter} to a function key Topic is solved
Replies: 1
Views: 1019

Re: adding {Enter} to a function key Topic is solved

Try:

Code: Select all

$F10:: send,{f10}{Enter}
by kanat
05 Feb 2016, 03:33
Forum: Ask for Help (v1)
Topic: Possible bug. Weird Tool Window anomaly.
Replies: 7
Views: 2204

Re: Possible bug. Weird Tool Window anomaly.

On Window 7 with aero-themes option +E0x200 can make the "ToolWindow" have a title.
Example:

Code: Select all

Gui, +ToolWindow +E0x200
Gui, Font, s16
Gui,Add, Text, , This is a client area
Gui, Show, AutoSize, This is a title
Image
by kanat
31 Dec 2015, 09:10
Forum: Свободное общение
Topic: Новый Год 2016
Replies: 2
Views: 16968

Re: Новый Год 2016

Всех с Новым 2016 годом!!!!!!!!!!
AHK - 2016]
by kanat
31 Dec 2015, 09:05
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4898
Views: 1413898

Re: « What's on your mind? » Topic is solved

Hey, guys!
Happy new yeaRRRRR!!!!!!!
AHK - 2016]
by kanat
10 Jun 2015, 08:35
Forum: Wish List
Topic: Small changes for AU3_Spy
Replies: 0
Views: 1251

Small changes for AU3_Spy

New “Au3_spy.exe” (which got an Autohotkey compiled script), when launching, throws the warning “Note: The hotkey #A will not be active because it does not exist in the current keyboard layout” when the keyboard layout is of non-latin font language. That disables capability to freeze the display for...
by kanat
01 Jun 2015, 00:13
Forum: Ask for Help (v1)
Topic: How to copy automatically what i type in a specific feild?
Replies: 1
Views: 1232

Re: How to copy automatically what i type in a specific feild?

Try this code:

Code: Select all

F1::
Input, VARIABLE, v, {Space}
Clipboard := VARIABLE
Return
by kanat
27 May 2015, 08:52
Forum: Ask for Help (v1)
Topic: [SOLVED] Animate a transparent window without caption
Replies: 3
Views: 1844

Re: Animate a transparent window without caption

Try this: Gui, +LastFound +HwndhGui WinSet, Transparent, 150 Gui, Add, Text, w200 h100, TEST TEST TEST Gui, -Caption Gui, Show Sleep, 1000 DllCall( "AnimateWindow", Ptr,hGui, Int,200, UInt,0x90000 ) Sleep, 1000 DllCall( "AnimateWindow", Ptr,hGui, Int,200, UInt,0xA0000 ) winlong := DllCall("GetWindow...
by kanat
26 May 2015, 08:58
Forum: Ask for Help (v1)
Topic: Calling a function in GUI
Replies: 10
Views: 5206

Re: Calling a function in GUI

I renamed the function to "myfunc".
The script does not see the file "myfunc.ahk" in the library folder and throws the error "Target label does not exist".
by kanat
26 May 2015, 07:44
Forum: Ask for Help (v1)
Topic: Calling a function in GUI
Replies: 10
Views: 5206

Re: Calling a function in GUI

"func" definition:

Code: Select all

func(){
MsgBox Ok
}
by kanat
26 May 2015, 07:22
Forum: Ask for Help (v1)
Topic: Calling a function in GUI
Replies: 10
Views: 5206

Re: Calling a function in GUI

#Warn clarifies nothing. No new warnings.
by kanat
26 May 2015, 06:39
Forum: Ask for Help (v1)
Topic: Calling a function in GUI
Replies: 10
Views: 5206

Calling a function in GUI

My script has a gui control as a button. I try to launch a function by gui control clicking.That is possinle only if a function definition belongs to the current script or calling from the external file using #Include . In other cases, referring by an exact function name to file in the local, user o...
by kanat
13 May 2015, 00:31
Forum: Ask for Help (v1)
Topic: Problem with ifnotexist [win7, 64 bit, AHK 1.1.22.00]
Replies: 15
Views: 4685

Re: Problem with ifnotexist [win7, 64 bit, AHK 1.1.22.00]

Apparently, var "path" is empty. You could run Explorer.exe, because it is located in Windows system dir.

Go to advanced search