Hi all,
I thought it was listed in Dan's book, but I can't find it. Anyway, I have the windows version of Revolution Studio and I would love to know whether or not there is a quick key shortcut to get to the application browser. It costs me a lot of time and fluency to break out of scripting mode to go to tool-->application browser every time.
While we're on the topic, if anyone has a list readily available, I'd greatly appreciate all key shortcuts provided by revolution (if it's not too much trouble).
Thanks,
Josh
Key shortcut to Application Browser
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
-
- VIP Livecode Opensource Backer
- Posts: 977
- Joined: Sat Apr 08, 2006 7:47 am
- Contact:
Hi Josh,
All shortcuts are listed in Appendix A of the Revolution User Guide (definitely in Rev 2.9, though it may have been there earlier).
It doesn't look like there is a shortcut for the Application Browser, however. Then again, it's not too complicated to add this to your project's mainstack script:
Now when you press Shift-F8 in your stack while in the Revolution IDE, it will open the Application Browser. The fact that Revolu!ton is written using Revolution, has some very interesting side effects, allowing you to customize it to your particular workflow.
You can even turn a stack into a plug-in and add functionKey support throughout the Rev IDE, even when your project doesn't have the above script. But that's food for another post, methinks.
Jan Schenkel.
All shortcuts are listed in Appendix A of the Revolution User Guide (definitely in Rev 2.9, though it may have been there earlier).
It doesn't look like there is a shortcut for the Application Browser, however. Then again, it's not too complicated to add this to your project's mainstack script:
Code: Select all
on functionKey pNumber
if the environment is not "development" then pass functionKey
if pNumber is 8 and the shiftKey is "down" then
put "Application browser" into tMenuItem
send "menuPick tMenuItem" to menu "Edit" of stack "revMenubar"
end if
end functionKey
You can even turn a stack into a plug-in and add functionKey support throughout the Rev IDE, even when your project doesn't have the above script. But that's food for another post, methinks.
Jan Schenkel.
Quartam Reports & PDF Library for LiveCode
www.quartam.com
www.quartam.com
-
- VIP Livecode Opensource Backer
- Posts: 977
- Joined: Sat Apr 08, 2006 7:47 am
- Contact:
D'oh! That line should have been
Hope this helped,
Jan Schenkel.
Code: Select all
send "menuPick tMenuItem" to menu "Tools" of stack "revMenubar"
Jan Schenkel.
Quartam Reports & PDF Library for LiveCode
www.quartam.com
www.quartam.com