Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/11/2020 in all areas

  1. Whatever you did, is working consistently!
    1 point
  2. ok now we have progress.. query2array: 1 / ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ === start of # 1 ===>{"name" : "test"}<=== end of # 1 === # 1 loaded at 15:02:33.733 - Socket: 660 - Received in 629041841.95 ms. - Responded in 0.2 ms. ( no data )
    1 point
  3. Change the function to this one : Func _WindowProc($hWnd, $iMsg, $wParam, $lParam) If $iMsg = $WM_PASTE Then _WinAPI_SetWindowText($hWnd, StringRegExpReplace(ClipGet(), "(\v)", "")) Return EndIf Return _WinAPI_CallWindowProc($wProcOld, $hWnd, $iMsg, $wParam, $lParam) EndFunc ;==>_WindowProc Tested on Win10, now working...
    1 point
  4. ripdad

    LIVE Stereo Audio Waveform

    EC1 means that Bass.dll is not in the same folder as this script. Right?
    1 point
  5. Replace the func in GUIEditEX.au3 with this code : Func _GUICtrlEdit_AppendText($hWnd, $sText) If Not IsHWnd($hWnd) Then $hWnd = GUICtrlGetHandle($hWnd) Local $iLength = _GUICtrlEdit_GetTextLen($hWnd) _GUICtrlEdit_SetSel($hWnd, $iLength, $iLength) Local $tString = DllStructCreate ("char[" & StringLen ($sText)+1 & "]") DllStructSetData ($tString, 1, $sText & chr (0)) _SendMessageA($hWnd, $EM_REPLACESEL, True, DllStructGetPtr($tString), 0, "wparam", "lparam") EndFunc ;==>_GUICtrlEdit_AppendText
    1 point
  6. #Include <WinAPI.au3> Global Const $SPI_GETMOUSESPEED = 112 ; 0x0070 Global Const $SPI_SETMOUSESPEED = 113 ; 0x0071 ; Get individual setting : Global $g_tMouseSpeed = DllStructCreate('int Speed') _WinAPI_SystemParametersInfo($SPI_GETMOUSESPEED, 0, DllStructGetPtr($g_tMouseSpeed), 0) ConsoleWrite("MouseSpeed (individual) = " & $g_tMouseSpeed.Speed & @CRLF) ; Info : value ranges between 1 (slowest) and 20 (fastest) - 10 is the default ; 1. Set speed to 1 = 'slowest' (for 4 sec.) _WinAPI_SystemParametersInfo($SPI_SETMOUSESPEED, 0, 1, 2) ConsoleWrite("MouseSpeed = 1 ('slowest')" & @CRLF) Sleep(4000) ; 2. Set speed to 20 = 'fastest' (for 4 sec.) _WinAPI_SystemParametersInfo($SPI_SETMOUSESPEED, 0, 20, 2) ConsoleWrite("MouseSpeed = 20 ('fastest')" & @CRLF) Sleep(4000) ; 3. Set speed back to individual setting _WinAPI_SystemParametersInfo($SPI_SETMOUSESPEED, 0, $g_tMouseSpeed.Speed, 2)
    1 point
×
×
  • Create New...