You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Blockly
Is there a way to keep the toolbox open until someone clicks outside of the toolbox, rather than it closing when you drag a block out?
Maribeth Moffatt
unread,
Mar 29, 2024, 1:14:31 PM3/29/24
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Blockly
Hello,
The part of the toolbox that opens and closes is called the flyout. You can have it remain open by calling `setAutoClose(false)` on the flyout. You can access the flyout with `myWorkspace.getFlyout()`. If you enable this, the flyout will always remain open by default. You can manually close it on an event trigger of your choice by calling `hide()` on the flyout.