Skip to content

Commit

Permalink
0.33
Browse files Browse the repository at this point in the history
  • Loading branch information
shelllet committed Feb 24, 2024
1 parent ebf1d46 commit f5d4f4e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 21 deletions.
2 changes: 1 addition & 1 deletion docx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

1. 添加 [点击 * 网格](./actions/mouse/CellClick.md)
2. [参数](./actions/control/Param.md) 动作添加索引参数。
3. 安卓操添加[*键盘输入*](./actions/android/Adbkeyboard.md),支持中文输入。
3. 安卓操作添加[*键盘输入*](./actions/android/Adbkeyboard.md),支持中文输入。
4. 修复:删除有多个入口动作时崩溃问题。
5. 监听鼠标键盘动作忽略由动作本身发出的键盘鼠标模拟。
6. 修复[判空](./actions/control/IsEmpty.md) 动作逻辑错误。
Expand Down
2 changes: 1 addition & 1 deletion docx/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
- [查找窗口](./actions/window/FindWindow.md)
- [特定窗口](./actions/window/SpecialWindow.md)
- [消息框](./actions/window/MessageBox.md)
- [前置窗口](./actions/window/ForegroundWindow.md)
- [激活窗口](./actions/window/ActiveWindow.md)
- [祖先窗口](./actions/window/WindowAncestor.md)
- [窗口置顶](./actions/window/PositionWindow.md)
- [运行框](./actions/window/WinRun.md)
Expand Down
2 changes: 1 addition & 1 deletion docx/actions/detection/MatchTemplate.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* 模板
> 要查找的图像,可以是彩色图像,不能比源图像大。
* 精度
> 根据相似度进行过滤, 低于该值的认为不匹配。 匹配越好,该值越大。**1** 表示完美匹配。
> 根据相似度进行过滤, 低于该值的认为不匹配。取值范围:(-1 ~ 1) ,**1** 表示完美匹配**-1** 表示糟糕的匹配,**0** 表示没有任何相关性
## 输出

Expand Down
Original file line number Diff line number Diff line change
@@ -1,32 +1,25 @@
# 前置窗口
#激活窗口
将创建指定窗口的线程置于前台并激活该窗口。键盘输入被定向到窗口,并且为用户改变各种视觉提示。系统为创建前台窗口的线程分配比其他线程稍高的优先级。

![ForegroundWindow](./images/05.png ':size=90%')
![ActiveWindow](./images/05.png ':size=90%')

## 子流程
> 不支持

## 运行参数

* [window](./types/Wnd.md)
* [窗口](./types/Wnd.md)
> 如果为空,返回当前的前置窗口。如果不为空,设置该窗口为前置窗口。
## 输出

> [`Wnd`](./types/Wnd.md)

## 脚本调用

```python
import simple;

```

## 资源

示例:https://github.com/shelllet/WinUi/blob/main/window/ForegroundWindow.simple
示例:https://github.com/shelllet/WinUi/blob/main/window/ActiveWindow.simple

<iframe type="text/html" height="640px" src="https://www.youtube.com/embed/zhsbenmmuwM" frameborder="0"></iframe>

Expand Down
8 changes: 6 additions & 2 deletions docx/introduction/installation/question/quest1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 安装完后无法启动问题排查方法
## [Deprecated] 事件日志

1. 按 <kbd>Windows</kbd> + <kbd>R</kbd> 打开运行框,输入 *eventvwr.msc* 打开事件日志。

Expand Down Expand Up @@ -26,4 +26,8 @@

8. 在事件查看器中,右键点击 *应用程序*,选择 *刷新*,查看日志详情。

![img](../images/09.png ':size=60%')
![img](../images/09.png ':size=60%')

## 日志文件

在资源管理器地址栏输入 `%LOCALAPPDATA%\Simple\Logs`,打开该目录,打开文件**-error.log*,查看日志文件。如果仍无法解决,加入群聊,联系开发人员。
2 changes: 1 addition & 1 deletion docx/introduction/installation/question/quest2.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# 覆盖安装无法启动

在资源管理器地址栏输入 `%LOCALAPPDATA%\Simple`,打开该目录,清空该目录下面的所有文件,重启 _WinUi++_
在资源管理器地址栏输入 `%LOCALAPPDATA%\Simple`,打开该目录,清空该目录下面的所有文件,重启 *WinUi++*
4 changes: 0 additions & 4 deletions docx/introduction/workflow/property.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@

在开始运行流程的时候隐藏 *WinUi++* 的主窗口,这样可以不影响鼠标或者是截图等相关的操作。

* 延迟时间(秒)

工作流程中每个动作被执行完成之后,会延迟该指定的时间,然后再去执行下一个动作。

* 输出更多日志

建议在设计流程的时候,勾选此选项,即可在输出窗口看到更多的调试信息;在运行阶段,取消勾选,可加快执行速度和减少输出的信息占用过多的内存。
Expand Down

0 comments on commit f5d4f4e

Please sign in to comment.