Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

Basic Ahk v1.1+ COM Tutorial for Webpages


  • Please log in to reply
138 replies to this topic

Poll: Did this guide help you? (92 member(s) have cast votes)

Did this guide help you?

  1. Ya! COM ftw rawr! (111 votes [86.72%])

    Percentage of vote: 86.72%

  2. No. I am now dumber for having read this... (17 votes [13.28%])

    Percentage of vote: 13.28%

Vote Guests cannot vote
za3root
  • Members
  • 97 posts
  • Last active: Sep 25 2015 09:11 PM
  • Joined: 10 Feb 2015

Hi all :D

 

Does anybody know how to find the index of a button?



Reburg99
  • Members
  • 7 posts
  • Last active: Mar 09 2015 07:41 PM
  • Joined: 28 Aug 2013

Confused... I'm researching for a project I've been asked to do.  I've been using regular AHK to do basic macros for me.  I need to do more in-depth work, but in reading the tut's it's talking about AutoHotkey v1.1+ COM. or AutoHotkey_L are these completly different versions or am I just missing something?  If they are different can you provide me a the link to DL it.  Thanks!



jethrow
  • Moderators
  • 2854 posts
  • Last active: May 17 2017 01:57 AM
  • Joined: 24 May 2009

They are the same. Check out my edits to the first page of this tutorial.



Temil2008
  • Members
  • 364 posts
  • Last active: Jun 14 2015 09:02 PM
  • Joined: 10 Dec 2012

I'm having an issue that I'm hoping you guys can assist with. I'm wanting to save the javascript command to a INI file, then call on that INI file later to use it to target the WB1 control I have created. I'm having alot of issues with this. I think it's just a syntas issue on how i'm formating it, but any help would be greatly appreciated.

 

example of what I'm trying to do.

Script = document.getElementById("hplogo").src
wb.%Script%

This method does not work, and gives me errors telling me that it's not reconized as a valid use of the period, etc. I'm also including a testing script that can easily be copy/pasted . test1 works as it's using the strait code, but test 1 is the variable use method, and it's notworking. any advise?

Gui Add, ActiveX, % "xm w400 h400 vWB1 border", Shell.Explorer
Gui, Add, Button, Section gTest1 w80 h50, Test1
Gui, Add, Button, ys gTest2 w80 h50, Test2
WB1.Navigate("http://www.google.com")
wait(wb1)
Gui Show

return

Test1:
	TestVar := wb1.document.getElementById("hplogo").src
	MsgBox, %TestVar%
	TestVar =
return

Test2:
	Script = document.getElementById("hplogo").src
	TestVar := wb1[Script]
	MsgBox, %TestVar%
	TestVar =
return

GuiClose:
	ExitApp
	
	Wait(wb) {
    If !wb    ;If wb is not a valid pointer then quit
        Return False
	Loop {
		Sleep, 1
		Timeout := A_Index
	} Until (wb.ReadyState != 4) and (wb.busy) or (Timeout = "100")
	
	while (wb.ReadyState != 4) or (wb.busy)
		Sleep 100
   Return True
 }

________________________________________________________________

Did a solution provided fix your issue? please mark as "Answered" if so. thank you!