Search found 1330 matches
- 11 Mar 2025, 03:02
- Forum: Technical Support
- Topic: Strange artifacts appearing in TVPaint 12
- Replies: 5
- Views: 5841
Re: Strange artifacts appearing in TVPaint 12
Looks like some kind of eccentric cursor erasure updating?
- 13 Jan 2025, 23:14
- Forum: George scripting
- Topic: Click and Fill
- Replies: 3
- Views: 13494
Re: Click and Fill
For a long time I've had a short script that does something similar to Peter's suggestion (but more economically I think) which creates a mask or inverted mask for all frames in the current layer: The script toggles between three states... 1. Normal stencil: it creates (and hides) a temp copy of the...
- 22 Dec 2024, 07:27
- Forum: George scripting
- Topic: Where is the 'tv_writeuserstring' real file on disk?
- Replies: 2
- Views: 9315
Re: Where is the 'tv_writeuserstring' real file on disk?
At some point it was suggested to me that one way to delete/remove an obsolete userstring data entry in the CONFIG.INI file was to include the following line in a script (where the text is left empty). tv_writeuserstring iSection iName "" I have not tested it myself. In my experience, the ...
- 09 Dec 2024, 13:47
- Forum: George scripting
- Topic: Documentation for all george commands
- Replies: 15
- Views: 45067
Re: Documentation for all george commands
Thanks Thierry... fingers crossed.
- 09 Dec 2024, 12:18
- Forum: George scripting
- Topic: Documentation for all george commands
- Replies: 15
- Views: 45067
Re: Documentation for all george commands
Will the GEORGE commands update identify which version of TVPaint each command is compatible with?
sven
sven
- 18 Nov 2024, 06:53
- Forum: Contents Sharing
- Topic: Custom Panels for flipping between Keys, Breakdowns, Inbetweens etc.
- Replies: 14
- Views: 44764
Re: Custom Panels for flipping between Keys, Breakdowns, Inbetweens etc.
Hi guys... Kudos for a very worthwhile thread demonstrating the power of custom GEORGE scripts.
Here is a link that includes a discussion on "String Packing" techniques using ReadUserString and WriteUserString in George that might prove helpful.
sven
Here is a link that includes a discussion on "String Packing" techniques using ReadUserString and WriteUserString in George that might prove helpful.
sven
- 06 Nov 2024, 14:01
- Forum: Contents Sharing
- Topic: "SMASH!"
- Replies: 2
- Views: 13174
Re: "SMASH!"
mikdog, Enjoyed the video! thanks for posting...
Slowtiger: when I jump to YouTube to view the "SMASH" video, after it completes playing, the "making of video" link appears - clicking on that shows the 2nd video.
sven
Slowtiger: when I jump to YouTube to view the "SMASH" video, after it completes playing, the "making of video" link appears - clicking on that shows the 2nd video.
sven
- 21 Oct 2024, 14:14
- Forum: Technical Support
- Topic: Exact Positioning of a Custom Panel in ROOM
- Replies: 2
- Views: 4737
Re: Exact Positioning of a Custom Panel in ROOM
Ah! Thanks, I'll check it out...
sven
sven
- 20 Oct 2024, 13:32
- Forum: Technical Support
- Topic: TVPaint 12 User Manual / Documentation
- Replies: 7
- Views: 24340
Re: TVPaint 12 User Manual / Documentation
Mistakes in Manual: Beyond spelling mistakes, I suspect some HTML strangeness, in how the mistakes below (and mistakes actually in manual) are displayed??? Arithmetic operators and examples -negative: 18 -> -18 **exponent: 18**3=181818=5832 __________ should be 18*18*18 NOT 181818 multiplication: 18...
- 19 Oct 2024, 11:55
- Forum: Technical Support
- Topic: Exact Positioning of a Custom Panel in ROOM
- Replies: 2
- Views: 4737
Exact Positioning of a Custom Panel in ROOM
Something I've been wondering about for a long time: Is the exact X and Y position for a custom panel stored somewhere accessible? If so, can the X, Y values be accessed AND can they be edited/tweaked? Could this feature be added to the "This Panel" options? Anyone have a pet solution for ...
- 14 Oct 2024, 16:04
- Forum: Technical Support
- Topic: Save/backup Config without exiting Tvpaint
- Replies: 4
- Views: 5386
Re: Save/backup Config without exiting Tvpaint
+1 Agreed! Backing up the current state of Config during a session is a missing option. How it would work is worth discussing too. Manually, click to provisionally save current settings as they would be if I exited now. Automatically, by default, update every five minutes or update after any change ...
- 05 Sep 2024, 02:33
- Forum: George scripting
- Topic: tv_loadkeymap question
- Replies: 11
- Views: 21813
Re: tv_loadkeymap question
K,
I grabbed your 2 tvpx files... I'll have a look tomorrow.
sven
I grabbed your 2 tvpx files... I'll have a look tomorrow.

sven
- 04 Sep 2024, 17:47
- Forum: George scripting
- Topic: tv_loadkeymap question
- Replies: 11
- Views: 21813
Re: tv_loadkeymap question
K, I've distilled the essential steps to show how you might use GEORGE scripting to have two (or more) processes assigned to a shortcutkey or shortcutkeys using a FLAG. I'm uploading a demo that shows the possibilities, nothing more, in bare-bone scripts. Short Cut Keys Demo.png Hope this helps towa...
- 31 Aug 2024, 04:35
- Forum: George scripting
- Topic: tv_loadkeymap question
- Replies: 11
- Views: 21813
Re: tv_loadkeymap question
K: I wasn't sure how familiar you were with GEORGE (which is really simple once you get syntax down.) Give me a day or two to look at some of my old GEORGE scripts and I'll post some simple code that might help: With setting flag values in Config - and key-scripts that read flag values, then do diff...
- 29 Aug 2024, 19:33
- Forum: George scripting
- Topic: tv_loadkeymap question
- Replies: 11
- Views: 21813
Re: tv_loadkeymap question
On occasion when I want one Function key to perform several different functions I will... 1. use tv_WriteUserString to set a flag value in the Config file. 2. in the script assigned to the Function key, use tv_ReadUserString to look at the flag value, then execute the appropriate action using if/the...