-
The "Switch (Any)" Node (Impact Pack) has an "selected_label" output, so I'm trying to use the "Show text" node (pythongosssss) as an HUD display This works very well at first, but when I open a saved workflow, the text in the "Show text" node is blank. And it only shows up again when I change a switch input and run a prompt. Has anyone tried this ? I'm not sure if the issue is related to the Comfy UI or the custom nodes, so I posted here. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
In the workflow, information is stored before the prompt is executed. The To implement this functionality, it is necessary to create a specialized custom node for the |
Beta Was this translation helpful? Give feedback.
-
OK. thanks. The switch node allows me to create more complex workflows, that make it easier to try new things. A selected label display on the switch node itself would make it easier to check my current workflow configuration. I'm leaving the discussion open, in case someone else wants to comment. |
Beta Was this translation helpful? Give feedback.
-
Perhaps it would be more straightforward to just display the input label text in the selection widget ( see edited image ), instead of creating an extra area on the node to display the text. |
Beta Was this translation helpful? Give feedback.
In the workflow, information is stored before the prompt is executed. The
Show text
node, on the other hand, updates its information after the workflow has been executed.To implement this functionality, it is necessary to create a specialized custom node for the
Switch (Any)
that operates independently during workflow execution.