Is it possible to edit a previously sent chat message using the Skype4Py api?

686 Views Asked by At

As the title says, I'm curious if the functionality of editing a sent chat message can be replicated programatically using the Skype4Py api. I'm not sure when Skype added this feature, and the API, as far as I know, hasn't been maintained in some years, so I was just curious.

I don't see anything that looks like it would do it in the docs, but,I figured I check here before I give up.

1

There are 1 best solutions below

0
On

Looking at the docs, each chat message has a body (the text of the message) and a IsEditable property. So long as IsEditable=True you should be able to do m.Body = "some new text"