Search found 21 matches

by S0L
18 May 2019, 05:02
Forum: Ask for Help (v1)
Topic: Message sent when clicking on taskbar to minimze window
Replies: 4
Views: 932

Re: Message sent when clicking on taskbar to minimze window

How about this then This minimizes all visible windows of this process SetWinDelay,0 SetBatchLines,0 WinGet,ID,List,ahk_exe sm18.exe Loop, %ID% { ID := ID%A_Index% WinMinimize,ahk_id %ID% } thanks for input, minimizing works great but have two issues when implementing the fix. if(!WinExist("ahk_cla...
by S0L
17 May 2019, 14:57
Forum: Ask for Help (v1)
Topic: Message sent when clicking on taskbar to minimze window
Replies: 4
Views: 932

Re: Message sent when clicking on taskbar to minimze window

Try adding ahk_exe sm18.exe after WinActivate and WinMinimize I have seen those two commands failing when what they are supposed to minimize or active is not specified in them even tho they are supposed to execute that command to the last found window specified in a line above them Also,I am not su...
by S0L
17 May 2019, 12:57
Forum: Ask for Help (v1)
Topic: Message sent when clicking on taskbar to minimze window
Replies: 4
Views: 932

Message sent when clicking on taskbar to minimze window

Hi. Have a problem with certain application regarding minimization to be exact application would only properly minimize when clicking on her icon on taskbar. Now my question is what message is sent to application window when clicking on taskbar and could I replicate it with send/post message? <!3:: ...
by S0L
25 Mar 2019, 13:36
Forum: Scripts and Functions (v1)
Topic: g_IntelliSense-everywhere
Replies: 58
Views: 24839

Re: g_IntelliSense-everywhere

... SL5 sorry to spoil first days after vacation :roll: but... have yet another question after playing with the script somewhat have realized that it wont insert content form the action lists and after changing active window it drops the message below. sorry I think it is fixed now (the Speak("Retu...
by S0L
25 Mar 2019, 08:24
Forum: Scripts and Functions (v1)
Topic: g_IntelliSense-everywhere
Replies: 58
Views: 24839

Re: g_IntelliSense-everywhere

In most recent version on github, problem occurs: "Class_SqliteDB.ahk cannot be opened" have attached image to the post. What could be the problem? thanks the file has just been addet Thanks for quick reply! Now i have another problem :lol: After starting the script two popups emerge but you can cl...
by S0L
25 Mar 2019, 06:07
Forum: Scripts and Functions (v1)
Topic: g_IntelliSense-everywhere
Replies: 58
Views: 24839

Re: g_IntelliSense-everywhere

In most recent version on github, problem occurs: "Class_SqliteDB.ahk cannot be opened" have attached image to the post. What could be the problem? thanks the file has just been addet Thanks for quick reply! Now i have another problem :lol: After starting the script two popups emerge but you can cl...
by S0L
25 Mar 2019, 04:28
Forum: Scripts and Functions (v1)
Topic: g_IntelliSense-everywhere
Replies: 58
Views: 24839

Re: g_IntelliSense-everywhere

In most recent version on github, problem occurs: "Class_SqliteDB.ahk cannot be opened" have attached image to the post.
What could be the problem?
by S0L
22 Oct 2018, 14:06
Forum: Scripts and Functions (v1)
Topic: g_IntelliSense-everywhere
Replies: 58
Views: 24839

Re: g_IntelliSense-everywhere

Example:

Code: Select all

if(activeClass == "SciTEWindow" ) 
   ActionListNEW := "_global"

Thanks, got it now.
by S0L
22 Oct 2018, 10:46
Forum: Scripts and Functions (v1)
Topic: g_IntelliSense-everywhere
Replies: 58
Views: 24839

Re: g_IntelliSense-everywhere

SL5 thanks for this wonderful script. Have read Q&A and watched "global IntelliSense everywhere examples windows autohotkey" video but still cannot answer myself two questions. 1. In the video between 09:25-09:45 you say that one file (ActionLists) can encompass many windows, could you elaborate how...
by S0L
23 May 2016, 18:14
Forum: Ask for Help (v1)
Topic: Restore 1. window from taskbar 2. from tray :)
Replies: 2
Views: 1103

Re: Restore 1. window from taskbar 2. from tray :)

Have you tried adding DetectHiddenWindows, On to the start of your script ? Have tried, but the problem is that the OneNote Navigator then uses (after restoring) >20% of CPU and there are numerous little windows that i cannot close, they are displayed after minimizing, after restoring the windows t...
by S0L
23 May 2016, 14:46
Forum: Ask for Help (v1)
Topic: Restore 1. window from taskbar 2. from tray :)
Replies: 2
Views: 1103

Restore 1. window from taskbar 2. from tray :)

Hi. Guys and girls i have a problem which i have not experienced before, the program in question is OneNote 2016 from MS and other support program called OneNote Navigator from onenotegem.com part of gem suite. The problem is that the MS OneNote nicely minimizes into taskbar but the OneNote Navigato...
by S0L
17 Feb 2016, 09:00
Forum: Gaming Help (v1)
Topic: How to activate hotkeys only if the game process is a child of steam process?
Replies: 0
Views: 882

How to activate hotkeys only if the game process is a child of steam process?

Guys and girls hi! Fellow member Lifeweaver helped me to complete this script, but one question still bugs me, how to limit hotkeys to certain process, or window or if it started as child of steam.exe process? You see i am running most of my games through steam application and the thing that i want ...
by S0L
17 Feb 2016, 08:51
Forum: Ask for Help (v1)
Topic: Taking screenshots in games
Replies: 2
Views: 953

Re: Taking screenshots in games

Hi SOL, Try out the, untested, code below: #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir ...
by S0L
31 Jan 2016, 16:17
Forum: Gaming Help (v1)
Topic: Screenshot every frame?
Replies: 6
Views: 3124

Re: Screenshot every frame?

ahk has absolutely no relation to your game (or any game). it has no idea what FPS your game is running at (or any game). That's for you to somehow figure out. Once you figure out how to detect that, you need to update the "Period" in the "SetTimer, Label, >>>Period<<<" command to the desired fps. ...
by S0L
31 Jan 2016, 09:36
Forum: Gaming Help (v1)
Topic: Screenshot every frame?
Replies: 6
Views: 3124

Re: Screenshot every frame?

1 second = 1000ms if your game is running 60fps (frames per SECOND): 1000/60 = 16.66ms. you'll need to take a screenshot every 16-17ms. but ahk has an accuracy of about 15ms for timers/sleep. so you'll basically get a screenshot every 15-30ms (60-30fps). ps: you never define a time for SetTimer, SC...
by S0L
30 Jan 2016, 10:07
Forum: Gaming Help (v1)
Topic: Screenshot every frame?
Replies: 6
Views: 3124

Re: Screenshot every frame?

evilC wrote:I am not seeing why your first example is not what you want.
What is wrong with it?
EvilC thanks for the answer, sorry i am a bit lacking in this regard, so 1 frame is 1000 miliseconds or 1 second, if i understood you correctly?
by S0L
30 Jan 2016, 03:18
Forum: Gaming Help (v1)
Topic: Screenshot every frame?
Replies: 6
Views: 3124

Screenshot every frame?

Hi to all. I have searched for this but haven't found the answer to it. Is it possible to program ahk to take screenshot in game every frame? My inspiration comes from program called Dxtory who has that option. Currently i am using MSI afterburrner for taking screenshots and have successfully progra...
by S0L
29 Jan 2016, 15:47
Forum: Ask for Help (v1)
Topic: Taking screenshots in games
Replies: 2
Views: 953

Taking screenshots in games

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starti...
by S0L
19 Jul 2015, 12:52
Forum: Ask for Help (v1)
Topic: Restore two diferent windows at once/or minimize
Replies: 0
Views: 612

Restore two diferent windows at once/or minimize

Guys and girls hi! I have two Outlook 2013 windows open at startup, one is to do list the other calendar. Could this two windows be treated as one(grouped)? Example alt+tab and when selecting one, both would be shown? Or is there some other wayy of managing windows? Guys i am real noob at this so pl...
by S0L
22 Jan 2014, 20:43
Forum: Ask for Help (v1)
Topic: Control Send to menu of tray icon doesnt work anymore?
Replies: 2
Views: 1344

Re: Control Send to menu of tray icon doesnt work anymore?

On Win 8 x86 worked perfectly.

Go to advanced search