BoogY Posted August 18, 2009 Posted August 18, 2009 Everytime i put that in a script it gives me errors.. is i delete it everithing is OK.!!!!!
RagsRevenge Posted August 18, 2009 Posted August 18, 2009 Everytime i put that in a script it gives me errors.. is i delete it everithing is OK.!!!!!Are you passing correct parameters to the function?From the help file, try dim $x$x = BitOr(3, 6)msgBox(1, "", $x) ;should give you 7.post some code if you still can't figure it out.
PsaltyDS Posted August 18, 2009 Posted August 18, 2009 (edited) Everytime i put that in a script it gives me errors.. is i delete it everithing is OK.!!!!!BitOr() is a native AutoIt function and doesn't require an include file. You must have your call wrong, as suggested by RagsRevenge. >_<P.S. It isn't required, but by convention all non-native function names start with an underscore, i.e. _Min() and _Max() come from the Math.au3 UDF include file. Edited August 18, 2009 by PsaltyDS Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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