- Action Code:
0x0c
- Stack:
2 → 1
- SWF version:
4
Abstract AS2
@t0 = @pop();
@push(@pop() * @t0);
Adobe documentation
ActionMultiply
ActionMultiply multiplies two numbers and pushes the result back to the stack.
Field | Type | Comment |
ActionMultiply | ACTIONRECORDHEADER | ActionCode = 0x0C |
ActionMultiply does the following:
- Pops value A off the stack.
- Pops value B off the stack.
- Converts A and B to floating-point; non-numeric values evaluate to 0.
- Multiplies A times B.
- Pushes the result, A*B, to the stack.