Search found 61 matches

by Jeremy Richard
28 Jun 2025, 16:57
Forum: Contents Sharing
Topic: Keylight
Replies: 2
Views: 1496

Re: Keylight

Thank you for trying it out. Personally I assigned the marking buttons to the keys of my keyboard's numpad (keyframe = 1, breakdown = 2, extreme = 3, etc.). And assigned shortcuts to the buttons that go to the next or previous marked frames. Going a bit on a tangent here, I think it could work bette...
by Jeremy Richard
08 Jun 2025, 14:07
Forum: Feature & Improvement requests
Topic: Having the 'Apply Current Content On Instances With Same Name' action to work between clips
Replies: 5
Views: 4523

Having the 'Apply Current Content On Instances With Same Name' action to work between clips

Having the 'Apply Current Content On Instances With Same Name' action to work between clips in the same project. Apply Current Content On Instances With Same Name.png As an example: two clips equals two different scenes/shots but they both share the same background. So when we change the background ...
by Jeremy Richard
08 Jun 2025, 14:03
Forum: Contents Sharing
Topic: OTANO Out Of Peg Tools
Replies: 24
Views: 239853

Re: OTANO Out Of Peg Tools

I want to add my thanks for sharing your tool; very useful indeed.

And also to signal that the tinyurl link leads to an error page; it leads to this page: https://tvpaint.com/en/forum/viewtopic.php#p101196
by Jeremy Richard
08 Jun 2025, 14:01
Forum: Contents Sharing
Topic: custom panels by WIT STUDIO
Replies: 6
Views: 16618

Re: custom panels by WIT STUDIO

A treasure trove. And clearly presented.
by Jeremy Richard
08 Jun 2025, 14:00
Forum: Contents Sharing
Topic: Keylight
Replies: 2
Views: 1496

Keylight

Hello everyone, Keylight-TVPaint_panel.png I made a panel to do with marking, flipping and "onion skinning" 'keys' in the timeline. I called it Keylight. There are five types of keys/marks to choose from: Keyframe, Breakdown, Extreme, Inbetween and Other. A colour can be chosen manually to...
by Jeremy Richard
25 Jan 2025, 19:02
Forum: Technical Support
Topic: Move framers in a Layer
Replies: 3
Views: 14000

Re: Move framers in a Layer

The only way around it is to set each frame to one instance PRIOR to repositioning the image myself. Then after repositioning the image arrange the frames back to how it was. You need to disable ' auto break instance '. The button is located on each layer in the timeline, next to the 'lock position...
by Jeremy Richard
09 Dec 2024, 23:18
Forum: Technical Support
Topic: TV Paint 12 - Random Zoom no Camera
Replies: 3
Views: 16996

Re: TV Paint 12 - Random Zoom no Camera

Hello onyinyeda, there seems to be a camera in the file you shared, at least when I try with my copy of TVPaint, which is 11.7.3. I can't see it in the screenshots, but maybe you have the 'Play with the Camera View' button on (located above the timeline). When off it plays with the project's dimensi...
by Jeremy Richard
16 Nov 2024, 11:17
Forum: Contents Sharing
Topic: Custom Panels for flipping between Keys, Breakdowns, Inbetweens etc.
Replies: 14
Views: 60460

Re: Custom Panels for flipping between Keys, Breakdowns, Inbetweens etc.

That is a great idea to make changes to the code easier with the variables, nice job. Thanks. I'm just not sure how manageable it is in the long run to have so many variables, but I guess it still better than having to go back and forth between what it is essentially two same codes. Anyway here is ...
by Jeremy Richard
13 Nov 2024, 11:16
Forum: Off Topic Discussions
Topic: Forum : ideas and improvements
Replies: 115
Views: 837567

Re: Forum : ideas and improvements

It is regarding old links (old domain and sub domain), and maybe the need to redirect them to the new sub domain https://forum.tvpaint.com/. Older links towards this forum's posts lead to the homepage of the forum, they have the https://www.tvpaint.com/forum/ domain. The ones with the https://tvpain...
by Jeremy Richard
28 Oct 2024, 23:05
Forum: George scripting
Topic: A multilingual George?
Replies: 2
Views: 19117

Re: A multilingual George?

Yes, I don't think I have compelling examples. Maybe when naming files using dates and the local convention, without having to parse and placing the year, month and day in the right order. I can't come up with better than this for now. I do like the idea though, specially for messages or instruction...
by Jeremy Richard
22 Oct 2024, 15:23
Forum: Technical Support
Topic: Video files are exporting extremely dark.
Replies: 4
Views: 6212

Re: Video files are exporting extremely dark.

Hello Paul, I exported you project and the same problem happens when playing it with VLC (also on Windows exporting from TVPaint Pro 11), but it seems to be fine either by playing it with mpv or Keyframe MP changing the "ouput" in VLC to Direct3D9 ( this is where I read about the solution ...
by Jeremy Richard
22 Oct 2024, 14:42
Forum: George scripting
Topic: A multilingual George?
Replies: 2
Views: 19117

A multilingual George?

Could a George script be internationalized natively? Using "tv_version", something like this can be done to translate a text: tv_version PARSE RESULT software_name software_version language //tv_warn language IF CMP(language, fr) my_translated_string = "Bonjour" END IF CMP(langua...
by Jeremy Richard
22 Oct 2024, 14:30
Forum: Contents Sharing
Topic: Custom Panels for flipping between Keys, Breakdowns, Inbetweens etc.
Replies: 14
Views: 60460

Re: Custom Panels for flipping between Keys, Breakdowns, Inbetweens etc.

I think ultimately a bunch of the code can be improved upon, as I am learning a lot as I'm going(finally got my head around functions a couple weeks ago). So thanks for the interest and feedback! My pleasure, I'm learning a lot too indeed. -------------------------------------------------------- Re...
by Jeremy Richard
14 Oct 2024, 18:37
Forum: Contents Sharing
Topic: Custom Panels for flipping between Keys, Breakdowns, Inbetweens etc.
Replies: 14
Views: 60460

Re: Custom Panels for flipping between Keys, Breakdowns, Inbetweens etc.

Thank you for indicating the fix, IF Mark == 1 && mflagK == 1 && CMP(state, head) == 1 //checks if exposure has Mark 1(Key) and if Key flag is on, goes to that frame tv_layerimage i EXIT END and for pointing this out, I managed to get my head around it (no pun intended). ------------...