Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/22/2018 in all areas

  1. mLipok

    RegExpQuickTester

    Version 3.6

    1,618 downloads

    In April 5, 2013 I ask @Lazycat he answer: Then I change this tool a little. Now I back to this and make bigger changed. Here is new version. Update History: = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 2018/11/07 v3.0 * Changed: AU3Check compilant - mLipok * Changed: almost all Variables renamed - mLipok * Added: "Delete RegExp Results" - mLipok * Added: support for dual monitor - mLipok * Added: "full screen mode" - mLipok = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 2018/11/08 v3.1 * Added: colors for each Edit control - used GUICtrlSetBkColor() - mLipok * Added: FullScreen option (Checkbox + INI + Remarks in Tip) - mLipok * Added: _IsChecked() - mLipok * Changed: WinMove() - change size of window using: WindowWidth and WindowHeight - mLipok = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 2018/11/13 v3.2 * Added: If $bFullScreen Then GUICtrlSetFont() - mLipok * Added: WM_COMMAND , $EN_CHANGE - prevent CPU overheat - mLipok = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 2018/11/29 v3.3 * Changed: $_g_idCheckbox_Clear - also clear $_g_idEdit_Result - mLipok * Changed: ClearResult If GUICtrlRead($_g_idEdit_MatchText) = '' Or GUICtrlRead($_g_idEdit_MatchText) = '' - mLipok * Fixed: prevention CPU overheat - If $iGuiMsg <> 0 Then $_g_bWasAChange = True - any GUI change will fire RegExp result refresh - mLipok * Fixed: Top possition of $_g_idLabel_Dummy control - mLipok * Added: support for TabSwitch - CTRL+TAB and CTRL+SHIFT+TAB - mLipok = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
    1 point
  2. For the fun If $n = 0 or $n > nb of lines in the file, no line is deleted $s = _DeleteLine("xxx.txt", 3) Msgbox(0,"", $s) Func _DeleteLine($file, $n) $txt = FileRead($file) Return StringRegExpReplace($txt, '(?ms)((^\N*\R?){' & $n-1 & '})(?2)?(.*\z)', "$1$3") EndFunc
    1 point
  3. gahhon, Which sounds similar enough to "gaming-related" to me - thread locked. If you wish to discuss it further, please PM me with details of what exactly this "backed webpage" does and why it should not be considered as directly connected to the gaming site. M23
    1 point
  4. Ok, so you won't be using AutoIt3 nor C# and will write your script in assembler? Just so you understand this comment: AutoIt3 has many build in functions and User Defined Functions, which are the base you use for your scripts. I can assure you you won't want to code it all yourself unless you have ample time available. Jos
    1 point
  5. There are functions for starting a browser session and then creating new tabs.
    1 point
  6. Are you sure? Thanks to Navigate2 method, and the parameter navOpenInNewTab, you can do it
    1 point
  7. Melba23

    How to /nopack?

    caramen, All upx does is compress the executable to make it smaller - this was useful back in the days when disk storage was at a premium, but nowadays is not really necessary. However, the compression does make it more difficult to examine the internals of the executable and this often leads AVs to flag any compressed file as a possible threat - hence the option not to use the compressor when compiling. It does NOT add any form of security to the compressed code. And you should know better than to even mention decompilation here - naughty boy! M23
    1 point
  8. Glad you got it working We don't celebrate Thanksgiving here. But "Happy Thanksgiving" to you all!
    1 point
  9. Jos

    How to /nopack?

    Sure, look at the #pragma() option in the helpfile to set compiler options, in this case: #pragma compile(UPX, False) Jos
    1 point
  10. MJ36

    Click Combo Box

    Its work thanks for help Local $wybmies = _IEFormElementGetObjByName($oIE, "BirthMonth") _IEAction($wybmies, "focus") _IEFormElementOptionSelect($wybmies, "Maj", 1, "byText")
    1 point
  11. Jos

    How to /nopack?

    It never had AutoIt3Wrapper included in the AutoIt3 installer. This is added functionality I wrote and is included in the SciTE4AutoIt3 extra installer which you need to install to get this again. See my sig for a link. Jos
    1 point
  12. @yasha Please look at the excel functions in the help file. You will thank yourself for using these functions to control Excel at the object level, rather than all of these unreliable Sends.
    1 point
  13. More like stupid man, whining because we wouldn't allow you to do something illegal. If AutoIt is detected falsely as a virus, it is because of morons like yourself. You can now take a week off from being able to post - if and when you return you can try growing up a little.
    1 point
  14. Melba23

    Mp3 trucmouche

    careca, iamtheky is quite right - please see this announcement to understand why the thread is locked and the code deleted. M23 P.S. And I have also deleted the file you uploaded.
    1 point
  15. why you want open a second tab??? open directly another session of explorer with 2 different handle variable $oIE = _IECreate("https://pronhub.com", 0, $Hide, 1, 1) ; <--- 0011 invisible explorer <--- 0111 visible explorer $oIE_2 = _IECreate("https://pronhub.com", 0, $Hide, 1, 1) ; <--- 0011 invisible explorer <--- 0111 visible explorer
    1 point
  16. This is how to do it with the built-in UDF functions: #include <WinAPI.au3> #include <Misc.au3> Local $stPoint=DllStructCreate($tagPOINT),$aPos,$hControl,$hWin,$aLastPos[2]=[-1,-1],$sLastStr='',$sStr While Not _IsPressed('1B') $aPos=MouseGetPos() If $aPos[0]<>$aLastPos[0] Or $aPos[1]<>$aLastPos[1] Then DllStructSetData($stPoint,1,$aPos[0]) DllStructSetData($stPoint,2,$aPos[1]) $hControl=_WinAPI_WindowFromPoint($stPoint) $hWin=_WinAPI_GetAncestor($hControl,2) $sStr='Window at '&$aPos[0]&','&$aPos[1]&': "'&WinGetTitle($hWin)&'"' If $sLastStr<>$sStr Then ToolTip($sStr,0,@DesktopHeight-20) $sLastStr=$sStr EndIf $aLastPos=$aPos EndIf Sleep(15) WEnd On a side note - I'd just like to add that _WinAPI_WindowFromPoint() was poorly thought out - it should take x,y coordinates instead of a structure.
    1 point
×
×
  • Create New...