Custom Query (3927 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (52 - 54 of 3927)

Ticket Resolution Summary Owner Reporter
#1327 Fixed F1 in Scite Does Not Open Help File for Some Keywords Valik wraithdu
Description

For some keywords, the help file is not opened via F1 in Scite (with Scite4AutoIt3 installed). Examples of broken keywords:

Send ConsoleWrite StringRegExp

#1348 No Bug aut2exe Mangles Named RCDATA Resources wraithdu
Description

If I add a named resource to AutoItSC.bin with ResHacker, then compile a script, the resource name is mangled. For example:

ResHacker -add AutoItSC.bin, AutoItSC.bin, mydata.dat, rcdata, MYDATA, 1033

Viewing the resulting AutoItSC.bin in ResHacker:

RCData -> MYDATA -> 1033

Viewing the compiled EXE in ResHacker:

RCData -> M( -> 1033
(or some other mangled name)

The actual data seems intact. The same problem happens with named resources of types BITMAP and ICON as well. I do not know if aut2exe_x64 has this problem or not.

#1406 Rejected Proposed Change to _WinAPI_HiWord() Gary wraithdu
Description

Considering the discussion a few weeks ago about BitShift being a *signed* shift in AutoIt, shouldn't the _WinAPI_HiWord function, and indeed all UDF functions where a DWORD needs to be split into hi and lo words by any means (the _WinAPI_HiWord function or manually via BitShift), be changed accordingly:

Func _WinAPI_HiWord($iLong)
    Return BitAND(BitShift($iLong, 16), 0xFFFF)
EndFunc   ;==>_WinAPI_HiWord

While an error likely won't occur very often, this is the only way to assure we are getting the correct hi word result, unless AutoIt changes the way it does BitShift to be unsigned.

I understand if you want to forgo this change in favor of waiting until AutoIt's internal number handling is revamped, but it is a viable patch in the meantime.

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