Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

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

Moderators: Peke, Gurus

RifRaf
Posts: 117
Joined: Tue Jan 13, 2009 9:51 pm

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by RifRaf »

i can confirm the error mizery_made pointed out however its not a showstopper for me since the rest of the script is too usefull, maybe a fix can be found, until now have not really thought about it but will make some notes next time it happens
Mizery_Made
Posts: 2283
Joined: Tue Aug 29, 2006 1:09 pm
Location: Kansas City, Missouri, United States

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by Mizery_Made »

Yeah, the error isn't a showstopper, just an annoyance. The fact sbondi has disappeared though doesn't give this script much hope for the future. Another MM update could break it and he wouldn't be around to fix it. That was the reason for my Bandwagon comment.

When the error occurs though, if you just hit okay, it should pop back up when it plays through the track and switches again, and will do so over and over again until you click a node in the tree. Somehow, MM loses the selection of the node, and this script doesn't like it (though I can't understand why).
Bex
Posts: 6316
Joined: Fri May 21, 2004 5:44 am
Location: Sweden

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by Bex »

I think I found why this is happening. Try this:
Locate:

Code: Select all

    '--------------------------------------------------------------------
    ' process refresh if applicable
    '--------------------------------------------------------------------
    ' Note: avoid surprise disappearance on node currently being worked
    '--------------------------------------------------------------------
    If ((sessionStatus = kSessionStatus_Normal) AND _
        (option_refresh_EvenCurrentNodeManuallyOrDynamically OR _
         (SDB.MainTree.CurrentNode Is Nothing) OR _
         (node.CustomData <> SDB.MainTree.CurrentNode.CustomData)) AND _
        (params(iRefresh) <> "")) Then
And replace with this:

Code: Select all

    '--------------------------------------------------------------------
    ' process refresh if applicable
    '--------------------------------------------------------------------
    ' Note: avoid surprise disappearance on node currently being worked
    '--------------------------------------------------------------------
    Dim refresh : refresh=False
    If Not SDB.MainTree.CurrentNode Is Nothing Then
      If ((sessionStatus = kSessionStatus_Normal) AND _
          (option_refresh_EvenCurrentNodeManuallyOrDynamically OR _
           (node.CustomData <> SDB.MainTree.CurrentNode.CustomData)) AND _
          (params(iRefresh) <> "")) Then refresh=True
    Else
      If ((sessionStatus = kSessionStatus_Normal) AND _
          (option_refresh_EvenCurrentNodeManuallyOrDynamically OR _
           (SDB.MainTree.CurrentNode Is Nothing)) AND _
          (params(iRefresh) <> "")) Then refresh=True
    End If
    If refresh Then
Not tested so I don't know if it works...
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
Mizery_Made
Posts: 2283
Joined: Tue Aug 29, 2006 1:09 pm
Location: Kansas City, Missouri, United States

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by Mizery_Made »

Your 'fix' has been applied to my copy of the script, Bex. The error would randomly appear, so I can't "click, click, 'nope, no error, yay!'" so we'll see what happens. Appreciate you taking a moment to look into it though, Bex. Props to you! :)
Bex
Posts: 6316
Joined: Fri May 21, 2004 5:44 am
Location: Sweden

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by Bex »

Thanks! Let me know if it seems to work. :)
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
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by Vyper »

Hey Nyn! I see you referred to this script in another thread .... are you still using it and does this one work okay with the latest version of MM? :)
Stop Button Freak
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by nynaevelan »

Vyper wrote:Hey Nyn! I see you referred to this script in another thread .... are you still using it and does this one work okay with the latest version of MM? :)

Yes I am and yes it does. :D

Nyn
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by Vyper »

Thanks! :D
Stop Button Freak
RobertSmith
Posts: 157
Joined: Wed Jun 24, 2009 1:05 am
Location: Stockholm, The home of Icebears

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by RobertSmith »

Is it possible to turn the menu icon off?
Boys Don't Cry
3.1.0.1256 - M$ Vista Business sp1, DELL laptop, WD USB HDD 1TB (iPhone 3GS 32GB, iPod 30GB, Archos AV500 60GB)
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by nynaevelan »

Which menu icon are you referring to?
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
RobertSmith
Posts: 157
Joined: Wed Jun 24, 2009 1:05 am
Location: Stockholm, The home of Icebears

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by RobertSmith »

nynaevelan wrote:Which menu icon are you referring to?
toolbar :)
Boys Don't Cry
3.1.0.1256 - M$ Vista Business sp1, DELL laptop, WD USB HDD 1TB (iPhone 3GS 32GB, iPod 30GB, Archos AV500 60GB)
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by nynaevelan »

Yes, you have to open the MyCustomNodes.ini in the \Scripts\Auto folder and set this line to 0:

Code: Select all

refresh_ManuallyWithUpdatedINIFile_AddToolbarItem=1
Nyn
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
RobertSmith
Posts: 157
Joined: Wed Jun 24, 2009 1:05 am
Location: Stockholm, The home of Icebears

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by RobertSmith »

nynaevelan wrote:Yes, you have to open the MyCustomNodes.ini in the \Scripts\Auto folder and set this line to 0:

Code: Select all

refresh_ManuallyWithUpdatedINIFile_AddToolbarItem=1
Nyn
Thy!
Boys Don't Cry
3.1.0.1256 - M$ Vista Business sp1, DELL laptop, WD USB HDD 1TB (iPhone 3GS 32GB, iPod 30GB, Archos AV500 60GB)
shemait
Posts: 21
Joined: Wed Nov 19, 2008 11:54 am

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by shemait »

I am trying to re-create the Files To Edit node "Inconsistent Album Art." It just shows you any songs that are from the same album, but have different album art. Anyone know of a way to do this in MCN? Thank you!
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Re: Easy/fast nested nodes & FilesToEdit hiding (09Nov08)

Post by nynaevelan »

Bex's Tagging Inconsistencies script has the ability and more control than MM's node.

Nyn
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
Post Reply