保存工作流程osx?

发布于 2024-12-04 06:31:08 字数 1459 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

書生途 2024-12-11 06:31:08

您可以使用 AppleScript 编辑器记录您的操作,并将生成的文件放在桌面上。它就像 word 中的宏;)(但非常强大!)

you can record your actions with the AppleScript Editor, and place the resulting file on your desktop. it's like macros in word ;) (but insanely powerful!)

轻许诺言 2024-12-11 06:31:08

我建议您使用 AutoIt(www.autoitscript.com),它很容易使用。非常酷的软件,而且它是免费的。我刚刚编写了这个脚本来测试它,并且效果很好。一切都很简单,并且在其帮助文件中得到了很好的解释。

Run("notepad.exe")
Run("calc.exe")

WinWaitActive("[CLASS:Notepad]") ; you can define by class name
WinWaitActive("Calculator") ;you can define by title

If WinExists("[CLASS:Notepad]") Then ;you can check if window exist
    WinMove("[CLASS:Notepad]", "", 0, 0, 500, 500) ;move and resize
    WinMove("Calculator", "", 50, 300) ;only move
EndIf

WinActivate("[CLASS:Notepad]", "") ;activate a window

Sleep(3000) ;wait 3 seconds
WinClose("[CLASS:CalcFrame]", "") ; close a window

I will suggest you to use AutoIt from (www.autoitscript.com) It is easy to use. Amazing cool software, and it is free. I just made this script to test it, and it worked well. Evrything is simple and well explained in its helpfiles.

Run("notepad.exe")
Run("calc.exe")

WinWaitActive("[CLASS:Notepad]") ; you can define by class name
WinWaitActive("Calculator") ;you can define by title

If WinExists("[CLASS:Notepad]") Then ;you can check if window exist
    WinMove("[CLASS:Notepad]", "", 0, 0, 500, 500) ;move and resize
    WinMove("Calculator", "", 50, 300) ;only move
EndIf

WinActivate("[CLASS:Notepad]", "") ;activate a window

Sleep(3000) ;wait 3 seconds
WinClose("[CLASS:CalcFrame]", "") ; close a window
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文