Search found 174 matches
- 14 Jan 2010, 14:48
- Forum: Technical Support
- Topic: Switch 'Pan Canvas' to other keys?
- Replies: 12
- Views: 26496
Re: Switch 'Pan Canvas' to other keys?
AutoHotKey is your friend. One of the first things I did was to remap space to alt when TVP is active. I go back and forth between different graphics programs depending on what I'm doing, so it's nice to have a consistant keyboard scheme. Google it, it's free and you can easily remap ANY key to what...
- 03 Jan 2010, 14:13
- Forum: Technical Support
- Topic: Happy 2010
- Replies: 4
- Views: 16299
Re: Happy 2010
Happy new year
- 15 Dec 2009, 17:47
- Forum: George scripting
- Topic: Run George Script From Command Line
- Replies: 3
- Views: 1004
Re: Run George Script From Command Line
There's also supposed to be startup.grg which should be executed on startup of TVPaint, but for some reason it doesn't work for me. (Threw in hello world and nothing happens.)
- 14 Dec 2009, 14:24
- Forum: Technical Support
- Topic: Can palettes be locked?
- Replies: 21
- Views: 44723
Re: Can palettes be locked?
If I remember correctly, Adobe ripped of the channel mixer from Deke Mcclelland
- 10 Dec 2009, 08:21
- Forum: Technical Support
- Topic: Can palettes be locked?
- Replies: 21
- Views: 44723
Re: Can palettes be locked?
+1 for picture palette. It's great!
You can have up to 9 and they remember images/palettes loaded between sessions. Bind them to keys etc..
You can have up to 9 and they remember images/palettes loaded between sessions. Bind them to keys etc..
- 28 Nov 2009, 15:45
- Forum: Off Topic Discussions
- Topic: Search disabled?
- Replies: 4
- Views: 13241
Re: Search disabled?
So that's where "view active topics" went, I thought I was going crazy
- 09 Nov 2009, 17:14
- Forum: Off Topic Discussions
- Topic: "memory"
- Replies: 194
- Views: 409689
Re: "memory"
Ah, when the wind blows, that one scarred me when I was younger.
What's this? A nice cartoon on tv?
Later on:
What's this? A nice cartoon on tv?
Later on:
- 09 Nov 2009, 09:54
- Forum: George scripting
- Topic: Online SDK
- Replies: 19
- Views: 3334
Re: Online SDK
Yay sweet
- 06 Nov 2009, 13:57
- Forum: Technical Support
- Topic: Changing brush connections
- Replies: 5
- Views: 14776
Re: Changing brush connections
Another gotcha is that if you use Parse to grab the csize, cangle etc.. parameter strings, is that parse returns them without being wrapped in " " and if you pass that back with tv_cmd without re-adding them that also resets the curves. I was having a great time ( :cry: ) scratching my hea...
- 05 Nov 2009, 13:55
- Forum: Technical Support
- Topic: Changing brush connections
- Replies: 5
- Views: 14776
Re: Changing brush connections
Thanks Sven. Yeah I spent some time figuring out what the numbers meant, the last numbers are x/y for point in the connection curve. I allready got some code running that uses my arrayfunctions and parses up the connection parameter string from cssize etc.. so I can just pass the parameter index I w...
- 05 Nov 2009, 12:48
- Forum: Technical Support
- Topic: Brush parameters backwards when flipping image
- Replies: 12
- Views: 24925
Re: Brush parameters backwards when flipping image
I knew there would be a way
I'll use that until I get a handle on the cangle,csize parameters, they've haunted me for a while what with all the scary numbers
I'll use that until I get a handle on the cangle,csize parameters, they've haunted me for a while what with all the scary numbers
- 05 Nov 2009, 11:52
- Forum: Technical Support
- Topic: Changing brush connections
- Replies: 5
- Views: 14776
Re: Changing brush connections
Figured it out, it's in the cssize, cangle etc.. result from tv_getactivetool
-10 means inverted, 5=direction etc..
-10 means inverted, 5=direction etc..
- 05 Nov 2009, 10:39
- Forum: Technical Support
- Topic: Changing brush connections
- Replies: 5
- Views: 14776
Changing brush connections
How can I get/set the brush connection parameters? For example change the current brush to size=pressure, invert? I'm realy only interested in changing the cutbrush. tv_BrushRestore only has a connection table for "Con_Opacity" as far as I can tell and tv_getactivetool doesn't look like it...
- 04 Nov 2009, 18:28
- Forum: Technical Support
- Topic: Brush parameters backwards when flipping image
- Replies: 12
- Views: 24925
Re: Brush parameters backwards when flipping image
"Destructive" it's just a term I use for anything that actually modifies pixel data. Image/modify/flip for example changes pixel data, if you saved it and reopened it would still be flipped. Using Key:zoom:flip vertical doesn't change pixel data, it just flips the view and it's instant whi...
- 04 Nov 2009, 16:48
- Forum: Technical Support
- Topic: Brush parameters backwards when flipping image
- Replies: 12
- Views: 24925
Re: Brush parameters backwards when flipping image
I flip the view, not modifying pixel data, which is why I use zoom:flip because it's non-destructive. I use flipping a lot and actually paint while flipped because it keeps me from getting used to one way of looking at the image, forces my brain to never get complacent with one view of things, hard ...