Clear Now Playing 3.1 - Updated 09/07/2012

Download and get help for different MediaMonkey Addons.

Moderators: Peke, Gurus

Re: Clear Now Playing 3.0 - Updated 13/11/2010

Postby trixmoto » Sat Nov 13, 2010 1:24 pm

New version (3.0) is now available to download from my website. Changes include...

- Added option sheet to control settings
- Added option to disable script
- Added option to clear played tracks without applying limit
- Added update server to installation package
Check out my scripts at trixmoto.net and subscribe to my RSS feed for updates.
Also check out my Uniface blog.
Get a free Dropbox account! :o

Image
trixmoto
 
Posts: 9703
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK

Re: Clear Now Playing 3.0 - Updated 13/11/2010

Postby Zimmsen » Thu May 26, 2011 2:22 pm

Hey trixmoto,

nice script again. Is there anything which you cant do :)?

Is it possible to make a script or import a function to this one, to force MM to start at a specific Playlist? I am tagging a lot of mp3 at the moment and often MM crashes or i forget to choose a Playlist before ending MM. The Problem then is, that MM starts at the archive and does two things at same time:

- Readings songs (in archive)
- Watching out for changes at the mp3

So the problem is, that i have a lot of mp3 and when MM does those two things together, the starting process will take up to 30 Minutes. I can stop the Check for changes (which i dont want to), but i cant stop the reading of files which are in the archive...


So is this possible? Maybe an option to MM that i can choose a Playlist, on which Choice MM starts?



Thanks for your help/answer...


Greetings
Zimmsen
 
Posts: 11
Joined: Fri May 20, 2011 1:29 am

Re: Clear Now Playing 3.0 - Updated 13/11/2010

Postby trixmoto » Fri May 27, 2011 4:01 am

MM always remembers the last folder you were on, doesn't it? So couldn't you just select the playlist before you close?
Check out my scripts at trixmoto.net and subscribe to my RSS feed for updates.
Also check out my Uniface blog.
Get a free Dropbox account! :o

Image
trixmoto
 
Posts: 9703
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK

Re: Clear Now Playing 3.0 - Updated 13/11/2010

Postby Zimmsen » Fri May 27, 2011 5:17 am

hey trix,

sure i can, but the problem is that i am tagging my archive. And it oftens happens, that MM crashes. And if MM chrashed, it starts at the archive i was working on. And then the problems above are happening...

The problem ist not the normal closing process, its the process after a MM crash, and it happens often, maybe because i am working with such a big archive...
Zimmsen
 
Posts: 11
Joined: Fri May 20, 2011 1:29 am

Re: Clear Now Playing 3.0 - Updated 13/11/2010

Postby trixmoto » Fri May 27, 2011 2:22 pm

Ah right, yeah. Well it's definitely outside the scope of this script, but I'm sure it could be done with scripting.
Check out my scripts at trixmoto.net and subscribe to my RSS feed for updates.
Also check out my Uniface blog.
Get a free Dropbox account! :o

Image
trixmoto
 
Posts: 9703
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK

Re: Clear Now Playing 3.0 - Updated 13/11/2010

Postby nohitter151 » Fri May 27, 2011 8:00 pm

Zimmsen wrote:Hey trixmoto,

nice script again. Is there anything which you cant do :)?

Is it possible to make a script or import a function to this one, to force MM to start at a specific Playlist? I am tagging a lot of mp3 at the moment and often MM crashes or i forget to choose a Playlist before ending MM. The Problem then is, that MM starts at the archive and does two things at same time:

- Readings songs (in archive)
- Watching out for changes at the mp3

So the problem is, that i have a lot of mp3 and when MM does those two things together, the starting process will take up to 30 Minutes. I can stop the Check for changes (which i dont want to), but i cant stop the reading of files which are in the archive...


So is this possible? Maybe an option to MM that i can choose a Playlist, on which Choice MM starts?



Thanks for your help/answer...


Greetings

Pretty sure the tweakmonkey script already provides that functionality.
MediaMonkey user since 2006
Need help? Got a suggestion? Can't find something?
nohitter151
 
Posts: 21432
Joined: Wed Aug 09, 2006 10:20 am
Location: NJ, USA

Re: Clear Now Playing 3.0 - Updated 13/11/2010

Postby Zimmsen » Sat May 28, 2011 1:07 am

Yes tweak-monkey has this one. But the problem is, that tweak-monkey collides with trixmotos backup-script. They are both using the database-file and trixomotos scripts are more important for me, so i am forced to use only one of those two scripts :( . Everytime i had installed tweak-monkey, the backup-script wasnt running anymore...

Or do you have both script running correctly nohitter151, then i made faults in the options?

So thanks for your help guys, i will find out and post it here :)
Zimmsen
 
Posts: 11
Joined: Fri May 20, 2011 1:29 am

Re: Clear Now Playing 3.0 - Updated 13/11/2010

Postby UksusoFF » Tue Aug 16, 2011 4:24 am

not worked for 4.0 version :(
UksusoFF
 
Posts: 64
Joined: Sat Oct 31, 2009 10:04 am
Location: Russia

Re: Clear Now Playing 3.0 - Updated 13/11/2010

Postby markstuartwalker » Wed Sep 28, 2011 9:32 am

I can confirm that this does work MM 4.0

There is a bug however in that the mode isn't save properly and will default to 4

Old code

Code: Select all
Sub SaveSheet(Sheet)
  Dim ini : Set ini = SDB.IniFile 
  ini.IntValue("ClearNowPlaying","Name") = Sheet.Common.ChildControl("CNPMode").ItemIndex
  ini.IntValue("ClearNowPlaying","Limit") = Sheet.Common.ChildControl("CNPLimit").Value
End Sub


New code

Code: Select all
Sub SaveSheet(Sheet)
  Dim ini : Set ini = SDB.IniFile 
  ini.IntValue("ClearNowPlaying","Mode") = Sheet.Common.ChildControl("CNPMode").ItemIndex
  ini.IntValue("ClearNowPlaying","Limit") = Sheet.Common.ChildControl("CNPLimit").Value
End Sub
Windows 7 SP1 x64 / Ubuntu 11.10 / Lion 10.7.3 / iOS 5.1 / iTunes 10.6.0
iTunes plugin (d_itunes & itunes4) viewtopic.php?f=2&t=45713
Running MM under Mac OS X with Wine viewtopic.php?f=4&t=58507
markstuartwalker
 
Posts: 868
Joined: Fri Jul 10, 2009 8:10 am

Re: Clear Now Playing 3.0 - Updated 13/11/2010

Postby UksusoFF » Wed Sep 28, 2011 10:21 am

markstuartwalker wrote:I can confirm that this does work MM 4.0

old and new are identical o0
UksusoFF
 
Posts: 64
Joined: Sat Oct 31, 2009 10:04 am
Location: Russia

Re: Clear Now Playing 3.0 - Updated 13/11/2010

Postby trixmoto » Wed Sep 28, 2011 1:19 pm

Ok, I'll add it to my list :)
Check out my scripts at trixmoto.net and subscribe to my RSS feed for updates.
Also check out my Uniface blog.
Get a free Dropbox account! :o

Image
trixmoto
 
Posts: 9703
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK

Re: Clear Now Playing 3.0 - Updated 13/11/2010

Postby markstuartwalker » Thu Oct 06, 2011 4:55 pm

UksusoFF wrote:
markstuartwalker wrote:I can confirm that this does work MM 4.0

old and new are identical o0


Not identical one has "Name" and one has "Mode".

And I was incorrect, it doesn't work on MM4 except the first time when you install it. The OnStartup function is not subsequently called.
Windows 7 SP1 x64 / Ubuntu 11.10 / Lion 10.7.3 / iOS 5.1 / iTunes 10.6.0
iTunes plugin (d_itunes & itunes4) viewtopic.php?f=2&t=45713
Running MM under Mac OS X with Wine viewtopic.php?f=4&t=58507
markstuartwalker
 
Posts: 868
Joined: Fri Jul 10, 2009 8:10 am

Re: Clear Now Playing 3.1 - Updated 09/07/2012

Postby trixmoto » Mon Jul 09, 2012 6:21 am

New version (3.1) is now available to download from my website. I have fixed the mode setting not storing correctly.

It works fine for me on subsequent runs - let me know if you're still having problems.
Check out my scripts at trixmoto.net and subscribe to my RSS feed for updates.
Also check out my Uniface blog.
Get a free Dropbox account! :o

Image
trixmoto
 
Posts: 9703
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK

Previous

Return to Need Help with Addons?

Who is online

Users browsing this forum: Google [Bot] and 19 guests