博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
StrokePlus
阅读量:6271 次
发布时间:2019-06-22

本文共 1887 字,大约阅读时间需要 6 分钟。

--排列窗口 acGetAllWindows(0)local allwindows=sp_all_windowslocal ewinlist={}local count=1for k,v in pairs(allwindows) do     local name=acGetClassName(v,gsx,gsy)    if name=="CabinetWClass" then        ewinlist[count]=v        count=count+1    endendfunction cp(v1,v2)    local t1=acGetWindowTitle(v1, gsx, gsy)    local t2=acGetWindowTitle(v2, gsx, gsy)    return t1< t2endtable.sort(ewinlist,cp)local shandle=acGetMonitorFromPoint(gsx,gsy)local leftx=acGetMonitorLeft(shandle,1)local rightx=acGetMonitorRight(shandle,1)local topy=acGetMonitorTop(shandle,1)local bottomy=acGetMonitorBottom(shandle,1)local height=math.abs(topy-bottomy)local width=math.abs(leftx-rightx)local columncount=2local rowcount=math.ceil((count-1)/columncount)local windowheight=height/rowcountlocal windowwidth=width/columncountfor i=1,count-1 do     local v= ewinlist[i]    acActivateWindow(v,gsx,gsy,0)    acRestoreWindow(v,gsx,gsy)    acSetWindowSize(v,gsx,gsy,windowwidth,windowheight)    local c=i%columncount    if c==0 then        c= columncount    end    local r=math.ceil(i/columncount)    acMoveWindow(v,gsx,gsy,(c-1)*windowwidth,(r-1)*windowheight)end

 

local targetwindow= acFindWindow("classname",nil)if targetwindow then    acActivateWindow(targetwindow,gsx,gsy,0)    acMaximizeWindow(targetwindow,gsx,gsy)    acSendKeys("+{F_5}")endlocal AllWindows= sp_all_windowsfor k,v in pairs(AllWindows) do    local classname= acGetClassName(v,gsx,gsy)    if classname=="whatyouwant" then        local windowtitle=acGetWindowTitle(v,gsx,gsy)        local target="containthis"        if string.find(windowtitle,target ) then            acMinimizeWindow(v,gsx,gsy)        end    endendacDelay(1000)acSendKeys("+{F_5}")acSendKeys("^p")acSendKeys("{NUMPAD1}") acShellExecute("open","d:\\foobar.bat","","",1) acShellExecute("open","https://www.foobar.com","","",1)

 

转载于:https://www.cnblogs.com/Searchor/p/7504299.html

你可能感兴趣的文章
android中用ExpandableListView实现三级扩展列表
查看>>
%Error opening tftp://255.255.255.255/cisconet.cfg
查看>>
java读取excel、txt 文件内容,传到、显示到另一个页面的文本框里面。
查看>>
《从零开始学Swift》学习笔记(Day 51)——扩展构造函数
查看>>
python多线程队列安全
查看>>
[汇编语言学习笔记][第四章第一个程序的编写]
查看>>
android 打开各种文件(setDataAndType)转:
查看>>
补交:最最原始的第一次作业(当时没有选上课,所以不知道)
查看>>
Vue实例初始化的选项配置对象详解
查看>>
PLM产品技术的发展趋势 来源:e-works 作者:清软英泰 党伟升 罗先海 耿坤瑛
查看>>
vue part3.3 小案例ajax (axios) 及页面异步显示
查看>>
浅谈MVC3自定义分页
查看>>
.net中ashx文件有什么用?功能有那些,一般用在什么情况下?
查看>>
select、poll、epoll之间的区别总结[整理]【转】
查看>>
CSS基础知识(上)
查看>>
PHP中常见的面试题2(附答案)
查看>>
26.Azure备份服务器(下)
查看>>
mybatis学习
查看>>
LCD的接口类型详解
查看>>
Spring Boot Unregistering JMX-exposed beans on shutdown
查看>>