Jump to content

quick help =P


Recommended Posts

#include <IE.au3>

start()
func start()
        While 1
            MsgBox(0, "start", "start")
$oIE = _IEAttach("haha")

_IEImgClick ($oIE, "http://www.geocities.com/shimlar101/sitemap.jpg")
    WEnd

endfunc

--> IE.au3 V2.3-1 Warning from function _IEImgClick, $_IEStatus_NoMatch

why

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

#include <IE.au3>
$oIE = _IEAttach("haha")
_IEImgClick ($oIE, "sitemap.jpg", "src")

same result --> IE.au3 V2.3-1 Warning from function _IEImgClick, $_IEStatus_NoMatch

what am i doing wrong?:S

Edited by EscapeTheFate
Link to comment
Share on other sites

Ah, that's what's wrong with the link you gave me. The page is "haha.html". I'll take a look at it.

Ah, the problem is that since you are using geocities, there are frames. Frames are evil when trying to dissect the DOM tree. I don't know how to handle frames properly when accessing DOM, but I know that is what your problem is. The page shown here, contains a frameset of the advertisement on the side and your page. You may have to find someone else to help you here, or search around the forum for frame help I guess.

Edited by Richard Robertson
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...