code
#cs ----------------------------------------------------------------------------
 
 
AutoIt Version: 3.3.14.5
Author:         myName
 
 
Script Function:
    Template AutoIt script.
 
 
#ce ----------------------------------------------------------------------------
 
 
; Script Start - Add your code below here
; 带有三个自定义函数的示例脚本
; 请注意变量的使用,ByRef传递 以及 返回值(Return)的用法
$bak = ClipGet()
MsgBox(0, "当前剪贴板的内容:", $bak)
 
 
ClipPut($bak & "随便放些东西进去")
MsgBox(0, "当前剪贴板的内容:", ClipGet())
 
 
 
 
MsgBox(0,"", "循环结束")
 

 

 

 

 

 

 

 

相关文章:

  • 2021-12-30
  • 2021-09-01
  • 2021-11-07
  • 2021-10-12
  • 2019-07-25
  • 2021-12-31
  • 2022-01-15
猜你喜欢
  • 2022-01-11
  • 2021-09-14
  • 2021-11-27
  • 2021-11-27
  • 2021-11-27
  • 2021-04-30
相关资源
相似解决方案