You are truly amazing
But it’s hard to believe that it was you behind this. I have seen your older posts and it seems like you have done a quiet a bit of memory play yourself.
My memory reading/writing scripts work fine in 6.1 but I soon as I upgrade to 8.1 they stop working. Is it something that was done on purpose or is here a way to fix my scripts so they work in 8.1 too?
This doesnt work , Can someone tell me why
#include <NomadMemory.au3>
$address = 0x000BB0E8
dim $Offset[5] = [0, 0x48, 0xA0, 0x68, 0x154]
While 1
$Process = _MemoryOpen(ProcessExists("solitaire.exe"))
If Not @error Then
$Value = _MemoryPointerRead($address, $Process, $Offset)
if Not @error Then ToolTip($Value[1],0,0)
_MemoryClose($Process)
EndIf
Sleep(100)
WEnd
This doesnt work not sure why
$value = PixelSearch(860, 450, 1060, 650, 0x73D544, "", "", $handle)
If IsArray($value) Then
If (860 < $value[0] < 960) And (450 < $value[1] < 550) Then
Let’s say I want to do pixelsearch within coordinates 0, 0, 100, 100, but I would like to ignore pixels in area 10,10,20,20. Is it possible to achieve?
Hello, I have changed my windows to Windows 7 (64bit) and I’m running in to some problems using AutoIt script from my VB 2010.
Public Declare Function AU3_MouseClick lib "autoitx.dll" (Optional ByVal szButton As String = "LEFT", Optional ByVal nX As Integer = -2147483647, Optional ByVal nY As Integer = -2147483647, Optional ByVal nClicks As Integer = 1, Optional ByVal nSpeed As Integer = -1)
and
AU3_MouseClick("Left")
Just not working for me anymore. I tried AutoItX3_x64.dll, no luck. Please help
Error:
PInvoke restriction: cannot return variants.
Can't to add auto-it to VB 2010 .Net 2010
My code:
Imports AutoItX3Lib
Public Class Form1
Dim cAutoit As New AutoItX3Lib.AutoItX3
Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
If e.KeyCode = Keys.I Then
cAutoit.Send("!k")
End If
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
End Class
I get "An error occurred creating the form. See Exception.InnerException for details. The error is: Retrieving the COM class factory for component with CLSID {1A671297-FA74-4422-80FA-6C5D8CE4DE04} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG))."
Please hep me solve it