You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to add a new annotation like a text-rectangle or speech-bubble, but I can't find the annotations collection in the project class. Is it missing?
If I am missing something, do you have an example of how to add an anotation?
I see that this issue is still open. If so, when will this enhancement be available?
The text was updated successfully, but these errors were encountered:
If I am missing something, do you have an example of how to add an anotation?
There are no examples, though a good start would be some tests, I guess. The way to add annotations is through the Track class, passing the results of the various annotation functions as the first argument:
from camtasia.annotations.shapes import rectangle
from camtasia.annotations.types import Color
. . .
track = timeline.tracks[0]
track.medias.add_annotation(rectangle(fill_color=Color(1, 0, 0)), start=100, duration=300)
I haven't actually tested this on a recent version of camtasia, but I know this used to work (at least for whatever limited needs I had for it).
I know all of this is underdocumented, etc., and I apologize for that, but this project has fallen way off of my radar. If it's a useful project for you, I'd be happy to merge in any improvements you want to provide.
I see that this #6 is still open. If so, when will this enhancement be available?
I want to add a new annotation like a text-rectangle or speech-bubble, but I can't find the annotations collection in the project class. Is it missing?
If I am missing something, do you have an example of how to add an anotation?
I see that this issue is still open. If so, when will this enhancement be available?
The text was updated successfully, but these errors were encountered: