hello
I have a feature request.
1. I would like the ability to copy the REPLIE. Sometimes you want to move only certain REPLIEs between two FLOWs.
2. I want to change the color and size of the REPLIE text. I want to set CSS in HTML with BOT.
3. I want to automatically display today's date etc. in the REPLIE. I tried using the Date class with javascript from the action menu, but it doesn't work. Is there a way to enable this?
Hello @sakuma6
async payload => { try { const datetime = moment() const text = new Text(`This is a reply text from your bot with datetime: ${datetime}.`) const message = new Message(`This is a reply text from your bot as a fallback text.`) message.addResponse(text) return message } catch(err) { console.error(err) } }
moment(date).tz('Europe/Amsterdam').format('LLLL')