Flash CS3 Documentation |
|||
| ActionScript 2.0 Language Reference > ActionScript language elements > Operators > >>>= bitwise unsigned right shift and assignment operator | |||
expression1 >>>= expression2
Performs an unsigned bitwise right-shift operation and stores the contents as a result in expression1. The following two statements are equivalent:
A >>>= B; A = (A >>> B);
Availability: ActionScript 1.0; Flash Player 5
expression1 : Number - A number or expression to be shifted right.
expression2 : Number - A number or expression that converts to an integer from 0 to 31.
Number - The result of the bitwise operation.
>>> bitwise unsigned right shift operator, >>= bitwise right shift and assignment operator
Flash CS3
Send me an e-mail when comments are added to this page | Comment Report
Current page: http://livedocs.adobe.com/flash/9.0/main/00001262.html