Leaderboard
Popular Content
Showing content with the highest reputation on 08/01/2014 in all areas
-
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
-
Hi, New function committed - so please test again when the next Beta is released. M232 points
-
New SciTE4AutoIt3 available with updated SciTE v3.4.1
jvanegmond reacted to Jos for a topic
Ik stond vanmorgen bij de bushalte ......1 point -
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? M231 point
-
New SciTE4AutoIt3 available with updated SciTE v3.4.1
jvanegmond reacted to guinness for a topic
Add buffers=<int value> to SciTEUser.Properties.1 point -
New SciTE4AutoIt3 available with updated SciTE v3.4.1
jvanegmond reacted to wraithdu for a topic
SciTE fears for your sanity?1 point -
Trouble with radio button (which has no name)
Janice reacted to computergroove for a topic
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 -
Having Problem with sending *.jpg files per TCP
Programs4All reacted to j0kky for a topic
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 -
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. M231 point
-
@RTFC Quick Tutorial of EigenAutoIt has been fixed (see above). Now spoon is nowhere in accordance to Spoon boy.1 point
-
_IEFormSubmit
PoojaKrishna reacted to Coder07 for a topic
<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 -
_IEFormSubmit
PoojaKrishna reacted to Danp2 for a topic
Have you tried using _IEAction($oSubmit, "click"), where $oSubmit is an object reference to the Submit button?1 point -
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 EndFunc1 point