Jump to content

Recommended Posts

Posted

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

Posted (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)

:shocked:

Edited 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
Posted

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...