Search found 93 matches

by Bugz000
25 Sep 2022, 20:17
Forum: Ask for Help (v1)
Topic: chrome.ahk event callback not working?
Replies: 9
Views: 895

Re: chrome.ahk pull console.log() back to ahk?

image.png
image.png (75.18 KiB) Viewed 731 times
my example utilises these, taken from the event callback example within geekdudes example repo... https://raw.githubusercontent.com/G33kDude/Chrome.ahk/master/Examples/EventCallbacks.ahk

my question was very simple, why it was not working
by Bugz000
25 Sep 2022, 19:08
Forum: Ask for Help (v1)
Topic: chrome.ahk event callback not working?
Replies: 9
Views: 895

Re: chrome.ahk pull console.log() back to ahk?

no, it does not help i'm afraid, you're missing out literally all context, you've thrown a line of code and said "i use this" - that's fantastic but is it getting the return of a function call? a variable? i don't understand what you're telling me whatsoever or how it relates to using the callback f...
by Bugz000
24 Sep 2022, 22:17
Forum: Ask for Help (v1)
Topic: chrome.ahk event callback not working?
Replies: 9
Views: 895

Re: chrome.ahk pull console.log() back to ahk?

Xtra wrote:
24 Sep 2022, 21:58

Code: Select all

msgbox % var := Page.evaluate(js).Value
?
could you possibly elaborate please?
by Bugz000
24 Sep 2022, 20:42
Forum: Ask for Help (v1)
Topic: chrome.ahk event callback not working?
Replies: 9
Views: 895

chrome.ahk event callback not working?

#singleinstance, force setbatchlines -1 fileread, js, code.js fileread, fjson, json.json json := new json() arr := json.load(fjson) chromepath:="C:\Program Files\Google\Chrome\Application\chrome.exe" profilepath := A_scriptdir "/chrom22" FileCreateDir, chrom22 Chrome := new chrome(profilePath,"http...
by Bugz000
19 Jul 2022, 15:12
Forum: Scripts and Functions (v1)
Topic: Search for WhatsApp tab in Firefox...
Replies: 6
Views: 948

Re: Search for WhatsApp tab in Firefox...

I WAS searching for a way to find whatsapp while working in subtab of firefox browser i think this code might be useful to others also if you have better way do share... #SingleInstance force SetTitleMatchMode,2 SetTitleMatchMode, fast #WinActivateForce ^+W:: IfWinExist, WhatsApp { WinActivate What...
by Bugz000
14 Jun 2022, 14:07
Forum: KeySharp
Topic: Keysharp - the resurrection of IronAHK
Replies: 216
Views: 94032

Re: Keysharp - the resurrection of IronAHK

mfeemster wrote:
08 Jun 2022, 15:05
I can be found in the Keysharp room on Discord.
i'll just keep track here :)
by Bugz000
04 Jun 2022, 01:54
Forum: KeySharp
Topic: Keysharp - the resurrection of IronAHK
Replies: 216
Views: 94032

Re: Keysharp - the resurrection of IronAHK

mfeemster you're doing fantastic work! i'm slowly working toward moving to linux, i've got a laptop i'm setting up as i like as a testbed seeing if i can get all my most used programs working on there... one was DFX, turns out viper4linux is even better... the next was ShareX - turns out to be many...
by Bugz000
14 Mar 2022, 13:02
Forum: Wish List
Topic: disable automatic array sorting
Replies: 1
Views: 920

Re: disable automatic array sorting

viewtopic.php?f=76&t=77492

may have the answers for you
by Bugz000
17 Nov 2021, 18:50
Forum: Ask for Help (v1)
Topic: If Else Statement for Program-files vs x86 variant Topic is solved
Replies: 8
Views: 1140

Re: If Else Statement for Program-files vs x86 variant Topic is solved

I apologize for coming back to this thread. The problem is I don't have the way I was able to make this work using FileExist(). I haven't returned to it until the time came and was left stumped :think: perhaps some context on the nature of the problem? What ways could I use FileExist() to begin a r...
by Bugz000
18 Oct 2021, 14:29
Forum: Off-topic Discussion
Topic: AutoHotkey promoted on YouTube …
Replies: 2
Views: 1698

Re: AutoHotkey promoted on YouTube …

i just love how diverse Autohotkey is, the ammount of uses it has is truly endless! <3 and that's special... not everything is endless, most things come to an end, but so many are assisted by autohotkey along the way
by Bugz000
10 Mar 2021, 02:58
Forum: Ask for Help (v1)
Topic: recursive class invoking across all instances Topic is solved
Replies: 1
Views: 239

Re: recursive class invoking across all instances Topic is solved

Code: Select all

setbatchlines -1
#singleinstance, force

test := new recursion(1)
test.box()
return

Class recursion
{
	__new(recur) {
		if (recur < 15)
			this.wat := new recursion(recur+1)
	}
	
	box() {
		if (this.wat)
			this.wat.box()
		soundbeep 100
	}
}
by Bugz000
10 Mar 2021, 01:07
Forum: Ask for Help (v1)
Topic: recursive class invoking across all instances Topic is solved
Replies: 1
Views: 239

recursive class invoking across all instances Topic is solved

test := new recursion(1) test.box() return Class recursion { __new(recur) { if (recur < 15) wat := new recursion(recur+1) } box() { msgbox % recur } } is there a way to get test.box() to invoke box on all sub-class instances that contain box? i'm not sure subclasses can vary greatly, the idea being...
by Bugz000
10 Mar 2021, 00:51
Forum: Ask for Help (v1)
Topic: colored listview headers Topic is solved
Replies: 23
Views: 5629

Re: colored listview headers Topic is solved

i come back and you guys have all been smashing out these code snippets... amazing work guys! <3 thankyou i will certainly be using these in the future :D these will go on to help many folk, colored headers are a must, along with colored cells/rows/columns (which all already exist)
by Bugz000
01 Mar 2021, 11:37
Forum: Ask for Help (v1)
Topic: Class Structure - am i doing this right?
Replies: 0
Views: 239

Class Structure - am i doing this right?

after much deliberation and questioning of sanity on this project, i have finally settled into what i think is the correct direction, but i have seeds of doubt in my mind as to whether i'm structuring this correctly, and it's much easier to fix NOW than when it's 2000+ lines basically this script is...
by Bugz000
01 Mar 2021, 11:27
Forum: Ask for Help (v1)
Topic: colored listview headers Topic is solved
Replies: 23
Views: 5629

Re: colored listview headers Topic is solved

Hi, after some testing it seems that CDDS_ITEMPREPAINT notifications are not received by the monitor function. I don't know why, maybe because the header control is'nt an AHK GUI control? hey you're the one who did the original code! it does appear to be either impossible, or incredibly difficult t...
by Bugz000
24 Feb 2021, 13:47
Forum: Ask for Help (v1)
Topic: colored listview headers Topic is solved
Replies: 23
Views: 5629

colored listview headers Topic is solved

i am trying to get colored listview headers the "proper" way, by intercepting the draw message and sending customdraw to plug in my alterations and move forward from there i have some resources: styled headers: https://www.dreamincode.net/forums/topic/283055-masm-custom-draw-listview-and-header/ hea...
by Bugz000
28 Jan 2021, 12:53
Forum: Scripts and Functions (v1)
Topic: [Script] Quick Picto Viewer v5+
Replies: 260
Views: 83924

Re: [Script] Quick Picto Viewer and Fast Slideshow creator

oh RoboD
when i think of you
i can only see
the morning dew

with eyes alight
with passion in cinder
you always excite
with your profile on tinder

quick picto viewer
fast slideshow creator
the ultimate wooer
of AHK vindicator

I leave you now
with words of my love
i take a bow
and shoot a dove
by Bugz000
15 Jan 2021, 20:58
Forum: Scripts and Functions (v1)
Topic: Text Toolbox 1.1
Replies: 13
Views: 6095

Re: Text Toolbox 1.1

The chickadees are a group of North American birds in the tit family included in the genus Poecile. Species found in North America are referred to as chickadees, while other species in the genus are called tits. They are small-sized birds overall, usually having the crown of the head and throat pat...

Go to advanced search