There is a new plugin at my site. I had a few minutes and built a small library to expand the existing Math object with some new functions. Specifically, with this plugin you will be able to perform bitwise operations (not, and, or, xor, shift) on decimal numbers. It also adds a function to show decimals as hexadecimals. These are the new functions that are added to Math:The plugin is available as part of the current "Utilities" pack for AutoPlay Media Studio, or as an individual installer (which works with all products).
- Math.Not(number Num);
- Math.And(number Num1, number Num2);
- Math.Or(number Num1, number Num2);
- Math.Xor(number Num1, number Num2);
- Math.RShift(number Num, number Bits);
- Math.LShift(number Num, number Bits);
- Math.NumberToHex(number DecValue);
You can get it here.
Ulrich



Reply With Quote
