Koder Posted April 18, 2007 Posted April 18, 2007 I know the new Binary system is different in build 3.2.3.6... Should the new Binary() return the same value as BinaryString()? If not then how do I get that previous value? Between versions, these are not equal Binary("0xFFFFFFFFFFFF") <> BinaryString("0xFFFFFFFFFFFF") Thanks, Rick
PsaltyDS Posted April 18, 2007 Posted April 18, 2007 (edited) I haven't figured out the most efficient Binary -> String conversion yet. .... hmmmm Doesn't address efficiency, but this works (posted from another topic): #include <string.au3> $Bin = Binary ("Hello") ConsoleWrite("$Bin = " & $Bin & @LF) $Hex = Hex($Bin) ConsoleWrite("$Hex = " & $Hex & @LF) $Text = _HexToString($Hex) ConsoleWrite("$Text = " & $Text & @LF) Edited April 18, 2007 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
Koder Posted April 18, 2007 Author Posted April 18, 2007 Problem solved... I guess the functions do return the same value. I was working with magic packets (I forget who originally posted the code, but big thanks) and the new build would no long generate a proper packet. The problem was the MAC was not formed properly (probably due to changes in binary string handling)... Anyway, I've reworked it and simplified the magic packet function and can now power on my machines... This will work in older versions too by using BinaryString() instead of Binary()... ; Should always return a value of length 102 Func GenerateMagicPacket ( $sMAC) Local $MagicPacket = Binary("0xFFFFFFFFFFFF"), $MACData = Binary("0x" & $sMAC) For $i = 1 To 16 $MagicPacket &= $MACData Next Return $MagicPacket EndFunc
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