Page 1 of 1

Switch 'Pan Canvas' to other keys?

Posted: 11 Jan 2010, 07:45
by whazzup
hi, is it possible to do the above? i'll like to change the default ALT button to Space....

If not, is there a workaround/hack?

Re: Switch 'Pan Canvas' to other keys?

Posted: 11 Jan 2010, 07:59
by Elodie
No, it's not possible, you will have to use the Alt button =)

Re: Switch 'Pan Canvas' to other keys?

Posted: 11 Jan 2010, 08:45
by whazzup
i see...are there any reasons why tat can't be done? juz find it weird....

Re: Switch 'Pan Canvas' to other keys?

Posted: 11 Jan 2010, 09:31
by Elodie
That's not weird : this shortcut is linked to the software (I don't know how explain this in English, sorry) and you cannot change it. It's a little like you wanted to change a feature, or the icons in the main panel. :wink:

Re: Switch 'Pan Canvas' to other keys?

Posted: 11 Jan 2010, 15:22
by ZigOtto
whazzup wrote:i see...are there any reasons why tat can't be done? juz find it weird....
if the Alt key is missing in your keyboard, you can alternatively use the numeric pad keys (1 to 9)
to scroll your project in 8 directions, ... until you get a new "full-keys" keyboard. :mrgreen: :wink:

Re: Switch 'Pan Canvas' to other keys?

Posted: 11 Jan 2010, 16:51
by whazzup
ZigOtto wrote:
whazzup wrote:i see...are there any reasons why tat can't be done? juz find it weird....
if the Alt key is missing in your keyboard, you can alternatively use the numeric pad keys (1 to 9)
to scroll your project in 8 directions, ... until you get a new "full-keys" keyboard. :mrgreen: :wink:

ah...it's not because i dun have a full keys keyboard, but i'm more familiar with the spacebar as the Pan tool (In Photoshop), so i'm trying to setup the keys to resemble tat. My fingers have long been trained to seek the spacebar for panning, so it's pretty jarring to have to remind myself constantly, especially when i'm using both tvpaint and photoshop at the same time....

I just do not understand why there are so many shortcuts tat can be changed, yet the ALT key, a shortcut key used so often, is fixed. Hence my question above...

Re: Switch 'Pan Canvas' to other keys?

Posted: 11 Jan 2010, 17:25
by Paul Fierlinger
You could glue a thin metal or plastic strip to the two Alt keys and create a new space bar below the conventional one, or you could get PhotoShop to switch their Space bar function to Alt.

Re: Switch 'Pan Canvas' to other keys?

Posted: 11 Jan 2010, 17:33
by Fabrice
I just do not understand why there are so many shortcuts tat can be changed, yet the ALT key, a shortcut key used so often, is fixed. Hence my question above...
because you have some other shortcut linked :
Alt + [key]
Alt + Ctrl [key]
etc ...

Re: Switch 'Pan Canvas' to other keys?

Posted: 11 Jan 2010, 17:44
by Peter Wassink
Paul Fierlinger wrote:You could glue a thin metal or plastic strip to the two Alt keys and create a new space bar below the conventional one, or you could get PhotoShop to switch their Space bar function to Alt.
:mrgreen:

Actually Alt alternated with Alt + RMB is a very powerfull way of navigating your project.
if you hold the ALT key and move sideways your Pen/Mouse while pressing the Frontswitch/RightMouseButton. you can zoom stepless. its very intuitive.
And i miss it whenever i'm in photoshop.

Re: Switch 'Pan Canvas' to other keys?

Posted: 11 Jan 2010, 20:52
by Sewie
I agree; once you get used to it, it is very powerful and intuitive.
But can it not be a new feature to have that option (changing the function of the 'alt' key, or switching it with the spacebar) in a future version of TVP? Or is that impossible as well ?

By now I'm used to the 'alt' key for scrolling and zooming, etc. But it was pretty hard stepping into TVP when I began working with it. It is one of the reasons why I think the learning curve can be pretty steep for new users. To give the user the choice to have keyboard shortcuts closer to what he/she is used to would make the software a bit more user friendlier, I believe...

Re: Switch 'Pan Canvas' to other keys?

Posted: 11 Jan 2010, 20:59
by Paul Fierlinger
I don't understand Fabrice's answer:
He's saying that ALT has been used for some time in combination with other keys and that that combination can be assigned to anything you want, usually a CP button. I for one would be upset if anything changed because PS newbies refuse to be adaptable. Do musicians complain that all string instruments aren't made with the same length necks?

Re: Switch 'Pan Canvas' to other keys?

Posted: 11 Jan 2010, 21:21
by Sewie
At the moment the 'alt' is exclusively tied up into other functions...? I assumed that's what he meant when I thought about it a little longer (and why I edited that part out, pardon).
(What is a CP button?)
I for one would be upset if anything changed because PS newbies refuse to be adaptable.
Now that I have gotten used to it, I would not change the function of the 'alt' button for myself. But I do think it would be good if that option was be available for any newbie (it would make stepping into TVP a bit more accessible) or for users who need to go back and forth between other graphics software (PS, illustrator for example) and TVP.

We've had a somewhat similar discussion over here.

Re: Switch 'Pan Canvas' to other keys?

Posted: 14 Jan 2010, 14:48
by KenC
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 whatever you want.

Here's a script that does what you want.

#ifWinActive ahk_class TVP Animation 9 Pro
{
Space::
{
send {Alt down}
Loop
{
sleep, 10
GetKeyState, state, Space, p
if state = u
break
}
send {Alt up}
return
}
}