Type: ISym3Tools

Summary:

Sym3 Tools. How to use (example): Tools.Mouse.SetCursorPosition(10, 10);

Remarks:

Methods:

GetColorAt(System.Int32,System.Int32)

Summary:

Get color at pixel

Parameters:

  1. x: x value in screen coordinates
  2. y: y value in screen coordinates

Returns:

color at x,y

Example:

This example shows you how to get color at x,y position

            var c = Tools.GetColorAt(100, 200);
            print("Alpha = " + c.A);
            print("Red = " + c.R);
            print("Green = " + c.G);
            print("Blue = " + c.B);
            

Properties

Mouse

Summary:

Gets access to mouse operations

Type:

IMouseOperations

Access:

Read