Jump to content

StandardUser

Active Members
  • Posts

    102
  • Joined

  • Last visited

About StandardUser

  • Birthday 03/11/1981

Profile Information

  • Location
    /dev/null

Recent Profile Visitors

551 profile views

StandardUser's Achievements

Adventurer

Adventurer (3/7)

2

Reputation

  1. You can also run COM server '?do=embed' frameborder='0' data-embedContent>>
  2. Yep, that was the thing I was thinking about. Many thanks!
  3. Thanks! But still didn't find any use of it, as there is no Call function in COM and Dll interfaces of AutoItX
  4. I vaguely remember, there was a method or UDF for calling all AutoIt functions from other programming languages, including default and custom UDFs. Now I can't find it by any means. Initially I thought it was AutoItObject UDF but seems it is not: So could someone pinpoint it to me or is my memory just a dream of a drunk horse?
  5. This seems to work on Win 7, IE11: Switch @OSArch Case "X86" RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Privacy", "ClearBrowsingHistoryOnExit", "REG_DWORD", "1") Case "X64" RegWrite("HKEY_CURRENT_USER64\Software\Microsoft\Internet Explorer\Privacy", "ClearBrowsingHistoryOnExit", "REG_DWORD", "1") EndSwitch May not work for other versions of IE, try to google registry key. For IE 8 it seems to be HKEY_LOCAL_MACHINESoftwarePoliciesMicrosoftInternet ExplorerPrivacy : ClearBrowsingHistoryOnExit Registry locations of other settings: http://support2.microsoft.com/kb/182569 For example, enabling programmatic clipboard access: Switch @OSArch ;Enable clipboard Case "X86" RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3", "1407", "REG_DWORD", "0") Case "X64" RegWrite("HKEY_CURRENT_USER64\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3", "1407", "REG_DWORD", "0") EndSwitch
  6. On Russian AutoIt forum I found a simple example of UIAutomation plus MS UIAutomation inspect tool, which can identify most "objects". UIAutomate.zip
  7. Fighting with it 2 days already... Link HTML: <a id="viewW2Box1To20_next" class="btn ansLg pull-right" data-set="{'FLOW_SCOPE_983482968618.navValue' : 'Continue'}" data-nav="save"> Continue </a> Tried to click it like this: _FFClick("viewW2Box1To20_next", "id") like this: _FFCmd(".getElementById('viewW2Box1To20_next').click;") like this: $oLink = _FFObjGet("viewW2Box1To20_next") _FFDispatchEvent($oLink, "select") _FFDispatchEvent($oLink, "focus") _FFDispatchEvent($oLink, "mousedown") _FFDispatchEvent($oLink, "mouseup") _FFDispatchEvent($oLink, "click") _FFDispatchEvent($oLink, "keydown") _FFDispatchEvent($oLink, "keyup") _FFDispatchEvent($oLink, "keypress") and some other combinations, but nothing seems to work. So I would be really grateful for any ideas or hints.
  8. Worked like a charm, many thanks!
  9. Hm, when running Scitetoolbar_v2_0.au3 I'm just getting this: Any ideas what could be causing it?
  10. You could use a tool called AdvOr(http://sourceforge.net/projects/advtor/files/), which has an option to intercept and "torify" any application
  11. I suspect, it will only be useful for malware writers, thus increasing the number of false positives.
  12. At last! This was a real trouble for me. I just added save.session.advanced to Scite properties to autoload last saved session. Many thanks!
  13. Many thanks for a response. Unfortunatelly, it didn't help(these two settings were already included in SciTEGlobal.properties file). Would be really grateful for any other ideas
×
×
  • Create New...