Custom Query (3920 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (301 - 303 of 3920)

Ticket Resolution Summary Owner Reporter
#543 No Bug Autoit does not automate high res mouse motion correctly. anonymous
Description

The program I am trying to automate appears to use the directx high res mouse input for control. Autoit seems to send the same relative data when moving even though the absolute mouse position is correct. To reproduce the problem use the program Future Pinball and press F11 to get into manual camera mode in full screen and then use autoit to create a mouse motion to attempt to center the pinball table on screen. Autoit will move the table in the same direction regardless of what coordinates are scripted for the movement. Only the mouse motion duration/speed effects the distance the camera is moved but not direction. Real mouse movement can properly center a table. hyperlinks references removed due to spam filter.

#544 No Bug Read from console with FileRead paulpmeier
Description

The description of this feature I missed in the AutoIt Help: FileOpen("con", 4) opens console for binary input.

#AutoIt3Wrapper_Change2CUI=y

$input = ""
ConsoleWrite(@CRLF & "Write some text and close with ENTER: ")

$file = FileOpen("con", 4)
While 1
	$chr = FileRead($file, 1)
	If $chr = @CR Then ExitLoop
	$input = $input & BinaryToString($chr)
WEnd
FileClose($file)

ConsoleWrite(@CRLF & "Input was: " & $input & @CRLF)

Compile as CUI and start the exe-file from console prompt. (Tested with AutoIt 3.2.12.1 and Windows XP SP2)

Paul

#545 Rejected Add other possibility in FAQ, point 13. Howto: custom icon Triblade
Description

In the helpfile under FAQ, point 13 there is written how to add a custom icon to a script.

In topic: http://www.autoitscript.com/forum/index.php?showtopic=79048&hl= Zedna pointed out that it could be simpeler with: #AutoIt3Wrapper_icon=your_icon.ico in the top of the script and compile script from Scite (Scite4AutoIt3) by F7.

Much quicker and easier to read in my opinion.

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