Magic Nodes 4.2 w/ 380 masks & real GUI (2011-07-01)[MM2+]

Download and get help for different MediaMonkey for Windows 4 Addons.

Moderators: Peke, Gurus

ZvezdanD
Posts: 3265
Joined: Thu Jun 08, 2006 7:40 pm

Post by ZvezdanD »

Bex wrote:I dont see any predefined masks anywhere! :-?
There should be as usual into the tree window and under Edit/Delete Magic Node submenu.

Maybe you could first manually delete the old CustomNodeMasks section of the INI file.
Bex
Posts: 6316
Joined: Fri May 21, 2004 5:44 am
Location: Sweden

Post by Bex »

Yes that did the trick but now I need to recreate them again... :wink:
Advanced Duplicate Find & Fix Find More From Same - Custom Search. | Transfer PlayStat & Copy-Paste Tags/AlbumArt between any tracks.
Tagging Inconsistencies Do you think you have your tags in order? Think again...
Play History & Stats Node Like having your Last-FM account stored locally, but more advanced.
Case & Leading Zero Fixer Works on filenames too!

All My Scripts
Big_Berny
Posts: 1784
Joined: Mon Nov 28, 2005 11:55 am
Location: Switzerland
Contact:

Post by Big_Berny »

Thanks for the installer! :D
Image
Scripts in use: Genre Finder / Last.fm DJ / Magic Nodes / AutoRateAccurate / Last.FM Node
Skins in use: ZuneSkin SP / Eclipse SP
AutoRateAccurate 3.0.0 (New) - Rates all your songs in less than 5 seconds!
About me: icoaching - internet | marketing | design
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Post by Vyper »

I'm confused. I'm still not seeing any masks. I have a Magic Nodes vbs file and an ini file in the scripts/auto folder.


I even completely deleted MagicNodes from MediaMonkey before installing the latest version. Still no masks.


:(
Stop Button Freak
ZvezdanD
Posts: 3265
Joined: Thu Jun 08, 2006 7:40 pm

Post by ZvezdanD »

Vyper wrote:I'm confused. I'm still not seeing any masks. I have a Magic Nodes vbs file and an ini file in the scripts/auto folder.


I even completely deleted MagicNodes from MediaMonkey before installing the latest version. Still no masks.
Sorry to all for inconvenience. I added short instruction about this into the Important section in the first post of this thread. Before installation you should remove all your old masks. There are 2 possibilities for this:
- manually delete the CustomNodeMasks section of the MediaMonkey.INI file, or
- re-install the script and during uninstall choose Yes to delete all settings.

I also wrote in the Installation section about the MagicNode.INI file which is copied into Auto folder during installation. It is used only if the CustomNodeMasks section is empty. During its work, the Magic Nodes script stores masks into the MediaMonkey.INI file, not in MagicNode.INI.
ZvezdanD
Posts: 3265
Joined: Thu Jun 08, 2006 7:40 pm

Post by ZvezdanD »

OK folks. I updated installation package, so now during installation you could choose if you want to merge new masks with the old ones. Anyway, before installation please make a backup of the MediaMonkey.ini file to be safe.

Keep in mind that there is hard-coded limit on 100 masks and the menu with 100 items could overlap full screen.
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Post by Vyper »

Thanks Z ..... all is good now. :D
Stop Button Freak
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Post by Vyper »

Hmmm ..... why does the MagicNodes node open every time I start MM? It doesn't matter which node I'm on when I close it, MagicNodes node opens when I restart.
Stop Button Freak
dypsis
Posts: 1362
Joined: Wed Apr 30, 2008 9:51 pm

Post by dypsis »

I don't have it actually open a MagicNodes node on startup, but it always opens with the MagicNodes expanded rather than collapsed.

I would rather MediaMonkey open with MagicNodes collapsed.
dypsis
Posts: 1362
Joined: Wed Apr 30, 2008 9:51 pm

Artist Does Not Equal Original Artist

Post by dypsis »

I have been looking at the Artist Does Not Equal Original Artist node.

Unfortunately, in many cases, the "Original Artist" field in many of my tracks is blank.

Is there something that I can add to the mask below to stop MagicNodes from reporting on tracks with blank "Original Artist" fields?


Artist Does Not Equal Original Artist|Icon:Top level|Filter:UpperW(Songs.Artist) <> UpperW(<Original Artist>)\<Artist>
ZvezdanD
Posts: 3265
Joined: Thu Jun 08, 2006 7:40 pm

Post by ZvezdanD »

We should distinguish selecting (opening) of some node from expanding/collapsing of some branch.

1. By default during startup the Magic Nodes select a node which was last selected before exit. This is default behavior of MM3 (but not MM2] - it select its built-in nodes in such way as well.

2. By default during startup the Magic Nodes expand its main branch. Currently, you have only one choice:
Install TweakMonkey, go to Tools / Options / TweakMonkey & Script Options / Tree Node Options, check Node to be selected at startup, choose Library.
ZvezdanD
Posts: 3265
Joined: Thu Jun 08, 2006 7:40 pm

Re: Artist Does Not Equal Original Artist

Post by ZvezdanD »

dypsis wrote:Is there something that I can add to the mask below to stop MagicNodes from reporting on tracks with blank "Original Artist" fields?
Very interesting question. I think I will update mentioned mask with a regard on this. Here is a solution:

Code: Select all

Artist Does Not Equal Original Artist|Icon:Top level|Filter:UpperW(Songs.Artist) <> UpperW(<Original Artist>) AND <Original Artist> <> ''\<Artist>
dypsis
Posts: 1362
Joined: Wed Apr 30, 2008 9:51 pm

Post by dypsis »

Thank you ZvezdanD. :)


Just one other question.

I am trying to filter out my online radio playlists from:

<Group|name:Playing Statistics|Show tracks:No>\Played This Week|Icon:Top level|Filter:<Weeks since last played> = 0\<Album|Statistic:Min(Days since last played)>


using:
Filter:<Path> Not Like 'http://%'


But I cannot get it to work for:

Playing Statistics > Played Today
Playing Statistics > Played This Week

Do you have an idea how?


Thanks...

Here is an example of one of my online radio streams stations that I wish to filter from the mask:

http://radio.myisp.on.net:8036/
ZvezdanD
Posts: 3265
Joined: Thu Jun 08, 2006 7:40 pm

Post by ZvezdanD »

dypsis wrote:I am trying to filter out my online radio playlists
Did you tried with:

Code: Select all

<Group|name:Playing Statistics|Show tracks:No>\Played This Week|Icon:Top level|Filter:<Weeks since last played> = 0 AND <Path> Not Like 'http://%'\<Album|Statistic:Min(Days since last played)>
dypsis
Posts: 1362
Joined: Wed Apr 30, 2008 9:51 pm

Post by dypsis »

ZvezdanD wrote:
dypsis wrote:I am trying to filter out my online radio playlists
Did you tried with:

Code: Select all

<Group|name:Playing Statistics|Show tracks:No>\Played This Week|Icon:Top level|Filter:<Weeks since last played> = 0 AND <Path> Not Like 'http://%'\<Album|Statistic:Min(Days since last played)>
Thanks ZvezdanD, that works. I didn't use AND :)
Post Reply