Int64 object
From FusionWiki
(Redirected from Int64)
| Int64 object | |
|---|---|
| General Information | |
| Author: | Tigerworks Productions |
| Release Date: | 2003(?) |
| Status: | Stable |
| Last updated: | Unknown |
| Version: | ??? |
| Build: | ??? |
| Developer-only: | No |
| Website: | Not available |
| Download: | Bonus Pack 1 |
| Runtime Versions | |
| HWA: | No |
| Flash: | No |
| Java: | No |
| Java Mobile: | No |
| Vitalize!: | No |
| Unicode: | No |
The Int64 object is an extension for Multimedia Fusion 2. It gives you one signed 64-bit integer and some actions to manipulate it. There are also some expressions for calculations with other numbers besides the internal one, along with some conditions as well. The 64-bit numbers are passed as strings because MMF2 cannot pass them in raw form; MMF2 only handles 32-bit integers.
NOTICE: All parameters that ask for a 64-bit number must be entered as a string. This is because it is currently the easiest way to pass the numbers. The expressions to get the values of the 64-bit numbers also return the numbers as a string, for the same reason.
Note: this object is no longer supported. You may want to use the new Advanced Int64 Object instead.
Actions
- Set Stored Number - Sets the internal number to the given number
- Stored Value -> Add - Adds to the stored number
- Stored Value -> Subtract - Subtracts from the stored number
- Stored Value -> Multiply - Multiplies the the stored number
- Stored Value -> Divide - Divides the stored number
- Stored Value -> Modulus - Performs a modulus operation on the stored number
- Stored Value -> Power - Raises the stored number to a power
Conditions
- Stored number comparisons -> Stored number is equal to... [negatable] - Compares the stored number == a value
- Stored number comparisons -> Stored number is different to... [negatable] - Compares the stored number != a value
- Stored number comparisons -> Stored number is greater than... [negatable] - Compares the stored number > a value
- Stored number comparisons -> Stored number is less than... [negatable] - Compares the stored number < a value
- Stored number comparisons -> Stored number is greater or equal to... [negatable] - Compares the stored number >= a value
- Stored number comparisons -> Stored number is less or equal to... [negatable] - Compares the stored number <= a value
- Comparisons -> Equals... [negatable] - Compares a value == a value
- Comparisons -> Not equal... [negatable] - Compares a value != a value
- Comparisons -> Greater than... [negatable] - Compares a value > a value
- Comparisons -> Less than... [negatable] - Compares a value < a value
- Comparisons -> Greater or equal... [negatable] - Compares a value >= a value
- Comparisons -> Less or equal... [negatable] - Compares a value <= a value
Expressions
- Get stored number (string) (Stored$) - Returns the stored number as a string
- Get stored number (truncated 32-bit int) (Stored) - Returns the stored number as a truncated 32-bit int that MMF2 can handle as a number internally
- Add (Add$) - Adds two 64-bit integers together and returns the outcome ("A"+"B")
- Subtract (Sub$) - Subtracts one 64-bit integer from another and returns the outcome ("A"-"B")
- Multiply (Mult$) - Multiplies two 64-bit integers together and returns the outcome ("A"*"B")
- Divide (Div$) - Divides one 64-bit integer by another and returns the outcome ("A"/"B")
- Modulus (Modulus$) - Performs a modulus operation with two 64-bit integers and returns the outcome ("A"%"B")
- Power (Power$) - Raises one 64-bit integer by the power of another and returns the outcome ("A"^"B")
