milos83 Posted October 12, 2009 Posted October 12, 2009 Hi guys.I was just wondering, is there a way to change a on event script in ie object?I'm using _IEHeadInsertEventScript to add an event, but how about reading and editing existing OnEvent script?eg.<a class="TRT" onclick="alert('script to be obtained,edited...!'); href="#">link text</a>
DaleHohm Posted October 13, 2009 Posted October 13, 2009 (edited) Study this: #include <IE.au3> $sHTML = "" $sHTML &= "<html><head></head><body><h1>Hello</h1><a class='TRT' onclick=""alert('script to be obtained,edited...!');"" href=""#"">link text</a></body></html>" $oIE = _IECreate() _IEDocWriteHTML($oIE, $sHTML) $oLinks = _IELinkGetCollection($oIE) For $oLink in $oLinks If StringInStr($oLink.outerhtml, "script to be obtained") Then $sId = _IEPropertyGet($oLink, "uniqueid") ExitLoop EndIf Next _IEHeadInsertEventScript($oIE, $sId, "onclick", "alert('foobar');") Dale Edited October 14, 2009 by DaleHohm Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model Automate input type=file (Related) Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better? IE.au3 issues with Vista - Workarounds SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead? Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now