Bifi Posted February 6, 2011 Posted February 6, 2011 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
Moderators Melba23 Posted February 6, 2011 Moderators Posted February 6, 2011 Bifi,Welcome to the AutoIt forum. You appear to have overlooked this when you joined - be advised we take this prohibition very seriously. 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
Bifi Posted February 6, 2011 Author Posted February 6, 2011 oh im sorry how can i close this or delete it?
Recommended Posts