-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
217 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# 移动 * 网格 | ||
在桌面虚拟一个网格,依次移动鼠标至网格中的每个单元格,并调用自定义的子流程。需要配合 [移动鼠标](./actions/mouse/MovePointer.md)动作,移动鼠标至网格左上角第一个单格中心位置。 | ||
|
||
![CellMove](./images/12.png ':size=90%') | ||
|
||
## 子流程 | ||
> 支持,当前鼠标位置传入子流程。 | ||
|
||
## 运行参数 | ||
|
||
* 单元格宽度 | ||
> | ||
* 单元格高度 | ||
> | ||
* 行数 | ||
> 风格行数 | ||
* 列数 | ||
> 网格列数 | ||
* 半径 | ||
> 以单元格中心为圆心,该参数为半径,动态计算最终的目标位置。该参数不要超过单元格长宽中的最小值。 | ||
|
||
## 输出 | ||
|
||
> 无 | ||
## 资源 | ||
|
||
* 流程:https://github.com/shelllet/WinUi/blob/main/mouse/CellMove.simple | ||
|
||
<!-- <iframe type="text/html" height="640px" src="https://www.youtube.com/embed/LBktoepioXw" frameborder="0"></iframe> | ||
<iframe src="//player.bilibili.com/player.html?bvid=BV1NF411k7Un&page=1&autoplay=0" height='640px' scrolling="no" frameborder="no" framespacing="0" allowfullscreen="true"></iframe> --> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# 代码注入 | ||
|
||
创建一个进程,在进程启动的时候附加一个动态链接库。这个动作可以把动态库加载到进程的运行空间,也可以称作`DLL`注入。 | ||
|
||
![AttachProcess](./images/19.png ':size=90%') | ||
|
||
## 权限 | ||
> 无要求 | ||
## 子流程 | ||
|
||
> 不支持 | ||
## 运行参数 | ||
|
||
* 进程 | ||
> 进程的路径,`Windows` 系统同名进程可以有多个,可以用进程全路径区分。 | ||
* 动态库 | ||
> 要附加的动态链接库。注意适配`32`位或者`64`位可执行程序。 | ||
## 输出 | ||
|
||
> 无 | ||
|
||
## 资源 | ||
|
||
* 示例流程:https://github.com/shelllet/WinUi/blob/main/system/AttachProcess.simple | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# 读取内存 | ||
|
||
读取指定进程地址范围内的数据。 | ||
|
||
![ReadMemory](./images/18.png ':size=90%') | ||
|
||
## 权限 | ||
> 无要求 | ||
## 子流程 | ||
|
||
> 不支持 | ||
## 运行参数 | ||
* 进程 | ||
> 进程的路径,`Windows` 系统同名进程可以有多个,可以用进程全路径来区分。 | ||
* 地址 | ||
> 用户空间的内存地址。 | ||
* 长度 | ||
> 读取的数据长度。 | ||
## 输出 | ||
|
||
> 内存数据,参考:[字节序列](./types/Bytes.md)。 | ||
## 资源 | ||
|
||
* 示例流程:https://github.com/shelllet/WinUi/blob/main/system/ReadMemory.simple | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# 写内存 | ||
|
||
在进程指定的内存地址处写入数据。 | ||
|
||
![WriteMemory](./images/17.png ':size=90%') | ||
|
||
## 权限 | ||
> 无要求 | ||
## 子流程 | ||
|
||
> 不支持 | ||
## 运行参数 | ||
|
||
* 进程 | ||
> 进程的路径,`Windows` 系统同名进程可以有多个,可以用进程全路径区分。 | ||
|
||
* 地址 | ||
> 用户空间的内存地址。 | ||
* 数据 | ||
> 写入的数据。如果写入字节序列,请使用:[Bytes](./types/Bytes.md),创建字节序列。 | ||
## 输出 | ||
|
||
> 无 | ||
|
||
## 资源 | ||
|
||
* 示例流程:https://github.com/shelllet/WinUi/blob/main/system/Wait.simple |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Ptr | ||
定义一个 *Ptr* 类型,用来表示内存地址,也可称为指针。 | ||
|
||
## 子流程 | ||
> 不支持 | ||
|
||
## 运行参数 | ||
|
||
* 值 | ||
|
||
> 使用字符串或者十六进制官字行串表示一个内存地址,例如:`0x014B30A8`。 | ||
|
||
## 输出 | ||
|
||
> 指针 | ||
|
||
## 脚本调用 | ||
|
||
```python | ||
import simple; | ||
|
||
ptr = simple.Ptr(0x014B30A8) | ||
|
||
``` | ||
|
||
## 示例 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,10 @@ | ||
# MouseButtons | ||
# MouseButtons | ||
|
||
* Left | ||
> 鼠标左键 | ||
* Middle | ||
> 鼠标中键 | ||
* Right | ||
> 鼠标右键 | ||
* XButton | ||
> 鼠标侧键 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Bytes | ||
|
||
Class `Bytes`. 字节序列。 |