echo

Updated 远程教学相关文档 (markdown)

... ... @@ -48,58 +48,6 @@ http://192.168.0.100:8788/home/sign?identifier=7 (identifier是用户id)
[详细内容](远程教学之页面动作消息)
页面动作相关消息应该附加上消息在页面内的操作序号,通过客户端逻辑保证教师版和学生版的操作顺序一致。
#### 页面动作命令定义
通用的基本动作定义
* 按钮点击(command:clickButton)
* 单击控件(command:singleTap)
* 双击控件(command:doubleTap)
* 分段控件的点击(command:clickSegmentedControl)
* 分页ScrollView的滚动(command:gotoSpecifiedScrollViewPage)
例子
```
type:templateAction
command:clickButton
controlId:WordExplanationTextSwitcher
index:2(保证页面内消息按顺序)
type:templateAction
command:clickSegmentedControl
controlId:WordCompareSegmentedControl
parameter:1(在这里是分段的索引)
index:2(保证页面内消息按顺序)
type:templateAction
command:gotoSpecifiedScrollViewPage
controlId:LogicTreeScrellView
parameter:3(在这里是页码)
index:2(保证页面内消息按顺序)
```
多媒体播放器动作定义
* 播放(play)
* 暂停(pause)
* 停止(stop)
* 全屏(fullscreen)
* 小屏(smallscreen)
* 进度消息(progress)
```
type:templateAction
subType:playerAction
command:play
index:2
type:templateAction
subType:playerAction
command:progress
parameter:进度百分比(这个应该更通用)
index:2
```
### 画板相关消息
[详细内容](远程教学之画板相关消息)
... ...