Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/01/2013 in all areas

  1. wakillon

    Water Effects

    Browsing a Chinese AutoIt forum, i fall on a little pearl that i want to share with you ! I have already seen water effects example with autoit, but this one is very easy to create using waterctrl.dll Only BMP are supported. Position of Blob water can be set by coordinates and mouse movements (and clicks) when over bmp create traces on water. All files are embeded in script with BinaryToAu3Kompressor. WaterEffect.au3 Hope you like it !
    1 point
  2. You can't list the members of group "Domain Users" - this group has no members. There would be too many. AD uses the concept of a "primary group". This means the users are flagged to be members of the primary group (the id of the primary group is stored with the user). I'm not 100% sure but I think there can be many primary groups. So it is possible that a user has the primary group "Domain Users" - and hence will not be listed by _AD_GetGroupMembers. Another user can have a different primary group. If the user then was added to "Domain Users" he will be listed by _AD_GetGroupMembers. Can you check the primary group of a user that is not listed by running _AD_GetUserPrimaryGroup?
    1 point
  3. This works in IE9, I doubt it will work in IE8, but it's worth a shot: _IEFormElementSetValue($element, $oItem.value) Local $oEvt = $oIE.document.createEvent("HTMLEvents") $oEvt.initEvent("change", True, False) $element.dispatchEvent($oEvt) If it's not working for you, you might try this: _IEAction($element, 'focus');focusing helps sometimes with java functions _IEFormElementSetValue($element, $oItem.value)
    1 point
×
×
  • Create New...