cypher175 Posted March 8, 2009 Posted March 8, 2009 Is there anyway to use _IEFormElementCheckBoxSelect & byValue instead of byIndex by only using the ChexBoxes ID Name if there is no Value used to match the ChexBox element..?? That's the html source below for which i need to use to check the checkbox with the ID of popularon... but i dont want to use byIndex to select the checkBox though.. and there is no Value for the checkbox either to use byValue... So is there any other way of doing this..?? <legend><label class="clickable"><input type="checkbox" id="popularon" /> <strong>Popular</strong></label></legend>
DaleHohm Posted March 8, 2009 Posted March 8, 2009 Is there anyway to use _IEFormElementCheckBoxSelect & byValue instead of byIndex by only using the ChexBoxes ID Name if there is no Value used to match the ChexBox element..?? That's the html source below for which i need to use to check the checkbox with the ID of popularon... but i dont want to use byIndex to select the checkBox though.. and there is no Value for the checkbox either to use byValue... So is there any other way of doing this..?? <legend><label class="clickable"><input type="checkbox" id="popularon" /> <strong>Popular</strong></label></legend>$oBox = _IEGetObjById($oIE, "popularon") $oBox.checked = True This does not fire change events however - probalby not an issue here, but can be in other instances. Dale 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