Jump to content

Recommended Posts

Posted

Hey,

So this is most likely a stupid question, but what is the easiest way to re-create onclick javascript?

For example the button I'm trying to click simple does that:

javascript:selectunit("34,mod");

Any help would be much appreciated,

_C

Posted

Maybe this example helps you to figure it out.

#include <IE.au3>
$oIE = _IECreate ("https://www.alldebrid.com/register/")
_IENavigate($oIE, "javascript:javascript:createacct()", 0)
$oSubmit = _IEGetObjById ($oIE, "2")
$oSubmit.fireEvent("onmouseover")
_IEAction ($oSubmit, "click")
_IELoadWait ($oIE)

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Posted

#include 

$oIE = _IECreate ( "http://command.drop-shock.com/index_build.html" )
_IELoadWait ( $oIE )
_IENavigate($oIE, "javascript:selectunit(16,mod)", 0 )
$oSubmit = _IEGetObjById ( $oIE, "16,mod" )
$oSubmit.fireEvent( "onmouseover" )
_IEAction ( $oSubmit, "click" )
_IELoadWait ( $oIE )

Clearly doing something wrong here, point it out someone please?

Posted

  On 2/22/2013 at 6:18 PM, 'Centorbot said:

$oIE = _IECreate ( "http://command.drop-shock.com/index_build.html" )

Clearly doing something wrong here, point it out someone please?

My guess would be... using AutoIt to interact with an online game site and then posting it here. You might try reading the rules.

Whenever someone says "pls" because it's shorter than "please", I say "no" because it's shorter than "yes".

  • Moderators
Posted

Centorbot,

JohnQSmith is quite right - please read the Forum rules (the link is also at bottom right of each page) - particularly the bit about not discussing game automation - before you post again. Thread locked. :naughty:

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

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