Hello again,
as far as I know I must change some Registry settings. Maybe there is a more convenient way? All *.html files should be opend in the new associated browser via the script.
Any hints are highly appreciated!
Many thanks and greetings
hotkeyguy
Search found 149 matches
- 31 May 2020, 04:53
- Forum: Ask For Help
- Topic: Default browser: Temporary change to other one
- Replies: 1
- Views: 149
- 16 Apr 2020, 03:44
- Forum: Ask For Help
- Topic: AHK GUI: -Caption +AlwaysOnTop +ToolWindow - minimize/maximize/hide state
- Replies: 4
- Views: 426
AHK GUI: -Caption +AlwaysOnTop +ToolWindow - minimize/maximize/hide state
Hello again,
how can I determine whether such an GUI is minimized/maximized/hidden? I have different (named) GUIs, and their handles stored in global variables.
Any hints are highly appreciated!
Many thanks and greetings
hotkeyguy
how can I determine whether such an GUI is minimized/maximized/hidden? I have different (named) GUIs, and their handles stored in global variables.
Any hints are highly appreciated!
Many thanks and greetings
hotkeyguy
- 22 Nov 2019, 07:25
- Forum: Ask For Help
- Topic: .Push( Object2* ): Adding an object as array of values to an object
- Replies: 8
- Views: 944
.Push( Object2* ): Adding an object as array of values to an object
Hello, two objects used as arrays, one added as array of values to the other object: Object1 := { 1: "a", 2: "b", 3: "c" } Object2 := { 4: "d", 5: "e", 6: "f" } Object1.Push( Object2* ) The result is: Object[1] = "a" Object[2] = "b" Object[3] = "c" Object[7] = "d" ; expected [4] Object[8] = "e" ; ex...
- 21 Nov 2019, 13:50
- Forum: Ask For Help
- Topic: [Solved] AutoHotkeyA32.exe, OutputDebug, DebugView++: Messages from source code
- Replies: 8
- Views: 785
Re: [Solved] AutoHotkeyA32.exe, OutputDebug, DebugView++: Messages from source code
Hello joefiesta,
Greetings
hotkeyguy
Maybe here: GitHub - CobaltFusion/DebugViewPP: DebugView++... More examplesIs there any HELP for debugview++ anywhere?
See Debugging Clients | AutoHotkeyI guess I need to learn about debug clients.
Greetings
hotkeyguy
- 21 Nov 2019, 13:17
- Forum: Ask For Help
- Topic: [Solved] AutoHotkeyA32.exe, OutputDebug, DebugView++: Messages from source code
- Replies: 8
- Views: 785
Re: [Solved] AutoHotkeyA32.exe, OutputDebug, DebugView++: Messages from source code
Hello joefiesta, don't use the /debug parameter. DebugView++ is not a debug client, you can only show OutputDebug messages. These messages aren't depending from any debug client. On the View / Filter Settings dialog [F5], Process tab, add a new filter like AutoHotkeyA32/Simple/Include. Greetings hot...
- 21 Nov 2019, 12:13
- Forum: Ask For Help
- Topic: [Solved] AutoHotkeyA32.exe, OutputDebug, DebugView++: Messages from source code
- Replies: 8
- Views: 785
Re: AutoHotkeyA32.exe, OutputDebug, DebugView++: Messages from source code
Hello joefiesta, On that page, BOTH the links to download this product ARE DEAD. Is the product still available? Yep, that's correct. You can find the latest version here: GitHub - CobaltFusion/DebugViewPP: DebugView++... I'm using DebugView++ since many years. Really a great tool! but (1) those mes...
- 21 Nov 2019, 10:21
- Forum: Ask For Help
- Topic: [Solved] AutoHotkeyA32.exe, OutputDebug, DebugView++: Messages from source code
- Replies: 8
- Views: 785
[Solved] AutoHotkeyA32.exe, OutputDebug, DebugView++: Messages from source code
Hello, I'm using DebugView++ for displaying OutputDebug messages. I assume the following messages are from the source code (version 1.1.30.00): RefCountedObject Destroy: ProfileInfoStatus addr 0xb99168 DXGI WARNING: Process is terminating. Using simple reporting. Please call ReportLiveObjects() at r...
- 12 Nov 2019, 09:25
- Forum: Ask For Help
- Topic: BoundFunc Object, .Bind() parameter variadic syntax: Preserve function paramter type
- Replies: 3
- Views: 487
BoundFunc Object, .Bind() parameter variadic syntax: Preserve function paramter type
Hello, suppose I have a string like (that's how I get the function parameters from my regex) sParams := "true, 123, ""Hello"" " which consists of an boolean, integer and string value. After parsing that string I get an array of parameter values: aParams := [] Loop, Parse, sParams, `, , %A_Space% { s...
- 11 Nov 2019, 13:21
- Forum: Ask For Help
- Topic: Loop, Read, InputFile ignores last line in file when empty
- Replies: 1
- Views: 235
Loop, Read, InputFile ignores last line in file when empty
Hello,
yep, any way to avoid that? In my case that's a significant difference (files are not equal): 2 lines vs. 3 lines:
Many thanks and greetings
hotkeyguy
yep, any way to avoid that? In my case that's a significant difference (files are not equal):
Code: Select all
1
2
Code: Select all
1
2
Many thanks and greetings
hotkeyguy
- 10 Nov 2019, 16:32
- Forum: Ask For Help
- Topic: Error: Missing close-quote "...`r`n ;"
- Replies: 4
- Views: 769
Re: Error: Missing close-quote "...`r`n ;"
Yep swapfag,
but the semicolon is used inside a string declaration "...".
That works:
That not:
Many thanks and greetings
hotkeyguy
but the semicolon is used inside a string declaration "...".
That works:
Code: Select all
sTest := ";"
Code: Select all
sTest := " ;"
Many thanks and greetings
hotkeyguy
- 10 Nov 2019, 16:11
- Forum: Ask For Help
- Topic: Error: Missing close-quote "...`r`n ;"
- Replies: 4
- Views: 769
Error: Missing close-quote "...`r`n ;"
Hello again,
what is wrong here (missing close-quote):
When the last space is removed no problems:
Escaping the semicolon and it works! But why is that neceassary?
Many thanks and greetings
hotkeyguy
what is wrong here (missing close-quote):
Code: Select all
sTest := "`r`n `r`n ;"
Code: Select all
sTest := "`r`n `r`n;"
Code: Select all
sTest := "`r`n `r`n `;"
Many thanks and greetings
hotkeyguy
- 10 Nov 2019, 14:18
- Forum: Ask For Help
- Topic: Multiline string: ) If a closing parenthesis appears in the continuation section's options...
- Replies: 1
- Views: 347
Multiline string: ) If a closing parenthesis appears in the continuation section's options...
Hello,
yep, how does it work? E. g. free-spacing regex pattern:
Many thanks and greetings
hotkeyguy
yep, how does it work? E. g. free-spacing regex pattern:
Code: Select all
sRegexPattern =
(
(
...
)
|
(
...
)
)
Many thanks and greetings
hotkeyguy
- 09 Nov 2019, 11:11
- Forum: Ask For Help
- Topic: Addresses of array elements: Always fixed?
- Replies: 1
- Views: 344
Addresses of array elements: Always fixed?
Hello, suppose I have a simple string array with ten elements, [1]...[10]. Are the addresses to the content of these elements always fixed, even when I add/remove elements? The more complex background of this question is that I have an array of different types. For accessing certain types of element...
- 01 Nov 2019, 16:29
- Forum: Ask For Help
- Topic: Webbrowser (Shell.Explorer): Adding item via AHK to an JS-Array of objects
- Replies: 2
- Views: 623
Webbrowser (Shell.Explorer): Adding item via AHK to an JS-Array of objects
Hello, I have a crazy problem. When I try to add an item with Object.push( AHK_NewObject ) to an existing JS-Array of objects, the added object is empty. JS-Array of objects in my <script>-section like: var JS_ArrayOfObjects = [ { id: 1, color: "green" } , { id: 2, color: "yellow"} ] ; AHK-code: AHK...
- 01 Nov 2019, 16:06
- Forum: Ask For Help
- Topic: Webbrowser (Shell.Explorer): Debugger
- Replies: 0
- Views: 853
Webbrowser (Shell.Explorer): Debugger
Hello again,
is there any way to work with the webbrowser debugger?
Many thanks and greetings
hotkeyguy
is there any way to work with the webbrowser debugger?
Many thanks and greetings
hotkeyguy
- 09 Oct 2019, 08:51
- Forum: Scripts and Functions
- Topic: [Class] ImageButton - 1.5.00.00 - 20201230
- Replies: 140
- Views: 59537
Re: [Class] ImageButton
Hello just me,
many thanks for your modified class script! With your code my script is > 50% faster (today > 2s org. vs. < 1s mod.). That's great, really!
Greetings
hotkeyguy
many thanks for your modified class script! With your code my script is > 50% faster (today > 2s org. vs. < 1s mod.). That's great, really!
Greetings
hotkeyguy
- 07 Oct 2019, 14:55
- Forum: Ask For Help
- Topic: Webbrowser and vertical scrollbar: Not shown with AutoHotkeyA32.exe (correct) but shown with AutoHotkey.exe
- Replies: 0
- Views: 381
Webbrowser and vertical scrollbar: Not shown with AutoHotkeyA32.exe (correct) but shown with AutoHotkey.exe
Hello, I have a really crazy problem. Unfortunately I can't reproduce it with a simple demo code snippet. My GUI consits of some AHK controls and mainly an Webbrowser (Shell.Explorer) ActiveX component with just a matrix of buttons. When I run my script with AutoHotkey.exe an unnessary vertcial scro...
- 28 Sep 2019, 14:23
- Forum: Scripts and Functions
- Topic: [Class] ImageButton - 1.5.00.00 - 20201230
- Replies: 140
- Views: 59537
Re: [Class] ImageButton
Hello,
modifying 60 buttons in my GUI lasts < 3s. Is there a way to accelerate that a little bit (I don't expect miracles)? I tried
GuiControl, -Redraw, %g_hdGUI_Main%
without success, every single button is still redrawn.
Many thanks and greetings
hotkeyguy
modifying 60 buttons in my GUI lasts < 3s. Is there a way to accelerate that a little bit (I don't expect miracles)? I tried
GuiControl, -Redraw, %g_hdGUI_Main%
without success, every single button is still redrawn.
Many thanks and greetings
hotkeyguy
- 25 Sep 2019, 12:00
- Forum: Ask For Help
- Topic: Associative Arrays and OutputVar/InputVar Topic is solved
- Replies: 1
- Views: 325
Associative Arrays and OutputVar/InputVar Topic is solved
Hello, is it possible to assign/retrieve an value to/from an Associative Array as OutputVar/InputVar, e. g. IniRead, OutputVar , Filename, Section, Key [, Default] IniRead, g_oTracking.Process.Name , ... results in an error The following variable name contains an illegal character: "g_oTracking.Proc...
- 25 Sep 2019, 06:02
- Forum: Ask For Help
- Topic: Hook for title(bar) changes, multiple tabs editor
- Replies: 0
- Views: 356
Hook for title(bar) changes, multiple tabs editor
Hello, is there a way to use an hook to detect changes in the title(bar) of editors with multiple tabs open, like Notepad++, Scintilla and others? I want to avoid using a (nasty) timer! I tried ObjectNameChange (thanks Lexikos for this function and of course Frosti for AHK-Rare) without success. Man...