楼上风云 发表于 2011-5-8 03:59:47

嵌套函数调用,学习了

z761003 发表于 2011-11-14 00:43:51

有显示透明的PNG吗

chenbaker 发表于 2012-1-3 14:34:43

非常感谢,从中得到了启发

wei999 发表于 2012-1-3 16:35:08

能不能默认图片大小

零度深蓝 发表于 2012-1-28 22:11:20

谢谢,研究下,收藏{:face (427):}

hds1989824 发表于 2012-11-29 22:53:38

mark 下 谢谢

dnvplj 发表于 2016-3-12 21:18:40

回复 6# afan
afan超版您好,能否播放单个的GIF动画出图片吗?

afan 发表于 2016-3-12 22:14:46

回复afan
afan超版您好,能否播放单个的GIF动画出图片吗?
dnvplj 发表于 2016-3-12 21:18 http://www.autoitx.com/images/common/back.gif


    虽然看不懂你的中文…
http://www.autoitx.com/thread-32938-1-1.html

dnvplj 发表于 2016-3-13 22:29:20

本帖最后由 dnvplj 于 2016-3-13 22:31 编辑

回复 6# afan
感谢超版的回复,我的意思是下面代码中要达到的效果,版主费心了。#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>

FileInstall("Setup.gif", @TempDir & "\Setup.gif")
$Form1 = GUICreate("Form1", 615, 438, 192, 124)
$Label1 = GUICtrlCreateLabel("Label1", 48, 48, 66, 17)
$Radio1 = GUICtrlCreateRadio("Radio1", 48, 144, 66, 33)
GUISetState(@SW_SHOW)

While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit
                       
                Case $Radio1
                        _Setgif()

        EndSwitch
WEnd

Func _Setgif();播放GIF图片
        1、设置图片位置及大小
        2、播放GIF图片
        3、停止播放
        4、隐藏图片       
EndFunc   ;==>_Setgif

zpmc123 发表于 2016-12-16 13:52:48

回复 6# afan


写的代码始终精小强悍
页: 1 [2]
查看完整版本: 『 已解决』 用AU3加载透明GIF图片的疑问