Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/08/2015 in all areas

  1. trancexx

    WinHTTP functions

    Ok guys, quit playing hangman on my comp LOL
    2 points
  2. from the help file lol #include <Array.au3> Local $aArray, $sFill Local $aArray_Base[0][2] _ArrayDisplay($aArray_Base, "2D - Base array") ; Add item delimited string $aArray = $aArray_Base $sFill = "New Item 2 - 0|New Item 2 - 1" _ArrayAdd($aArray, $sFill) _ArrayDisplay($aArray, "2D - Item delimited")
    1 point
  3. Use HKEY_CLASSES_ROOT64 : ProcessClose("OneDrive.exe") RegWrite("HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}", "System.IsPinnedToNameSpaceTree", "REG_DWORD", "0") If (@OSArch = "X64") Then RegWrite("HKEY_CLASSES_ROOT64\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}", "System.IsPinnedToNameSpaceTree", "REG_DWORD", "0")
    1 point
  4. Melba23

    Quick question

    element72, I presume you mean within the SciTE editor - in which case I would suggest that "Replace" would be the tool you need. M23
    1 point
  5. I may be reading this incorrectly. You want to click either (592,173) or (309,631) ClickRandomly();Call the ClickRandomly Function from within another part of the script Func ClickRandomly() Local $RandomNumber = Random(1,2,1);Randomly generate 1 or 2 If $RandomNumber == 1 Then MouseClick("Left",592,173) EndIF If $RandomNumber == 2 Then MouseClick("Left",309,631) EndIF EndFunc
    1 point
  6. Func _ProgramFilesDir() Local $ProgramFileDir Switch @OSArch Case "X32" $ProgramFileDir = "Program Files" Case "X64" $ProgramFileDir = "Program Files (x86)" EndSwitch Return @HomeDrive & "\" & $ProgramFileDir EndFunc ;==>_ProgramFilesDirh
    1 point
×
×
  • Create New...