Overview
Reads a double (8 bytes) number from the specified memory address. Range: unlimited.
(number) Address of Memory.
(number) Return Double that reads from memory.
When adding an action with the script editor, you can use this field to specify a variable that the return value will be stored in.
mem = Memory.Allocate(1024) Memory.PutDouble(mem, 102487.56) Dialog.Message("", Memory.GetDouble(mem)) -- Print 102487.56 Memory.Free(mem)
See also: Related Actions