Hallo Leute! Habt ihr zufällig die demo-datei mit den dll calls "user32.dll" // "AnimateWindow" noch ---> nähere beschreibung im Forum

  • Hallo Leute ... wie ihr schon mitbekommen habt suche ich die datei mit den dll calls "AnimateWindow"
    In diesem Skript verschwiendet und erscheint die ganze zeit ein Fenster mit "YOU MISSED ME!"

    DLL CALL

    [autoit]

    DllCall("user32.dll", "int", "AnimateWindow", "hwnd", $GUI, "int", 1000, "long", 0x00080000)

    [/autoit]

    ja... also... des wär einer von vielen... könnetet ihr mir bitte die anderen dll calls posten ??? :D


    danke
    mfg. Andi

  • Ich versteh deine Frage nicht ganz.
    Die AnimatedWindow-Funktion ist in der User32.dll, sieht man doch ;)

    • Offizieller Beitrag

    Hallo

    Spoiler anzeigen
    [autoit]

    $hwnd = GUICreate ( "Blend test", 300, 300,-1,-1)
    WinSetOnTop($hwnd,"",1)
    guisetbkcolor(0x0)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00080000 );fade-in
    GUISetState ( )
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00090000 );fade-out
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00040001 );slide in from left
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00050002 );slide out to left
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00040002 );slide in from right
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00050001 );slide out to right
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00040004 );slide-in from top
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00050008 );slide-out to top
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00040008 );slide-in from bottom
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00050004 );slide-out to bottom
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00040005 );diag slide-in from Top-left
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x0005000a );diag slide-out to Top-left
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00040006 );diag slide-in from Top-Right
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00050009 );diag slide-out to Top-Right
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00040009 );diag slide-in from Bottom-left
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00050006 );diag slide-out to Bottom-left
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x0004000a );diag slide-in from Bottom-right
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00050005 );diag slide-out to Bottom-right
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00040010 );explode
    Sleep(500)
    DllCall ( "user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 1000, "long", 0x00050010 );implode

    [/autoit]

    Mfg Spider