robertwayne / dpymenus

Simplified menus for discord.py developers.
https://dpymenus.com/
MIT License
26 stars 4 forks source link

Way to Edit Message into a Paginated Embed? #42

Closed shubhamshah02 closed 3 years ago

shubhamshah02 commented 3 years ago

I have a paginated embed but the contents inside take a while to load and therefore have a loading message. Can I edit the loading message with the paginated embed?

robertwayne commented 3 years ago

You can access the .output variable of a menu, which contains the discord Message object. You would be able to use .edit() on that to load in your data.

Or just display a standard message/Embed with your loading message, then when the data is loaded, you can open the menu separate.