scan_text_nodes
Scan and analyze all text nodes within a specified Figma node to extract design text information for integration or modification via natural language commands.
Instructions
Scan all text nodes in the selected Figma node
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nodeId | Yes | ID of the node to scan |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"nodeId": {
"description": "ID of the node to scan",
"type": "string"
}
},
"required": [
"nodeId"
],
"type": "object"
}