when the browser sections are not locked what script to use to slide to a specific section of the browser?
Example: I need two different scripts one to slide the browser to the folder section to choose among my different folders
and playlists
and another script to slide the browser to the browser song section where i can scroll and select different songs.
Example: I need two different scripts one to slide the browser to the folder section to choose among my different folders
and playlists
and another script to slide the browser to the browser song section where i can scroll and select different songs.
发表时间 Wed 28 Sep 11 @ 1:28 am
browser_scroll : scroll through the songs or folders.
browser_enter : if focus is on songs, load the selected song. if focus is on folders, change focus to songs.
browser_folder : if focus is on songs, change focus to folders. if focus is on folders, open or close the subfolders of the selected folder.
browser_enter : if focus is on songs, load the selected song. if focus is on folders, change focus to songs.
browser_folder : if focus is on songs, change focus to folders. if focus is on folders, open or close the subfolders of the selected folder.
发表时间 Wed 28 Sep 11 @ 2:11 am
Thank you for the info. Those scripts you have posted won' t work for me. What I need is a script to act just like the mouse pointer, when it' s pointed to a particular part of the browser it slides to that particular side of the browser or zoom to that specific section of the browser.
发表时间 Wed 28 Sep 11 @ 2:20 am
browser_window "folders" ? action if true : action if false
browser_window "songs" ? action if true : action if false
browser_window "songs" ? action if true : action if false
发表时间 Wed 28 Sep 11 @ 2:40 am
You can choose the section in the browser using the following:
browser_window "folders"
browser_window "songs"
browser_window "playlist"
browser_window "sidelist"
You can also use browser_window +1 or browser_window -1 to cycle through the sections.
browser_window "folders"
browser_window "songs"
browser_window "playlist"
browser_window "sidelist"
You can also use browser_window +1 or browser_window -1 to cycle through the sections.
发表时间 Wed 28 Sep 11 @ 6:28 am
Support staff wrote :
You can choose the section in the browser using the following:
browser_window "folders"
browser_window "songs"
browser_window "playlist"
browser_window "sidelist"
You can also use browser_window +1 or browser_window -1 to cycle through the sections.
browser_window "folders"
browser_window "songs"
browser_window "playlist"
browser_window "sidelist"
You can also use browser_window +1 or browser_window -1 to cycle through the sections.
OK Teamer, thank you for the those scripts but what I need is a bit different than those scripts you are giving me above. I need a script for instance when i click it that will make the browser slide to the folder panel and another script when pressed to slide the browser to the playlist panel and so on. I hope that It can be done.
发表时间 Wed 28 Sep 11 @ 8:26 am
you havn't really described what you wan't to do properly.. this will have a specific set of buttons to scroll either the songs list or the folders list. you could also use it on a couple of endless encoders with a little modification.
browser_window "folders" ? browser_scroll +1 : browser_window "folders" & browser_scroll +1
browser_window "folders" ? browser_scroll -1 : browser_window "folders" & browser_scroll -1
browser_window "songs" ? browser_scroll +1 : browser_window "songs" & browser_scroll +1
browser_window "songs" ? browser_scroll -1 : browser_window "songs" & browser_scroll -1
browser_window "folders" ? browser_scroll +1 : browser_window "folders" & browser_scroll +1
browser_window "folders" ? browser_scroll -1 : browser_window "folders" & browser_scroll -1
browser_window "songs" ? browser_scroll +1 : browser_window "songs" & browser_scroll +1
browser_window "songs" ? browser_scroll -1 : browser_window "songs" & browser_scroll -1
发表时间 Wed 28 Sep 11 @ 8:45 am
If you are looking to either resize or expand/collapse the browser sections (As they do when unlocked and you move the mouse over them), then this is not currently possible via VDJscript.
If you wish to expand/collapse the selected folder, so that you can see the folders underneath it, use browser_folder +1 or browser_folder -1
If you wish to expand/collapse the selected folder, so that you can see the folders underneath it, use browser_folder +1 or browser_folder -1
发表时间 Wed 28 Sep 11 @ 10:21 am
Thank you. I am going to add this to the wish list.
发表时间 Wed 28 Sep 11 @ 10:36 am