Jump to content

Javascript Problems


Bifi
 Share

Recommended Posts

Hello

I just started to create a litte Bot.

After a lot of work i have a Problem with the Javascript.

Its a Browsergame so i need to klick on a Field in a Javascript "Map".

Info:

;-----------------------------------------------

<a onclick="javascript:Move('up');" style="cursor: pointer">

<frame src="map.php?reload=1" name="mapFrame" scrolling="NO" noresize="">

Game is in World 14 so its $oIE14 (im not sure .. but it worked with this :) )

;-------------------

My tests.

;---- Test 1

$omapFrame = _IEFrameGetObjByName ($oIE14, "mapFrame")

$oLinks = _IETagNameGetCollection ($omapFrame, "a")

For $oLink In $oLinks

If $oLink.href = "javascript:Move('up')" Or $oLink.href = "javascript:Move('up')" Then

_IEAction($oLink,"click")

_IELoadWait ($omapFrame)

ExitLoop

EndIf

Next

;--------

;---- Test 2

$oPO_Form = _IEFormGetObjByName($omapFrame, "mapFrame")

$elements = _IEFormElementGetCollection($oPO_Form)

For $element in $elements

If StringInStr($element.value, "Move('up')") > 0 Then

$closeform = $element

EndIf

Next

_IEAction($oPO_Form, "click")

;---

So i need some help please ;)

Bifi

Link to comment
Share on other sites

  • Moderators

Bifi,

Welcome to the AutoIt forum. :)

You appear to have overlooked this when you joined - be advised we take this prohibition very seriously. ;)

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:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

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