Custom Query (3921 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (412 - 414 of 3921)

Ticket Resolution Summary Owner Reporter
#413 Duplicate GUICtrlHotKeySet -Hot key input box GUI control. Caplan77
Description

Autoit has hotkey functions & gui functions but no way to easily set hotkeys via the GUI.

Both MFC & API controls are available to add a hotkey input. Can this be added to the AutoIt GUI controls? Or possibly create a UDF for it?

API: Hot Key Controls http://msdn.microsoft.com/en-us/library/bb775233.aspx

MFC: CHotKeyCtrl http://msdn.microsoft.com/en-us/library/5655fyw6(VS.71).aspx

Thanks!

#414 Completed Better OnAutoItStart/OnAutoItExit handling Jpm anonymous
Description

I propose to add multiple OnExitFuncs, so that you can easily clean up code in the End of Script. Some UDFs ( like GUICtrlSetOnHover UDF )using GDIplus or Timers free resources in OnAutoItExit, so you can't use this funtion without making changes to UDFs.

It would be easier, if there was a Command like AddOnAutoItExitFunc("FunctionName")

#415 Fixed CUI compiled scripts won't execute batch files properly Valik ResNullius
Description

The following script when run uncompiled behaves as expected, you are greeted with the "Press any key to continue" message and the batch file waits for a key press. But when compiled and run, it displays the message and immediately returns from the batch file without waiting for the key press.

#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_UseUpx=n
#AutoIt3Wrapper_Change2CUI=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****

$tmpBatFile = FileOpen("tmpBatFile.cmd",2)
FileWriteLine($tmpBatFile,"@Pause")
FileClose($tmpBatFile)
ConsoleWrite(@CRLF & "Are you Ready?" & @CRLF & @CRLF)
RunWait("tmpBatFile.cmd")
ConsoleWrite("Done" & @CRLF)

Tested on Win2000/XP 32-bit with all service packs. Also with AutoIt beta 3.2.13.3. The problem does not exist when compiled under v3.2.10.0 (with a compatible version of AutoIt3Wrapper).

Don't think it's a problem with the keyboard buffer, because on a different script that waits for user input via a batch file, I get an error like there was no input, whereas run on its own (from a cmd prompt) the batch file doesn't error even if you just hit return without any input.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.