Page 1 of 1

How to customize keyboard shortcuts in RunRev?

Posted: Tue Dec 01, 2009 4:03 pm
by ale870
Hello,

I wanted to customize shortcuts of the editor and other items in the enviroment (for example I wish to add a key to recall "Application Browser" instead using the mouse and menu everytime). Is it possible? How

Thank you for your help!

Re: How to customize keyboard shortcuts in RunRev?

Posted: Tue Dec 01, 2009 4:58 pm
by dunbarx
You can assign keyboard shortcuts. For example, to get the application browser that you asked for, you might assign a functionkey:

Code: Select all

on functionkey var
   if var = 12 then
      go stack "revApplicationOverview" --this is the actual name of the app browser stack
   end if
end functionkey
The handler can be placed in a library, or in a backscript, or just in use somewhere.

Craig Newman

Re: How to customize keyboard shortcuts in RunRev?

Posted: Tue Dec 01, 2009 6:34 pm
by ale870
Great! Everyday this community teach me something new!

Thank you!