leiqq 发表于 2012-12-8 12:19:57

100元写个阿里旺旺群群发脚本 以前有脚本可以参考

#RequireAdmin
Opt("SendKeyDownDelay", 20)
Global $wwpath, $idlist,$str
$str=FileRead(@ScriptDir&"\发送内容.txt")
$wwpath = IniRead(@ScriptDir & "\name.ini", "设置", "旺旺安装路径", "")
If Not FileExists($wwpath & "\AliIM.exe") Then
        MsgBox(0, "错误", "指定的旺旺主程序不存在,请修改配置文件内相应项目~!")
        Exit
EndIf
$idlist = IniReadSection(@ScriptDir & "\name.ini", "帐号=密码")
For $i = 1 To $idlist
        Dim $lasttitle = "", $Buttonid = 0, $wwuser, $wwpassword, $wwpid, $logonHWND, $userHWND, $n, $Buttonid = 0, $msgHWND, $title, $lasttitle = "lasttitle"
        Dim $pos,$winpos
        $wwuser = $idlist[$i]
        $wwpassword = $idlist[$i]
;~         删除安装目录残留的用户属性文件,防止群列表树显示不对应
        DirRemove($wwpath & "\profiles\cnalichn" & $wwuser, 1)
        $wwpid = Run($wwpath & "\AliIM.exe")
        $logonHWND = WinWait("阿里旺旺2011", "", 10)
        If Not IsHWnd($logonHWND) Then
                MsgBox(0, "错误", "运行旺旺安装程序后为发现登陆窗口,请检查安装路径设置是否正确~!")
                ExitLoop
        EndIf
        ControlClick($logonHWND, "", "StandardButton2")
        Send("{DOWN}")
        Send("{ENTER}")
        ControlSetText($logonHWND, "", "EditComponent2", $wwuser)
        ControlSend($logonHWND, "", "ATL:Edit1", $wwpassword)
;~         以下为点登陆按钮代码,由于自动发送容易出现密码错误,所以做两次重试
        BlockInput(1)
        Sleep(300)
        $pos=ControlGetPos($logonHWND, "", "StandardButton8")
        $winpos=WinGetPos($logonHWND)
        ControlClick($logonHWND, "", "StandardButton8")
        Sleep(3000)
        If Not WinExists($wwuser & "-阿里旺旺2011") Then MouseClick("left", $winpos+$pos+Int($pos/2), $winpos+$pos+Int($pos/2),1,0)
        BlockInput(0)
        $userHWND = WinWait($wwuser & "-阿里旺旺2011", "", 20)
        If Not IsHWnd($userHWND) Then
                MsgBox(0, "错误", "未检测到登陆后的旺旺窗口,请检查帐号密码设置是否正确~!")
                ExitLoop
        EndIf
        Sleep(3000)
;~         循环检测我的群按钮的控件id(此id为动态的)
        For $n = 1000 To 2999
                If StringInStr(ControlGetText($userHWND, "", $n), "我的群") Then
                        $Buttonid = $n
                        ExitLoop
                EndIf
        Next
        If $Buttonid = 0 Then
                MsgBox(0, "错误", "获取(我的群)按钮控件ID失败~!")
                ExitLoop
        EndIf
        ControlClick($userHWND, "", $Buttonid)
        WinActivate($userHWND)
        ControlFocus($userHWND, "", "WWUI.SuperListView2")
        ControlSend($userHWND, "", "WWUI.SuperListView2", "{HOME}")
        ControlSend($userHWND, "", "WWUI.SuperListView2", "{DOWN}")
        ControlSend($userHWND, "", "WWUI.SuperListView2", "{DOWN}")
        Opt("WinTitleMatchMode", 2)
        While 1
                WinActivate($userHWND)
                ControlFocus($userHWND, "", "WWUI.SuperListView2")
                ControlSend($userHWND, "", "WWUI.SuperListView2", "{DOWN}")
                ControlSend($userHWND, "", "WWUI.SuperListView2", "{ENTER}")
                $msgHWND = WinWait("(群号:", "", 5)
                If Not IsHWnd($msgHWND) Then ExitLoop
                $title = WinGetTitle($msgHWND, "")
                If $title = $lasttitle Then ExitLoop
                ControlSetText($msgHWND, "", "RichEditComponent1", $str)
                ControlSend($msgHWND, "", "RichEditComponent1", "{ENTER}")
                Sleep(500)
                WinClose($msgHWND)
                $lasttitle = $title
        WEnd
        Opt("WinTitleMatchMode", 1)
        ProcessClose($wwpid)
Next
ProcessClose($wwpid)
Exit

leiqq 发表于 2012-12-8 12:21:20

联系QQ605911893

cntxp 发表于 2012-12-11 21:11:51

银子太多了点
少点我就搞了

javarike 发表于 2012-12-14 23:39:36

不为钱,有空我帮你看看

huangke 发表于 2013-1-21 13:40:05

PS:旺旺发送有的,不过限制了每天20-30人的发送,没有什么实际意义了
页: [1]
查看完整版本: 100元写个阿里旺旺群群发脚本 以前有脚本可以参考