How can I use the browser button to control the browser in Ableton live

0

I’m trying to turn the browser off and on. When I let the browser button go it toggle back. It won’t stay close or open. I put the exit after the action and the browser still toggle back.

Spirit Posted new comment March 12, 2025

When I let the browser button go it toggle back. It won’t stay close or open. I put the exit after the action and the browser still toggle back.

0

Reaction actions ‘show view’ and ‘hide view’.
‘Live object model > Application > hide view / show view’
Then for ‘view name’, select ‘Browser’.

Spirit Unselected an answer February 27, 2025
0

To toggle between the 2, create 2 Action blocks, 1 which shows the view and 1 which hides the view.
You can then use the conditions section in each Action block to check if the view is currently hidden or shown before its action is done.

Add an exit after the action too. (script > exit reaction here) so that the reaction is exited immediately after the action if the condition is met.
i.e.
Condition:
if ‘is view visible’ is equal to Tue
Actiions:
hide view
exit reaction here

JohnC Posted new comment March 2, 2025

Remember to include the ‘exit reaction here’ in each Action block