Kennt jemand eine schnellere methode für diesen hier ?
PHP Code:
Dim x As Integer
Dim y As Integer
For x = 1 To 1920
For y = 1 To 1080
Dim pixColor As Color = GetPixelColor(Cursor.Position.X, Cursor.Position.Y)
Cursor.Position = New Point(x, y)
If pixColor.ToString = "010101" Then
GoTo Ende
End If
Next
Next
Ende:







