QQ386263723 发表于 2014-1-4 22:16:27

[已解决]:Au3如何实现打开脚本时从内往外慢慢扩大打开,退出脚本时在从外往里缩小

本帖最后由 QQ386263723 于 2014-1-5 13:56 编辑

我这样编写是从上往下慢慢打开
$hwnd = GUICreate("Animate Window", 300, 300)
DllCall("user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 3000, "long", 0x00060004)
GUISetState()

afan 发表于 2014-1-4 23:09:04

$hGui = GUICreate('')
DllCall('user32.dll', 'int', 'AnimateWindow', 'hwnd', $hGui, 'int', 1000, 'long', 0x40010)
GUISetState()
Sleep(1000)
DllCall('user32.dll', 'int', 'AnimateWindow', 'hwnd', $hGui, 'int', 1000, 'long', 0x50010)

QQ386263723 发表于 2014-1-5 13:30:34

太谢谢afan 超级版主了,您人真是太好了?{:face (301):}
页: [1]
查看完整版本: [已解决]:Au3如何实现打开脚本时从内往外慢慢扩大打开,退出脚本时在从外往里缩小