Search found 212 matches

by samardac
26 Dec 2014, 03:33
Forum: AHK Studio
Topic: AHK Studio
Replies: 1179
Views: 632668

Re: AHK Studio

Looking forward to have this feature, Working in SciTE4Autohotkey I use to see labels bold. This way they stand out form the crowd :)
by samardac
26 Dec 2014, 03:16
Forum: Scripts and Functions (v1)
Topic: Scite4AutoHotkey - Run from include file
Replies: 6
Views: 3845

Re: Scite4AutoHotkey - Run from include file

lexikos, thank you working...
Where to get help Docs about what is it SciTEDirectory.properties and per-project properties?
by samardac
26 Dec 2014, 03:01
Forum: AHK Studio
Topic: AHK Studio
Replies: 1179
Views: 632668

Re: AHK Studio

How to make Labels Bold?
by samardac
25 Dec 2014, 03:09
Forum: Scripts and Functions (v1)
Topic: Scite4AutoHotkey - Run from include file
Replies: 6
Views: 3845

Re: Scite4AutoHotkey - Run from include file

Lexikos, How to override that those commands, I do not know syntaxes, I tried but have no result. Also SciTEDirectory.properties where you get it from? When I open "per-project properties" in the Options menu it offers to save this empty file. Then I copy and past in it content from platforms.proper...
by samardac
12 Dec 2014, 09:58
Forum: Ask for Help (v1)
Topic: Click window
Replies: 1
Views: 810

Click window

Hallo,
I have one window, I need when I left mouse click on this window msgbox apears.
How would you program this?
Thank you.
by samardac
30 Nov 2014, 15:37
Forum: Ask for Help (v1)
Topic: Activate window and make it hidden instantly
Replies: 11
Views: 4922

Re: Activate window and make it hidden instantly

HotKeyIt wrote:In such case you can use:

Code: Select all

Run notepad,,HIDE,PID
Sleep 2000
WinShow ahk_class Notepad ahk_pid %PID%
Yep, I know, Bad example :) I need it not for Run but mostlu for WaitWinActive or WinActivate. Mostly to run and hide windows inside other applications, like Import, Load or Save dialogs.
by samardac
30 Nov 2014, 15:30
Forum: Ask for Help (v1)
Topic: Activate window and make it hidden instantly
Replies: 11
Views: 4922

Re: Activate window and make it hidden instantly

HotKeyIt wrote:There is no way to hide a window such as SaveAs dialogue before it becomes active as far as I know.
You can try using a ShellHook, as far as I remember this is the fastest way http://ahkscript.org/boards/viewtopic.php?f=5&t=5220

Thanks I'll try.
by samardac
30 Nov 2014, 15:29
Forum: Ask for Help (v1)
Topic: Activate window and make it hidden instantly
Replies: 11
Views: 4922

Re: Activate window and make it hidden instantly

Just use this script and you will see that notepad apears for second.

#SingleInstance force
#WinActivateForce
SetTitleMatchMode 2
DetectHiddenWindows, On
SetBatchLines -1
SetWinDelay, -1


Run notepad
WinWaitActive, ahk_class Notepad
WinHide ahk_class Notepad


^!z::
WinShow ahk_class Notepad
by samardac
30 Nov 2014, 15:26
Forum: Ask for Help (v1)
Topic: Activate window and make it hidden instantly
Replies: 11
Views: 4922

Re: Activate window and make it hidden instantly

HotKeyIt wrote:I see, in that case you can try SetWinDelay, -1
I tried it but it does not work result is the same.
Any other ideas?
by samardac
30 Nov 2014, 15:11
Forum: Ask for Help (v1)
Topic: Activate window and make it hidden instantly
Replies: 11
Views: 4922

Re: Activate window and make it hidden instantly

I forget to say that this problem presents when hide window for the first time. There is no problems if window was already hidden. It activates and nobody can see it. So, for example I run "Save As" dialog with ahk, in some application, I need it to be absolutley hidden so people have no idea that i...
by samardac
30 Nov 2014, 15:00
Forum: Ask for Help (v1)
Topic: Activate window and make it hidden instantly
Replies: 11
Views: 4922

Re: Activate window and make it hidden instantly

HotKeyIt, it works exatly as I described in my first post and this is problem. Before window hides it apears for a moment, so everybody can see that some window apears then deaspers. I think it is becouse after command like WinActivate or WinWaitActive there is some little pause that is needed to dr...
by samardac
30 Nov 2014, 13:43
Forum: Ask for Help (v1)
Topic: Activate window and make it hidden instantly
Replies: 11
Views: 4922

Activate window and make it hidden instantly

Hi, how to activate window and make it hidden instantly?
Now if I use for example Winactivate and then WinHide window appears for second and then deasapears.
I need it to be activated already hidden. I do not need window to apear on second.
Just activate it and nobody can see that it was activated.

Go to advanced search