rdellis 0 Posted September 8, 2011 After performing an _IEAttach and locating a button on the form, the following code works great when firing a left mouse button onmousedown event. $o_Btn.fireEvent("onmousedown") I need the right mouse active when firing the onmousedown event. This requires eventProperties to be sent as a second parameter. Is this supported? If so, what is the equivilent AutoIt code for the first two lines below? ;NameValueCollection eventProperties = new NameValueCollection(); ;eventProperties.Add("button", "2"); $o_Btn.FireEvent("onmousedown", eventProperties); Share this post Link to post Share on other sites
DaleHohm 65 Posted October 17, 2011 (edited) I expect something like this to work: $oEvt = $oIE.document.createEventObject("MouseEvent") $oEvt.button = 2 $o_Btn.fireEvent("onmousedown", $oEvt) Dale Edited October 17, 2011 by DaleHohm Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curlMSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object modelAutomate input type=file (Related)Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better?IE.au3 issues with Vista - WorkaroundsSciTe 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 Share this post Link to post Share on other sites
rdellis 0 Posted October 18, 2011 I tried the example suggestion and several variations with no success. No errors are being reported but no action is occurring either. Share this post Link to post Share on other sites