Did you delete the palette today ?
If everything was okay yesterday and the file is really from yesterday then the palette should be in there, try right click > Palettes > Selecting whatever palette is in here to see if it's the one.
Otherwise i'm short of solutions.
Search found 34 matches
- 02 Nov 2018, 13:07
- Forum: Technical Support
- Topic: deleted colour palette
- Replies: 8
- Views: 19288
- 02 Nov 2018, 10:55
- Forum: Contents Sharing
- Topic: Foliage Brushes
- Replies: 11
- Views: 50124
Re: Foliage Brushes
Hi Rachael,
The software juste crashes when i try to install your brushes, looks like the file is corrupted or something !
The software juste crashes when i try to install your brushes, looks like the file is corrupted or something !
- 02 Nov 2018, 10:38
- Forum: Technical Support
- Topic: deleted colour palette
- Replies: 8
- Views: 19288
Re: deleted colour palette
It's true there is no big warning message for once. That is the reason why i use custom panels as color palettes. It is easier to embed it with a project, or simply export and share it. If you check my first answer i edited it with a possible solution, although it is unlikely that you have a proper ...
- 02 Nov 2018, 10:13
- Forum: Technical Support
- Topic: deleted colour palette
- Replies: 8
- Views: 19288
Re: deleted colour palette
When a palette is deleted, it is really deleted. If you saved a palette before, then you can reimport it, but a palette is not embedded into a projet. Looks like it's gone for good. EDIT: Until saved elsewhere, palettes are stored in C:\Users\Default\AppData\Roaming\tvp animation 11 pro\default\conf...
- 29 Oct 2018, 16:40
- Forum: George scripting
- Topic: Start TVPaint with a python script and run a .grg script
- Replies: 2
- Views: 1857
Re: Start TVPaint with a python script and run a .grg script
I posted an example of this on the technical support forum the other day: import os from subprocess import call #path to tvpaint executable #tvpaint_path = '"C:\Tvpaint.exe"' tvpaint_path = '"/Applications/TVPaint Animation 11 Pro.app"' #cmd prefix cmd_prefix = '' cmd_suffix = ' ...
- 29 Oct 2018, 16:31
- Forum: Technical Support
- Topic: Export
- Replies: 1
- Views: 8317
Re: Export
This is intended. See http://www.tvpaint.com/forum/viewtopic.php?t=11264
- 23 Oct 2018, 13:25
- Forum: Technical Support
- Topic: Export several projects in the same time
- Replies: 26
- Views: 50618
Re: Export several projects in the same time
Content que ça corresponde à tes attentes ! Et oui, d'autant plus que manipuler des très gros projets c'est risqué si le projet se corromp, et c'est plus lourd à manipuler ou à échanger. C'est le genre de fonctionnalités qui pourrait trouver sa place par défaut dans le logiciel, en attendant on doit...
- 23 Oct 2018, 12:45
- Forum: Technical Support
- Topic: Export several projects in the same time
- Replies: 26
- Views: 50618
Re: Export several projects in the same time
Pour exporter en .mov, tu peux changer "AVI" par le code "QT" ( oui c'est bizzare, mais le format mov est en fait le format QT pour quicktime ).
Pour convertir le format de sortie, j'ai l'impression que ça risque de demander des choses plus compliquées, je me penche dessus.
Pour convertir le format de sortie, j'ai l'impression que ça risque de demander des choses plus compliquées, je me penche dessus.
- 23 Oct 2018, 10:41
- Forum: Technical Support
- Topic: Export several projects in the same time
- Replies: 26
- Views: 50618
- 23 Oct 2018, 10:19
- Forum: Technical Support
- Topic: Export several projects in the same time
- Replies: 26
- Views: 50618
Re: Export several projects in the same time
C'est bizzare, j'ai pu tester sur deux Mac différents et n'ai pas rencontré le problème. Ça ne doit pas être bien méchant puisque ça marchait lorsqu'il s'agissait de simplement afficher le nom ( c'est pour ça que j'avais fait une étape plus simple ), seulement c'est difficile de déboguer à distance ...
- 23 Oct 2018, 10:01
- Forum: Technical Support
- Topic: TVPaint crashes immediatly after starting the program.
- Replies: 2
- Views: 8757
Re: TVPaint crashes immediatly after starting the program.
Hi, It's hard to diagnose such a problem, there's not much we can do here if the common solutions did not give result. However, here are a few things you could try: Make sure you try a reinstall with a fresh downloaded installer from the tvpaint website, as the installer could have been corrupted in...
- 23 Oct 2018, 09:39
- Forum: Technical Support
- Topic: Export several projects in the same time
- Replies: 26
- Views: 50618
Re: Export several projects in the same time
Une petite coquille s'était peut être glissée sur la fin, je viens de réessayer sans problème, si ça ne marche pas le problème peut venir d'ailleurs ( notament, assure toi que TVPaint est bien fermé et quitté avant de lancer le script ). Autrement on devrait être bon ;) Voilà la version que tu peux ...
- 22 Oct 2018, 09:40
- Forum: Technical Support
- Topic: Export several projects in the same time
- Replies: 26
- Views: 50618
Re: Export several projects in the same time
J'ai bien compris, je me demandais surtout quel type d'export tu voulais faire, AVI, sequence png, etc. Quoi qu'il en soit, voilà la dernière version ! import os from subprocess import call #path to tvpaint executable tvpaint_path = '"/Applications/TVPaint Animation 11 Pro.app"' #directory...
- 19 Oct 2018, 18:47
- Forum: Technical Support
- Topic: Export several projects in the same time
- Replies: 26
- Views: 50618
Re: Export several projects in the same time
Super !
Oui, je voulais déjà m'assurer que ça fonctionne comme ça, maintenant on va pouvoir les exporter ! Plutôt que d'afficher le nom on va le charger et exporter avec les paramètres adéquats. Pourras-tu me dire comment tu souhaite exporter tes projets ?
Bon week-end
Oui, je voulais déjà m'assurer que ça fonctionne comme ça, maintenant on va pouvoir les exporter ! Plutôt que d'afficher le nom on va le charger et exporter avec les paramètres adéquats. Pourras-tu me dire comment tu souhaite exporter tes projets ?
Bon week-end
- 19 Oct 2018, 16:02
- Forum: Technical Support
- Topic: Export several projects in the same time
- Replies: 26
- Views: 50618
Re: Export several projects in the same time
Tu peux essayer cette version: import os from subprocess import call #cmd prefix cmd_prefix = '' print( os.name ) if os.name == 'posix': cmd_prefix = 'open -n -W -a ' #path to tvpaint executable tvpaint_path = '"/Applications/TVPaint Animation 11 Pro.app"' #directory where tvpp files are s...