Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/07/2012 in all areas

  1. PlayHD

    Google Guitar Bot

    Hy all .. i made a program what play music on google guitar. How to: 1. Select one of the default music (pressing Load) 2. Press Ready. 3. Enter on http://www.google.com/logos/2011/lespaul.html and press HOME to start or END to stop 4. Enjoy .Exe .au3 ps.sorry for my english.
    1 point
  2. Zedna

    About ProcessClose

    According to AutoIt 3.1.0 sources ProcessClose uses TerminateProcess API function http://msdn.microsoft.com/en-us/library/windows/desktop/ms686714%28v=vs.85%29.aspx See Remarks section ... I think it may be what you are after
    1 point
  3. BrewManNH

    GUI doesn't close

    Most of the time is because the script is inside a function running something long and it takes a while to get back to the message loop.
    1 point
  4. ProgAndy

    Convert binary to file

    There was a small typo. This works for me: $sBinaryFile = "test.png" $sStringFile = "testbin.txt" $sNewBinaryFile = "test_out.png" ; read binary file $hFile = FileOpen($sBinaryFile, 16) $bBinary = FileRead($hFile) FileClose($hFile) ; write hex file $hFile = FileOpen($sStringFile, 2) FileWrite($hFile, String($bBinary)) FileClose($hFile) ; -------------------------------------- ; read hex file $hFile = FileOpen($sStringFile) $sString = FileRead($hFile) FileClose($hFile) ; write new binary file $hFile = FileOpen($sNewBinaryFile, 18) FileWrite($hFile, Binary($sString)) FileClose($hFile)
    1 point
  5. JohnOne

    The devs of autoit...

    pics or it didn't happen.
    1 point
×
×
  • Create New...