mqscript_ui_newlayout
Create mobile UI layouts with specified orientation for automation scripts, enabling structured interface design for device control.
Instructions
Create a new UI layout
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| orientation | No | Layout orientation: vertical or horizontal | vertical |
Input Schema (JSON Schema)
{
"properties": {
"orientation": {
"default": "vertical",
"description": "Layout orientation: vertical or horizontal",
"enum": [
"vertical",
"horizontal"
],
"type": "string"
}
},
"required": [],
"type": "object"
}