Search the Community
Showing results for tags 'Slow'.
-
Hey Guys, Maybe you can help me with something small. It is not terrible but it slows down my script and after a while even crash the script. First i explain what i have; I have a GUI with a lot of GUICtrlCreateInput controls, lets say 600 pieces. All the controls are hidden when the GUI is displayed, i have 3 buttons attached to 200 pieces each. When i press button-1 the first 200 controls are showed, When i press button-2 the first 200 controls are hidden and the next 200 controls are showed, etc, etc. This is working perfectly but after a while the GUI is getting slower and slower. After a while the controls aren't responding anymore and the script crashes. When i compile the script to 64-Bits version the speed is a lot better but you can still see the script slowing down each time i use the buttons. I think there has to be a buffer somewhere that is filling each time i show and hide the controls, but how can i clear that buffer without restarting the script? Deleting and re-creating the controls didn't help, deleting the entire gui (and controls) and re-creating it didn't help also. The only thing that is working is restarting the script. Thanks guys! PS: If you need a working example i can add it to this topic, just let me know. It is not rocket science, i just create the controls and show/hide them with a while loop and 3 buttons.
-
Hi guys, Some functions of my script are running slowly. Very slow. What is the reason? My Code: <snip>
- 2 replies
-
- image search
- slow
-
(and 1 more)
Tagged with:
-
Hello, my question is based on topic about Nvda Screen reader development atThis Link Autoit GUI is totaly nice for blind users, because it's controls are mostly standart. But in cooperation with Screen Readers this guis are much slower than other guis. Do you have any idea about reason of this behaviour? Thanks a lot for any answer. Fenzik
- 1 reply
-
- screen reader
- gui
-
(and 2 more)
Tagged with:
-
I have created a Gui with a number of GUICtrlCreateButton() When I click on them with the mouse, the response by my script is very slow (1-2 secs), but if I navigate the buttons using the arrow keys and activate them with the Enter key, the response is fairly instant. Has anyone else seen this, and perhaps solved it? Dave
-
Hi there, There is something weird with FileSaveDialog. It takes approximately 8 seconds on my computer to return after clicking on OK. When compiling this exact code it looks faster but I still have this slow behaviour on another compiled software (LinuxLive USB Creator). $DEBUG_TIMER=TimerInit() $source_file = FileOpenDialog("Please choose an ISO image of LinuxLive CD", "", "ISO / IMG / ZIP (*.iso;*.img;*.zip)", 1,"") ConsoleWrite("It took "&Round(TimerDiff($DEBUG_TIMER)/1000,1)&" seconds to select ISO") Do you know what could cause this ? Thank you for your help PS : I'm still looking for AutoIT devs to help me on LinuxLive USB Creator. If interested, please contact me.
-
Even when you use the timeout parameter Ping() takes a minimum of ~500 ms on IP adresses without any device. $iTimer = TimerInit() For $iX = 1 To 10 Ping("10.0.0.111", 100) Next ConsoleWrite(Round(TimerDiff($iTimer) / 10) & " ms average" & @LF) Can anything be done to shorten this other than running multiple processes/threads? Note that Windows own ping.exe is not any faster. $iTimer = TimerInit() For $iX = 1 To 10 RunWait("ping 10.0.0.111 -n 1 -w 100") Next ConsoleWrite(Round(TimerDiff($iTimer) / 10) & " ms average" & @LF)