Multiply

Abstract AS2

@t0 = @pop();
@push(@pop() * @t0);

Adobe documentation

ActionMultiply

ActionMultiply multiplies two numbers and pushes the result back to the stack.

FieldTypeComment
ActionMultiplyACTIONRECORDHEADERActionCode = 0x0C

ActionMultiply does the following:

  1. Pops value A off the stack.
  2. Pops value B off the stack.
  3. Converts A and B to floating-point; non-numeric values evaluate to 0.
  4. Multiplies A times B.
  5. Pushes the result, A*B, to the stack.