sunny617 发表于 2009-7-9 10:58:44

如何做个等待后面的点点点的效果。。求解

本帖最后由 sunny617 于 2009-7-9 15:14 编辑

如题

    我想做个例如:等待。。。

这个后面的点怎么做出效果
在相对时间内出现。 /。。 /。。。

求解

《我知道有人发过这样的贴子,但是我想不到用什么主题搜索》:face (36):

sunny617 发表于 2009-7-9 11:38:10

没有高手在吗???

:face (35):

kn007 发表于 2009-7-9 11:40:15

学会搜索,还有你 不是下了我写的东西了吗?

kn007 发表于 2009-7-9 11:42:42

http://www.autoitx.com/forum.php?mod=viewthread&tid=8043&page=1&fromuid=7644076#pid65180

自己看看吧

你已经购买了,下载不用钱了

大绯狼 发表于 2009-7-9 12:56:26

#include <GUIConstants.au3>

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 438, 162, 193, 125)
$Label1 = GUICtrlCreateLabel("请稍等", 112, 64,100,20)
AdlibEnable("wait", 1000)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

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

        EndSwitch
WEnd

Func wait()
        if GUICtrlRead($Label1)="请稍等...." then GUICtrlSetData($Label1,"请稍等")
        GUICtrlSetData($Label1, GUICtrlRead($Label1) & ".")
EndFunc   ;==>wait

sunny617 发表于 2009-7-9 13:18:35

呵呵。。。我一时忘了放哪。。经你一提想起

sunny617 发表于 2009-7-9 13:27:49

AdlibRegister("_conut" ,1000)

这个是什么意思呢?KN007

sunny617 发表于 2009-7-9 13:35:01

我的这个版本比较低对你那个函数没定义
用大绯狼的AdlibEnable中用

谢谢二位:face (14):

kn007 发表于 2009-7-9 16:17:03

AdlibRegister
Registers an Adlib function.
3310用到的,注册。。。
新版不用了
页: [1]
查看完整版本: 如何做个等待后面的点点点的效果。。求解