crackdonalds Posted March 31, 2021 Posted March 31, 2021 Hi, In java I have this: byte val = 100; val = (byte) (val >> 2); System.out.println(val); What would be a good way to do (val >> 2) in autoit?
pseakins Posted March 31, 2021 Posted March 31, 2021 It really is terribly hard to find in the help, but the answer is BitShift, or BitRotate https://www.autoitscript.com/autoit3/docs/functions/BitShift.htm https://www.autoitscript.com/autoit3/docs/functions/BitRotate.htm crackdonalds 1 Phil Seakins
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now