Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/01/2014 in all areas

  1. 8/1/2014: Uploaded a new SciTE4AutoIt3.exe installer with an updated SciTE v3.4.4 release. These are the major changes: Changed the Fileversion numbers for the installer and programs I support to make the te same. Format is: YY.(M)MDD.(H)HMM.0 for the installer release version. Betas will be increments of the 4th number. Fixes for reported bugs in Au3Stripper. Enjoy, Jos Addition/Changes/Fixes in the current installer: -------------------------------------------------------------------------------------------------- 8/1/2014 General: Changed the Fileversion numbers for the installer and programs I support to make the te same. Format is: YY.(M)MDD.(H)HMM.0 for the installer release version. Betas will be increments of the 4th number. *** Merged the SciTE v 3.4.4 by Neil Hodgson with our own version of SciTE. (Jos) - Added Options: #~ highlight.current.word.stopatspace=0 // 1 is the default behaviour. - Added Ctrl+E shortcut which will open Explorer in the ScriptDir and select the filename being edited. - Added Shift+F7 to just compile the script for testing without running any other utility. Similar to #AutoIt3Wrapper_Testing=y - Added logic to better determine the current CallTip parameter being edited by testing for the delimiter style define with: calltip.au3.delimiter.style=8 *** Updated SciTE4AutoIt3 installer v14.801.2025.0 (Jos) - Changed code to update the SCITE_USERHOME enviroment variable. - Added Restore option for SciTE-Lite when uninstalling this Full version. *** Updated SciTE4AutoIt3 helpfile (Jos) - Added Directive sections to the index. - Updated AutoIt3Help.exe to automatically open this helpfile when the keyword contains #autoit3wrapper_ , #au3stripper or #tidy_. *** Updated Au3Stripper v14.801.2025.0 (Jos) - Fixed lexing typo with /RenameMinimum commandline parameter. - Fixed to be able to handle more levels of Include files and avoid a stackspace crash . - Added #Au3Stripper_Parameters Parameter: - /rsln -> Replace @ScriptLineNumber with the actual line number for source debug purposes with compiled scripts. (Idea of mLipok) *** Updated AutoIt3Wrapper v14.801.2025.0 (Jos) - Changed the re-start shortcut to Ctrl+Alt+Break. - Added /test parameter to allow shortcut to compile script in test without running anything else than AUT2XE. - Added UPX support for x64 scripts since it is now supported. - Added ShowProgress INI option and #AutoIt3Wrapper_ShowProgress directive to allow disable of Progress Window. - Added directives to allow forcing the #RequireAdmin for Run_Before or Run_After statements: #AutoIt3Wrapper_Run_Before_Admin= ;(Y/N) Run subsequent Run_Before statements with #RequireAdmin. Default=N #AutoIt3Wrapper_Run_After_Admin= ;(Y/N) Run subsequent Run_After statements with #RequireAdmin. Default=N - Added directives to allow Fileversion increase before compilation: #AutoIt3Wrapper_Res_Fileversion_First_Increment ;(Y/N) AutoIncrement Y=Before or N=After compile. Default=N *** Updated SciTEConfig v14.801.2025.0 (Jos) - Fixed several small bugs. (Jos) *** Updated Tidy v14.801.2025.0 (Jos) - Fixed regression when the FUNC keyword is on a #region line *** Updated CodeWizard v1.5.3.1 (Jos) - Fixed to make use of the new SCITE_USERHOME env variable and several other syntax updates. -------------------------------------------------------------------------------------------------- ==> ScitillaHistory page containing all SciTE/Scintilla updates. ==> Visit the SciTE4AutoIt3 Download page for the latest versions ==> <B>Check the newly formatted</B> the online documentation for an overview of all extra's you get with this installer.
    2 points
  2. Melba23

    _ArrayAdd Bug

    Hi, New function committed - so please test again when the next Beta is released. M23
    2 points
  3. #include <misc.au3> While 1 If _IsPressed(04) Then ;04 is Middle Click Send("{SPACE}") While _IsPressed(04) ;04 is Middle Click Sleep(10) WEnd EndIf Sleep(10) WEnd
    1 point
  4. Ik stond vanmorgen bij de bushalte ......
    1 point
  5. remin, It does not work because there are several mistakes in that snippet: Function... _GetActive() ; Get the active GUI BEFORE your GUI is created AdlibRegister("_GetActive") ; Check for changes to the active GUI WHILE your GUI is active $Form1 = GUICreate("Move Menu", 120, 250, 265, 142, _ $WS_BORDER, BitOR($WS_EX_TOPMOST, $WS_EX_TOOLWINDOW)) ; No need to use the _EX_TOOLWINDOW style twice! $gFormNR = $Form1 While 1 $iMsg = GUIGetMsg() ; You want to use this value twice, so save the value Switch $iMsg Case $GUI_EVENT_CLOSE GUIDelete($Form1) AdlibUnRegister("_GetActive") ; No point in checking any longer Case $bLeft, $bRight ; But why bother with this double Switch at all? Why not just have 4 separate cases? Switch $iMsg ; Now you are checking the SAME message - calling GUIGetMsg again as you did before was looking at the NEXT one in the queue Case $bLeft ; Case $bRight ; EndSwitch EndSwitch WEnd EndFunc Does that make it clearer? M23
    1 point
  6. Add buffers=<int value> to SciTEUser.Properties.
    1 point
  7. 1 point
  8. Sending us the data doesnt give us access to the page or the passwords. It just allows us to see the source and make a script that does what you want. I like to help but it's too much work to try and make a website based on what you have provided for the sole purpose of helping you with your script. Please provide us with what we have asked for.
    1 point
  9. 3 issues: - TCPCloseSocket comes first than TCPShutDown, anyway you need TCPShutDown only when you finish to work with sockets - Use FileOpen in binary mode (16) and TCPRecv too (1) - so modify this code: Do $Accept = TCPAccept($Main_Socket) Until $Accept <> -1 Do $Received = TCPRecv($Accept, 10000000000000000000000000000) Until $Received <> "" Return $Received with: Do $Accept = TCPAccept($Main_Socket) Until $Accept <> -1 Local $text While 1 $Received = TCPRecv($Accept, 2048, 1) If @error And @error <> -1 Then ExitLoop If $Received <> "" Then $text &= $Received WEnd Return $text Anyhow there are millions of scripts that do exatly what you want, try to give them a look..
    1 point
  10. remin, You are now only setting the Adlib as you enter the HotKey function - so it will not run before the GUI is created and so you only store the values of GUIs activate after you create your own GUI, which is not what you want and which ex-plains your puzzling symptoms. You should add a call to the function before setting its Adlib call: _GetActive() AdlibRegister("_GetActive") Now you will set the active window to the GUI that is active just before you create your own GUI - the Adlib calls will keep the handle updated if other GUIs are activated later. And I suggest you deregister the Adlib call as you exit your GUI - no point in it running when no longer required. M23
    1 point
  11. @RTFC Quick Tutorial of EigenAutoIt has been fixed (see above). Now spoon is nowhere in accordance to Spoon boy.
    1 point
  12. Done. See first post for an update. It wasn't so much about the key you chose, I just feel you misunderstood the purpose of the example. I have zero issue people making suggestions, so long as they adhere to the same concept as the original post.
    1 point
  13. Coder07

    _IEFormSubmit

    <form action='index.php' method='post'> Username: <input type='text' name='username' size='25' /><br /> Password: <input type='password' name='password' size='25' /><br /> <input type='submit' name='ok' value='Submit' /> </form> for this example, you can do $submit = _IEGetObjByName($bro, "ok") _IEAction($submit, "click") you can go with "_IEGetObjById" if button has an <input ID="blabla"> btw if u are using Win7, Win8 or Win8.1 you can check this out: '?do=embed' frameborder='0' data-embedContent>>
    1 point
  14. Danp2

    _IEFormSubmit

    Have you tried using _IEAction($oSubmit, "click"), where $oSubmit is an object reference to the Submit button?
    1 point
  15. MrCreatoR

    Flicker Free Labels

    Nice, but what about transparent background, like in the original labels? Btw, you can use $WS_EX_COMPOSITED #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> _FlickerExample() Func _FlickerExample() Local $Form1 = GUICreate("Flickering Labels", 400, 220, -1, -1, -1, $WS_EX_COMPOSITED) Local $Label1 = GUICtrlCreateLabel("", 80, 40, 240, 17) GUICtrlSetFont(-1, 9, 200, 0, 'Microsoft Sans Serif') Local $Label2 = GUICtrlCreateLabel("", 80, 80, 240, 17) GUICtrlSetFont(-1, 9, 200, 0, 'Microsoft Sans Serif') Local $Label3 = GUICtrlCreateLabel("", 80, 120, 240, 17) GUICtrlSetFont(-1, 9, 200, 0, 'Microsoft Sans Serif') GUISetState(@SW_SHOW) Local $iCount While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE GUIDelete($Form1) Return Case Else $iCount = Random(1, 100000) GUICtrlSetData($Label1, "Label One = " & $iCount) $iCount = Random(1, 100000) GUICtrlSetData($Label2, "Label Two = " & $iCount) $iCount = Random(1, 100000) GUICtrlSetData($Label3, "Label Three = " & $iCount) EndSwitch WEnd EndFunc
    1 point
×
×
  • Create New...