TVPaint george script: Change paper parameters

Here’s a small tvpaint george script that allows you to change the size, angle and invert state of the current paper:

TVPaint george script: Select tools popup menu

Here’s not so small TVpaint george script that allows you to pick a tool without opening the tools dialog:

TVpaint george script: New top layer with name

Here’s a small script to add a new layer and ask you to name it at the same time: If you want the new layer added at the current position in the layer stack just delete the line that says tv_LayerMove 0 tv_ReqString “New Layer Name [Top]” Parse Result LayerName If (Cmp(LayerName,”Cancel”) == 0) tv_LayerCreate [...]

TVPaint george script: Flip background state

Here’s a small script to flip the background state from color to transparent, nice for some cutbrush operations. // Get current mode tv_Background Parse Result BGState dummy dummy If (CMP(“check”, BGState)==1) tv_Background “color” END If (CMP(“color”, BGState)==1) tv_Background “check” END

Stop the tools panel popping up when selecting a custom brush

The default when you select a custom cutbrush you have created is to pop up the tools palette, presumably so you can adjust parameters of the brush. I allready do all this with keyboard shortcuts so it’s a bit annoying to have it pop up when I don’t need it. Context click on the button [...]