mqscript_fw_create
Create a floating window with specified dimensions and position for mobile automation scripts, enabling UI element display and interaction during device control operations.
Instructions
Create a floating window
Input Schema
Name | Required | Description | Default |
---|---|---|---|
height | No | Height | |
id | Yes | Floating window ID | |
width | No | Width | |
x | No | X position | |
y | No | Y position |
Input Schema (JSON Schema)
{
"properties": {
"height": {
"default": 100,
"description": "Height",
"type": "number"
},
"id": {
"description": "Floating window ID",
"type": "string"
},
"width": {
"default": 200,
"description": "Width",
"type": "number"
},
"x": {
"default": 100,
"description": "X position",
"type": "number"
},
"y": {
"default": 100,
"description": "Y position",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}