Page 1 of 1
Expanding the NetRadio Node
Posted: Wed Jan 10, 2007 7:56 am
by marioval
I have TweakMonkey installed which lets me pick my startup node, hide unused nodes, and expand the nodes of my choice on startup. One thing that it does not do, which I would like to do, is auto expand the NetRadio node on startup. is there another plugin that will do this and not interfere with TweakMonkey?
Posted: Wed Jan 10, 2007 8:21 am
by Steegy
which I would like to do, is auto expand the NetRadio node on startup.
Then this will have to be implemented in a next TweakMonkey version.
Posted: Wed Jan 10, 2007 10:06 am
by marioval
So no way to do it now?
Posted: Wed Jan 10, 2007 11:20 am
by Steegy
Sure, use this auto-script
Code: Select all
Sub OnStartup
SDB.MainTree.Node_Radio.Expanded = True
End Sub
Posted: Wed Jan 10, 2007 12:53 pm
by marioval
Pardon my ignorance but how do I do that?
Posted: Wed Jan 10, 2007 4:55 pm
by Steegy
It's explained in the FAQ:
How do I install scripts?
Basicly you have to paste the above code in a new plain text file called e.g. ExpandRadioNode.vbs (extension vbs !!) and put it in MediaMonkey's Scripts\Auto folder (usually C:\Program Files\MediaMonkey\Scripts\Auto).
Once MediaMonkey is (re)started, you'll see the effect.
Posted: Wed Jan 10, 2007 5:06 pm
by marioval
That worked. Thanks