Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (454 - 456 of 3933)

Ticket Resolution Summary Owner Reporter
#368 Fixed Success of _ArrayToClip is now -1 (used to be 1 and as still documented) Gary John.Rainbow@…
Description

The "Success" return of function _ArrayToClip is now -1 (older production release returned "1" and the current documentation for this function is also "1").

The workaround is either to use the new "Success" value of "-1" (not recommended in case this function is corrected to the documentation) or to test that it is <> 0

For example, Return Flag in the script below shows as "-1" although it was successful (according to the documentation, success = 1)

#include <Array.au3>

Local $avArray = StringSplit("a,b,c,d,e,f,g,h,i", ",")
$iRetCode = _ArrayToClip($avArray, 1)
MsgBox(0, "Return Flag ", "$iRetCode = " & $iRetCode)
MsgBox(0, "_ArrayToClip() Test", ClipGet())
#2882 Fixed AutoItX PixelChecksum Bug Jon JohnOne
Description

It does not work in C# (don't know about other OS') and returns 0 regardless of coordinates.

namespace AutoItXTest
{
    class Program
    {
        static void Main(string[] args)
        {
            Rectangle Rect = new Rectangle(10, 10, 10, 10);
            System.UInt32 cksm = AutoItX.PixelChecksum(Rect, 1);
            //uint cksm = AutoItX.PixelChecksum(Rect, 1);
            Debug.WriteLine("Checksum = " + cksm.ToString());
        }
    }
}

I suspect it is because the return value can be as large as uint64, and the function only accommodates a return of uint32.

#31 Completed AutoIt user agent added to internet functions Jon Jon
Description

AutoIt currently uses a blank user agent for internet functions. Many website block this and cause InetGet to fail. Need to add a non-blank user agent.

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