I use a shortcut key to put enter the SEARCH mode. But often I change my mind and want to exit the search mode and put the keyboard focus back into the previous browser. What action script would I write if I wanted my shortcut key to toggle between SEARCH and BROWSER?
Posted Mon 25 Jul 11 @ 4:26 pm
this should get the job done..
search ? page "browser" & browser_window "songs" : search
another button to switch between files and songs
browser_window "folders" ? browser_window "songs" : browser_window "folders"
or you can use the standard browser_enter and browser_folders
search ? page "browser" & browser_window "songs" : search
another button to switch between files and songs
browser_window "folders" ? browser_window "songs" : browser_window "folders"
or you can use the standard browser_enter and browser_folders
Posted Mon 25 Jul 11 @ 7:08 pm
synthet1c wrote :
this should get the job done..
search ? page "browser" & browser_window "songs" : search
search ? page "browser" & browser_window "songs" : search
I tried that and although it enters the search mode fine, it still does not go back to browser. It stays in search.
Posted Tue 26 Jul 11 @ 11:57 am
Once the cursor enters the search field keyboard shortcuts (letters and numbers) are used for typing, unless you click with your mouse outside that field or press enter.
Posted Tue 26 Jul 11 @ 12:09 pm
I am using the NUMBER PAD ENTER key for this. I also tried the F1 key... but neither of these work.
Posted Tue 26 Jul 11 @ 12:20 pm
try one of the F keys or insert, page up/down, pause break
Posted Tue 26 Jul 11 @ 3:08 pm
Yes I did. Try it... it only responds to SEARCH - not leaving search.
Posted Tue 26 Jul 11 @ 5:02 pm
looks like you need to map your up and down keys or similar to
page "browser" & browser_window "songs" & browser_scroll -1
page "browser" & browser_window "songs" & browser_scroll +1
left and right could be
deck 1 play ? something else while playing : deck 1 load
deck 2 play ? something else while playing : deck 2 load
or just
browser_folders
browser_enter
page "browser" & browser_window "songs" & browser_scroll -1
page "browser" & browser_window "songs" & browser_scroll +1
left and right could be
deck 1 play ? something else while playing : deck 1 load
deck 2 play ? something else while playing : deck 2 load
or just
browser_folders
browser_enter
Posted Tue 26 Jul 11 @ 5:18 pm
So it sounds like you're saying that we cannot toggle into and out of SEARCH. We can only create a separate key/action to go to browser focus?
Posted Wed 27 Jul 11 @ 4:26 pm
OK this works if you want to toggle:
search ? page "browser" & browser_window "songs" & browser_scroll +1 : search
search ? page "browser" & browser_window "songs" & browser_scroll +1 : search
Posted Thu 28 Jul 11 @ 5:53 pm