universalkey Posted April 14, 2010 Posted April 14, 2010 please help me to find the right command for this button : HTML CODE <!-- Read button display --> <li id="click-msg-stack-none"> <a href="#top" onclick="$imm.ShowNextMessage();" title='Lire tes nouveaux messages'></a> </li> <li id="click-msg-stack-more"> <a href="#top" onclick="$imm.ShowNextMessage();" title='Lire tes nouveaux messages'></a> </li> I tried the following code but its not working out : $o_Buto = _IEGetObjById($o_Form, "click-msg-stack-more") _IEAction ($o_Buto, "click")
Moderators big_daddy Posted April 14, 2010 Moderators Posted April 14, 2010 (edited) Try something like this... #include <IE.au3> _IEErrorHandlerRegister() ; Code Missing $o_ListItem = _IEGetObjById($o_Form, "click-msg-stack-more") If @error Then Exit $o_HyperLink = $o_ListItem.firstChild If @error Then Exit _IEAction ($o_HyperLink, "click") Edited April 14, 2010 by big_daddy
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