Hello, I'm working with ASM in AutoIt and I've problem with string using (Flat Assembler isn't good converter). 1/ I wrote little example of calling MessageBox but it doesn't work. My code: #include <Memory.au3> Global Const $pRemoteCode = _MemVirtualAlloc(0, 512, $MEM_COMMIT, $PAGE_EXECUTE_READWRITE) Global Const $tCodeBuffer = DllStructCreate("byte[512]", $pRemoteCode) Global Const $USER32_MessageBoxA = GetFuncAddress("user32.dll", "MessageBoxA") ; String = "Hello" Global Const $tSt