Search found 1291 matches

by Blackholyman
08 Feb 2018, 08:49
Forum: Ask for Help (v1)
Topic: Click Elements by ID Topic is solved
Replies: 32
Views: 14782

Re: Click Elements by ID Topic is solved

Lots of info about this, from Full tutorials to short easy how to videos https://autohotkey.com/board/topic/47052-basic-webpage-controls-with-javascript-com-tutorial/ https://autohotkey.com/board/topic/64563-basic-ahk-v11-com-tutorial-for-webpages/ https://youtu.be/dOSnBJGoe_Q https://autohotkey.com...
by Blackholyman
04 Feb 2018, 06:30
Forum: Forum Issues
Topic: Forum really really slow...
Replies: 67
Views: 31562

Re: Forum really really slow...

:(
by Blackholyman
17 Jan 2018, 09:03
Forum: Ask for Help (v1)
Topic: IE COM Dropdown select
Replies: 3
Views: 902

Re: IE COM Dropdown select

then it is not the same element,

with the f12 tool try and have highlight the element that you are hovering over to see if that can help you, meny websites today use other ways of building things like dropdown to make that work or look better, but it can make it harder to work with programcally
by Blackholyman
17 Jan 2018, 09:00
Forum: Ask for Help (v1)
Topic: Script to extract data from Excel and paste in App. App begins to act v strange
Replies: 3
Views: 818

Re: Script to extract data from Excel and paste in App. App begins to act v strange

does the windowsspy return any info about the java apps dialog box's? this can be of help as it can let you use winwait or other windows commands like maybe even controlsend, other thing that may be giving you issues is that the second box may need admin rights to intract with...
by Blackholyman
17 Jan 2018, 08:50
Forum: Ask for Help (v1)
Topic: IE COM Dropdown select
Replies: 3
Views: 902

Re: IE COM Dropdown select

that select element seems to not be visable as it has the display: none; style

so are you sure that this is the element that you intract with manully? and not some other element that is then setting this with js code?
by Blackholyman
17 Jan 2018, 06:50
Forum: Ask for Help (v1)
Topic: Timed screenshot in Chrome
Replies: 3
Views: 1007

Re: Timed screenshot in Chrome

yeah sure.

on a side note: if you tell us more about what you are using this for or your end goal, we may be able do help with better or simpler ways of doing the same thing!
by Blackholyman
16 Jan 2018, 09:10
Forum: Ask for Help (v1)
Topic: Total newbie: Please help fix my script - paste without formatting
Replies: 1
Views: 465

Re: Total newbie: Please help fix my script - paste without formatting

Code: Select all

Tab::^c
Lshift::
clipboard := clipboard
send ^v
Return
by Blackholyman
10 Jan 2018, 01:04
Forum: Ask for Help (v1)
Topic: LButton Hotkeys - Block Clicks?
Replies: 3
Views: 693

Re: LButton Hotkeys - Block Clicks?

Code: Select all

#IfWinActive, ahk_exe chrome.exe
~LButton::
sleep 300
MsgBox, , Test, Test
Return
by Blackholyman
09 Jan 2018, 05:01
Forum: Ask for Help (v1)
Topic: Saving contents of an excel cell Topic is solved
Replies: 2
Views: 832

Re: Saving contents of an excel cell Topic is solved

well when you use COM you sometimes get stuff that the user does not normally see or even know about... when grabing data from a cell in excel you have multiple options i'll name 3 .Value gives you the same as .Value2 except if the cell was formatted as currency or date then it gives you a something...
by Blackholyman
05 Jan 2018, 14:26
Forum: Tutorials (v1)
Topic: Neural Network basics - Artificial Intelligence using AutoHotkey!
Replies: 74
Views: 73600

Re: Neural Network basics

Nice write up enjoyed reading it, I am a little unsure if the example is training a small net as i did read that a few times or if it is only a single neuron? After my first read I belive it to be just one neuron, am I wrong?
by Blackholyman
21 Dec 2017, 09:01
Forum: Ask for Help (v1)
Topic: Pasting a string in three parts.
Replies: 3
Views: 781

Re: Pasting a string in three parts.

one of meny ways

Code: Select all

f2::
string := Clipboard
Loop, parse, string
{
	send %A_LoopField%
	if !mod(A_index, 4)
		send %A_tab%
}
return
by Blackholyman
13 Dec 2017, 01:28
Forum: General Discussion
Topic: A Slack.com organisation for ahkscript
Replies: 33
Views: 9549

Re: A Slack.com organisation for ahkscript

well seems like you need an @ahkscript.org email to use that sign up link
by Blackholyman
12 Dec 2017, 07:28
Forum: Ask for Help (v1)
Topic: Variable as prefix for multiple hotkeys? Topic is solved
Replies: 2
Views: 717

Re: Variable as prefix for multiple hotkeys? Topic is solved

Code: Select all

Prefix1 = RCtrl

Hotkey, %Prefix1% & a, test_a
Hotkey, %Prefix1% & b, test_b
Return

test_a:
MsgBox, test_a works
Return

test_B:
MsgBox, test_b never works
Return
by Blackholyman
30 Nov 2017, 06:32
Forum: Ask for Help (v1)
Topic: Entering Data In Website Fields
Replies: 2
Views: 1127

Re: Entering Data In Website Fields

ComObjCreate and send

is not much to go by... can you tell us more maybe even show some of your code... even more helpful is a link to the website or one with similar fields
by Blackholyman
29 Nov 2017, 08:45
Forum: Ask for Help (v1)
Topic: COM: Works only when I change function name
Replies: 10
Views: 1935

Re: COM: Works only when I change function name

it depends but you can try something like this

Code: Select all

IELoad(wb)
wb.document.GetElementByID("out").click()
IELoad(wb)
wb.quit
by Blackholyman
22 Nov 2017, 10:44
Forum: Ask for Help (v1)
Topic: COM: Works only when I change function name
Replies: 10
Views: 1935

Re: COM: Works only when I change function name

Well it did make the function local

For your other issue you need to give the browser time to do the click before you ask it to quit
by Blackholyman
22 Nov 2017, 05:12
Forum: About This Community
Topic: Rule Poll
Replies: 59
Views: 93032

Re: Rule Poll

just at this moment when looking in the "ask for help" forum and the "game" sub-forum a few stats are from frist 20 topics of both normal ask for help and game subforum: normal: 20 topics with 73 replys with 1880 Views Game: 20 topics with 65 replys with 3354 Views This was a way to little sample bu...
by Blackholyman
20 Nov 2017, 11:14
Forum: Ask for Help (v1)
Topic: Getting href data, why is it so hard? Topic is solved
Replies: 9
Views: 4069

Re: Getting href data, why is it so hard? Topic is solved

Georgie Munteer wrote:
The .href has not worked in years :-( doubt you will find any modern website that .href will give you anything but errors :headwall:
Works just fine

Go to advanced search