Previewer 2.9 - Updated 26/07/2014

Post a reply

Smilies
:D :) :( :o :-? 8) :lol: :x :P :oops: :cry: :evil: :roll: :wink:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Previewer 2.9 - Updated 26/07/2014

Re: Previewer 2.9 - Updated 26/07/2014

by DocMAX » Fri Oct 02, 2015 1:32 pm

pls take care of play and skip count!

Re: Previewer 2.9 - Updated 26/07/2014

by trixmoto » Wed Apr 29, 2015 1:32 pm

Thanks. That's an interesting idea, I could also increase the setting by one before adding a track and then decrease again afterwards to ensure there's always room for it without messing up the rest of the list. I'll add it to my list.

Re: Previewer 2.9 - Updated 26/07/2014

by goya » Tue Mar 24, 2015 7:40 am

I too had a problem with the Now Playing List being 'wiped out' with only the preview track showing in Now Playing. When I used undo to put the tracks back, the preview track was also at the bottom of that list. Then I realised that I have Now Playing set to retain zero tracks and when I then switched to retain all, previewer worked normally. I guess the script would need something adding to temporarily override the Now Playing setting(if set to retain zero) when in use.

Thanks for a really useful plugin.

Re: Previewer 2.9 - Updated 26/07/2014

by trixmoto » Sat Jul 26, 2014 4:51 pm

New version (2.9) is now available to download from my website. I have added ability to move progress bar during preview, thanks to Nanya.

Re: Previewer 2.8 - Updated 03/05/2010

by Coldblackice » Sat Apr 20, 2013 6:06 am

Thanks!!

Re: Previewer 2.8 - Updated 03/05/2010

by Andreas Weichert » Fri Apr 19, 2013 2:58 am

Here an other little improvement:
Ich changed the position of the menu entries to show it directly under the "Play as last" entry
- for me the natural position.

Code: Select all

  If ShowToolbar Then
    Dim but : Set but = SDB.UI.AddMenuItem(SDB.UI.Menu_TbStandard,0,0)   ' numbers changed
...............
  End If
  If ShowContext Then
    Dim itm1 : Set itm1 = SDB.UI.AddMenuItem(SDB.UI.Menu_Pop_NP,1,0)  ' numbers changed
............................

Re: Previewer 2.8 - Updated 03/05/2010

by Coldblackice » Thu Apr 18, 2013 8:57 pm

Andreas Weichert wrote:I looked in the "Preview-Auto.vbs":
There are the values ShowToolbar and ShowContext defined.
When I changed it to TRUE it makes what I want. Genious!

I will learn more about scripting.
Awesome, thanks for sharing this! I'm going to try it out myself.

Re: Previewer 2.8 - Updated 03/05/2010

by Andreas Weichert » Sat Apr 06, 2013 3:56 am

I looked in the "Preview-Auto.vbs":
There are the values ShowToolbar and ShowContext defined.
When I changed it to TRUE it makes what I want. Genious!

I will learn more about scripting.

Re: Previewer 2.8 - Updated 03/05/2010

by Andreas Weichert » Sat Apr 06, 2013 3:40 am

In script menu I find it and it works very good.

In the PlayMenu (in the Mainmenu) I found nothing more.
I use Windows 8-64 MM 4.0.7.

Best place would be in the contextmenu under "playing at last".

I will investigate some work to learn the scripting interface to make some custom enhancements.
The scripting is really a great feature of MM

Re: Previewer 2.8 - Updated 03/05/2010

by Lurker » Fri Apr 05, 2013 10:05 pm

Menu (if hidden) > Play > Song Previewer (Ctrl+Alt+S)

or

Tools > Scripts > Previewer

One of them is this script, the other is Mediamonkey built in. I think the former is Trixmoto

Re: Previewer 2.8 - Updated 03/05/2010

by Andreas Weichert » Fri Apr 05, 2013 4:57 am

How can I access the preview function in MM?
I found no additional menu entry or something else

Re: Previewer 2.8 - Updated 03/05/2010

by Peke » Fri Nov 30, 2012 8:36 pm

This is something that could be available in the future MM versions.

Re: Previewer 2.8 - Updated 03/05/2010

by vmartins » Fri Nov 30, 2012 8:36 am

Hi, great plug in but is it possible to listen to the preview trough a different sound-card without stopping the play-now list??

thanks a lot for your work
best regards
Vasco

Re: Previewer 2.8 - Updated 03/05/2010

by trixmoto » Tue Oct 16, 2012 8:47 pm

Thanks, I'm glad you've found my scripts useful. I'll take a look at including this modification in the next version :)

Re:

by Nanya » Tue Oct 16, 2012 8:26 pm

Thanks so much for this script, trixmoto! As with all of your scripts, it's really great!
trixmoto wrote:New version (2.2) is now available from my website.

I have added a (non-editable) trackbar which shows the current song position. I have requested an event which will allow me to make this trackbar editable in a future version.
This event (OnChange) now exists. I have added this event to the script manually.

Code: Select all

Sub Seek(PosBar)
  If ManualChange = true Then
    SDB.Player.PlayBackTime = (PosBar.Value*SDB.Player.CurrentSongLength)/1000
  End If
End Sub
Enable the control, create a variable (I called it ManualChange) to make sure Seek ignores it when UpdatePosBar changes Posbar, and that's it!

Top