Jump to content

Faceb**k button?


Capcuzzz
 Share

Recommended Posts

Hi, I need to click on the "share" button that fac*book has to update our status.

I've tried autoit window info with no luck finding neither id or text of the button. :D

I just want to post things to my fac*book account status update and the problem I am facing is how to click that share button?

Any clue please??? :huggles:

Thanks

Link to comment
Share on other sites

You would have to use the IE.au3 UDF probably to find the ID and text of the button to click

something like this:

$oInputs = _IETagNameGetCollection($oIE, "input")
    For $oInput In $oInputs
        If $oInput.value == "Share" Then
            _IEAction($oInput, "click")
            ExitLoop
        EndIf
    Next

I'm not sure if that's the right setup for what you want, you'd need someone who's better with the IE UDF. But that's the basic shell of what you want

We ought not to misbehave, but we should look as though we could.

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...