Overview
Arithmetic shift left.
(string) Number that you want get Shifting.
(number) Number of time that you want your number shift to left.
(string) Return Shifted numbers in string mode.
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.
num = Memory.ShiftLeft(20, 3) Dialog.Message("", num)
num = Memory.ShiftLeft("20", 3) Dialog.Message("", num)
num = Memory.ShiftLeft("90000000000000", 10) Dialog.Message("", num)
See also: Related Actions