Hi
A question…
renoise.app(): show_custom_dialog ( title , content , key_handler )
Is it possible to change the title text with a button and your notifier(the button is inside the tool)?The title is the leftmost name of the top toolbar.
The button and your notifier:
vb:button {
id = “title_button”
notifier = function() change_title_tool() end
}
The title is a text.I would like to build a status bar, but taking advantage of the top bar.I have already built a lower status bar that works well for any button or other element. But I’m trying to compact my tool to the max.
The title may be represented thus: renoise.app():show_custom_dialog( ’ ‘…tool_name…’ - ‘…tool_status…’ ’ ,content , key_handler )
tool_status = a function with return always a text
The thing is that it obeys any button or element… Executes any function and that it changes the state (tool_status).
This is possible?
Thanks!!!