Search found 1291 matches

by Blackholyman
18 Nov 2017, 17:20
Forum: About This Community
Topic: Rule Poll
Replies: 59
Views: 107133

Re: Rule Poll

Why is this forum always trying to push users away, we are small, are those rules for the bettering of the autohotkey community or just a push to please the few that voice a negativ view on a select type of scripts... I’m more into seeing some data to back up those things that are Said to hurt Ahk, ...
by Blackholyman
17 Nov 2017, 10:21
Forum: Ask for Help (v1)
Topic: COM: Works only when I change function name
Replies: 10
Views: 1976

Re: COM: Works only when I change function name

Your IEload function is global so the wb variable inside the function is not safe
by Blackholyman
17 Nov 2017, 08:20
Forum: About This Community
Topic: Rule Poll
Replies: 59
Views: 107133

Re: Rule Poll

allow all but Malicious and harmfull stuff but maybe even that.

so allow everything else (including Hacking, Cheating, Botting, bypassing, even key loggers) as long as the intent of the script is open and clearly labeled...
by Blackholyman
16 Nov 2017, 01:46
Forum: Tips and Tricks (v1)
Topic: [ ComObj IE ] Get an element from it's displayed text.
Replies: 17
Views: 57352

Re: [ ComObj IE ] Get an element from it's displayed text.

However, I get an error at the following line: well you need to wait for the page to load something like this... wb := ComObjCreate( "InternetExplorer.Application" ) wb.Navigate("www.AutoHotkey.com") while wb.busy sleep 100 wb.Visible := True ClickElementWithThisText("FORUMS", wb.document, "div") r...
by Blackholyman
15 Nov 2017, 14:05
Forum: Ask for Help (v1)
Topic: ImageSearch not working on different displays
Replies: 14
Views: 5218

Re: ImageSearch not working on different displays

Use gimp or a good free online photo editor

Your welcome to upload Them and post link to Them here and i’ll check Them as well
by Blackholyman
15 Nov 2017, 08:19
Forum: Ask for Help (v1)
Topic: ImageSearch not working on different displays
Replies: 14
Views: 5218

Re: ImageSearch not working on different displays

try to grab a screen shot from both systems and compare them on the same system with photoshop

the idea is to overlay the two images and see if every thing but the colors are exactly the same or not
by Blackholyman
09 Nov 2017, 09:17
Forum: Ask for Help (v1)
Topic: COM error: 0x80010108
Replies: 5
Views: 1916

Re: COM error: 0x80010108

wb := ComObjCreate("{D5E8041D-920F-45e9-B8FB-B1DEB82C6E5E}") try that
by Blackholyman
09 Nov 2017, 09:06
Forum: Off-topic Discussion
Topic: Riding a Dead Horse
Replies: 6
Views: 2202

Re: Riding a Dead Horse

Why Our World Would End If Dead Horses Disappeared

What Experts Are Saying About Dead Horses

The 7 Best Ways to Utilize Dead Horses

8 Facts About Dead Horses Everyone Thinks are True

11 ways investing in dead Horses can make you a millionaire
by Blackholyman
09 Nov 2017, 08:31
Forum: Ask for Help (v1)
Topic: COM error: 0x80010108
Replies: 5
Views: 1916

Re: COM error: 0x80010108

let's assume your navigating from "about:Blank" to a "page on your intranet" or from a page on your companies intranet to i.e http://www.google.com you vil go from one security zone to another... this can make IE destory and recreate the COM object, you will not see this as it happens behind the sce...
by Blackholyman
09 Nov 2017, 05:50
Forum: Ask for Help (v1)
Topic: COM error: 0x80010108
Replies: 5
Views: 1916

Re: COM error: 0x80010108

does it also say something like: "The object invoked has disconnected from its clients"? if yes! then my take on it is that it is related to a change to a different trust zone. It could be that, at least i know of IE destroying one COM object and Creating a new object as a result of the security tha...
by Blackholyman
18 Oct 2017, 06:39
Forum: Ask for Help (v1)
Topic: help me reformat text file
Replies: 0
Views: 494

help me reformat text file

Hi I'm simply asking for input on how you'ed parse a text file what i'm trying to do is reformat the files text in to something that will be loadable in to an AHK Object, so the text format needed is open as long as i can use a ready build AHK Library or function like JSON or XML or whatever makes t...
by Blackholyman
13 Oct 2017, 13:20
Forum: Ask for Help (v1)
Topic: Autohotkey Tutor for hire (Excel/Firefox or IE)
Replies: 4
Views: 994

Re: Autohotkey Tutor (Excel/Firefox)

Well Im mostly for the ie way so i’ll point you to http://the-automator.com as i know Joe that runs that site has done ahk stuff with both Firefox and Excel before
by Blackholyman
13 Oct 2017, 12:21
Forum: Ask for Help (v1)
Topic: Autohotkey Tutor for hire (Excel/Firefox or IE)
Replies: 4
Views: 994

Re: Autohotkey Tutor (Excel/Firefox)

Is Firefox a must?

Just saying the build in COM makes so simple to do everything with IE that its hard to move away from when you first learn it...
by Blackholyman
08 Oct 2017, 08:59
Forum: Ask for Help (v1)
Topic: Com Click on "Button Class"
Replies: 12
Views: 4276

Re: Com Click on "Button Class"

https://www.dropbox.com/s/eeu6ixizphx7j ... r.exe?dl=1

Please select the element with that take a screenshot and post it her...
by Blackholyman
05 Oct 2017, 00:32
Forum: Ask for Help (v1)
Topic: Com Click on "Button Class"
Replies: 12
Views: 4276

Re: Com Click on "Button Class"

have you try'ed the iWBlearner tool? i ask as one thing that often is an issue with not being able to find an element by looping is the it is in an iFrame, iWBlearner tells you this other then that A_AhkUser showed you one of the easy ways to call javascript functions from AHK, you'd most likely sti...
by Blackholyman
05 Oct 2017, 00:20
Forum: Ask for Help (v1)
Topic: Global variables and stuff Topic is solved
Replies: 3
Views: 883

Re: Global variables and stuff Topic is solved

at the moment your variables are in the global space of your script, so your can already add the extra hotkey to do what you need, if you at some point move the variables in to a function or class then you'ed need to make the function global or the variables super global
by Blackholyman
04 Oct 2017, 00:22
Forum: Ask for Help (v1)
Topic: Is autohotkey able to pull details from html code?
Replies: 3
Views: 868

Re: Is autohotkey able to pull details from html code?

I don't use SalesForce.

but for this example i will assume that your sample html is in the clipboard

Code: Select all

pos := RegExMatch(clipboard, ">\s*([A-Za-z ]*)&", match)
msgbox % match1
by Blackholyman
03 Oct 2017, 08:09
Forum: Ask for Help (v1)
Topic: use inputbox to open excel file please help Topic is solved
Replies: 2
Views: 786

Re: use inputbox to open excel file please help Topic is solved

how about

Code: Select all

FileSelectFile, filepath
objExcel := ComObjCreate("Excel.Application")
;objWorkbook := ("C:\Users\adrian\Desktop\test.xls")
objWorkbook := objExcel.Workbooks.Open(filepath)
?
by Blackholyman
03 Oct 2017, 04:57
Forum: Ask for Help (v1)
Topic: Is autohotkey able to pull details from html code?
Replies: 3
Views: 868

Re: Is autohotkey able to pull details from html code?

how do you get to the html, as ahk is able to parse the html just fine, lots of methods, but try and tell us more and give us a sample of your html

Go to advanced search