Jump to content

IE


Kickassjoe
 Share

Recommended Posts

How do i know what the name of an object is? I have been looking at source code for like 45 mins, but I still don't get this. I was looking at some code in scripts and scrapts... and I just can't figure this out. HELP PLEASE!

What goes around comes around... Payback's a bitch.

Link to comment
Share on other sites

How do i know what the name of an object is? I have been looking at source code for like 45 mins, but I still don't get this. I was looking at some code in scripts and scrapts... and I just can't figure this out. HELP PLEASE!

if you have the latest beta look at the help files UDFs. they are very helpful

[center]AutoIT + Finger Print Reader/Scanner = COOL STUFF -> Check Out Topic![/center][center][font=Arial Black]Check out ConsultingJoe.com[/font][/center][center]My Scripts~~~~~~~~~~~~~~Web Protocol Managing - Simple WiFi Scanner - AutoTunes - Remote PC Control V2 - Audio SpectrascopePie Chart UDF - At&t's TTS - Custom Progress Bar - Windows Media Player Embed[/center]

Link to comment
Share on other sites

is it really this complicated? I thought it would be way easier then this... if I know the source code of an img that I want to click on, i tried putting this...

#include thing

$IE = _iecreate(whatever.com)

_ieimgclick($IE, *****img source code here****)

but it didn't work... what do I put there???

What goes around comes around... Payback's a bitch.

Link to comment
Share on other sites

is it really this complicated? I thought it would be way easier then this... if I know the source code of an img that I want to click on, i tried putting this...

#include thing

$IE = _iecreate(whatever.com)

_ieimgclick($IE, *****img source code here****)

but it didn't work... what do I put there???

if you have the source code and know what the image file is called you could try:

#include <IE.au3>
$oIE = _IECreate("www.test.com")
_IEImgClick ($oIE, "thisisapicture.gif", "src") ; $oIE is the IE Object, "thissapicture.gif" is the filename specified in the <IMG> tag i.e <IMG src="thissapicture.gif" border=0> and lastly "src" is where the function knows to search for this string (in this case by the src value)

which should click on a picture with the filename "thisisapicture.gif"

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...