Centorbot Posted February 21, 2013 Posted February 21, 2013 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
Xenobiologist Posted February 22, 2013 Posted February 22, 2013 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
Centorbot Posted February 22, 2013 Author Posted February 22, 2013 #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?
JohnQSmith Posted February 22, 2013 Posted February 22, 2013 $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 Melba23 Posted February 22, 2013 Moderators Posted February 22, 2013 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. M23 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: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Recommended Posts