They way things are set up now, I have to manually browse to this location for each session. This also applies to the Playlist-node. It would be great to have this expanded too.
Thanks for your time
Moderator: Gurus

Code: Select all
ChooseMore SDB.MainTree.Node_MyComputer,"D:\ [Media]" & sN & "Music" Code: Select all
SDB.MessageBox "You are welcome!", mtError, Array(mbOk)Code: Select all
Sub onStartUp
Set SDB = CreateObject("SongsDB.SDBApplication")
WScript.Sleep 1000
ChooseMore SDB.MainTree.Node_MyComputer,"D:\ [Media]" & sN & "Music"
End Sub
Code: Select all
Call onStartUpCode: Select all
'################################################################################
'# This script is part of the StartupNode script. #
'# It's an Autostart script and should be in MediaMonkey's Scripts\Auto folder. #
'################################################################################
Sub OnStartup
Dim WShell, Command, Result
Set WShell = CreateObject("WScript.Shell")
Command = Chr(34)&SDB.ApplicationPath&"Scripts\StartupNode_v1.0.vbs"&Chr(34)
Result = WShell.Run(Command, 1, 1)
End Sub