Bringing project browser to the forefront
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Bringing project browser to the forefront
Very silly question, but is there a shortcut or way to bring the project browser to the front? If I'm working with many windows, any other aspect (tools palette, cards) can be found easily by hovering my mouse over the icon on my toolbar. Project browser only appears if I close it, then re-open. Is there some approach that's a bit more practical?
Re: Bringing project browser to the forefront
All LC gadgetry are stacks. So,
Craig Newman
Code: Select all
go stack "revProjectBrowser"
Re: Bringing project browser to the forefront
Just as aside.
It is not always clear what the names of these tool stacks are. So check the results of the "openStacks" function.
Craig
It is not always clear what the names of these tool stacks are. So check the results of the "openStacks" function.
Craig
-
- Posts: 87
- Joined: Wed Mar 25, 2015 2:01 am
Re: Bringing project browser to the forefront
I go to the Tools menu and un-check the Projects Browser then check the Projects Browser and it comes to the front. You could also try this:
on commandKeyDown pKey
lock screen ; lock recent ; lock messages
if (pKey = "1") then
set the height of stack "revIDEProjectBrowser" to 420
set the width of stack "revIDEProjectBrowser" to 430
set the left of stack "revIDEProjectBrowser" to 10
set the top of stack "revIDEProjectBrowser" to ((the top of stack "Choreographer" )+ 50)
set the visible of stack "revIDEProjectBrowser" to not the visible of stack "revIDEProjectBrowser"
else if (pKey = "2") then
edit the script of button "Players Dancing Play" of stack "Players"
// etc....
on commandKeyDown pKey
lock screen ; lock recent ; lock messages
if (pKey = "1") then
set the height of stack "revIDEProjectBrowser" to 420
set the width of stack "revIDEProjectBrowser" to 430
set the left of stack "revIDEProjectBrowser" to 10
set the top of stack "revIDEProjectBrowser" to ((the top of stack "Choreographer" )+ 50)
set the visible of stack "revIDEProjectBrowser" to not the visible of stack "revIDEProjectBrowser"
else if (pKey = "2") then
edit the script of button "Players Dancing Play" of stack "Players"
// etc....