Overview
Copy the Text at the specified address to the destination memory address if specified, or at the end of the current buffer if omitted.
(number) Address of Memory.
(string) Text that want copied to buffer.
Nothing.
mem = Memory.Allocate(1024) Memory.PutString(mem, "AMSWaves", -1, "Ascii") Memory.CopyString(mem, "\r\n"); Memory.CopyString(mem, "2009"); Dialog.Message("Test", Memory.GetString(mem, -1, "Ascii")) Memory.Free(mem)
See also: Related Actions