Previewer 2.8 - Updated 03/05/2010

Post a reply

Visual Confirmation

To prevent automated access and spam, you are required to confirm that you are human. Please place a check mark next to all images of monkeys or apes. If you cannot see any images, please contact the Board Administrator.

Smilies
:D :) :( :o :-? 8) :lol: :x :P :oops: :cry: :evil: :roll: :wink:
BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON
Topic review
   

Expand view Topic review: Previewer 2.8 - Updated 03/05/2010

Re: Previewer 2.8 - Updated 03/05/2010

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

Thanks!!

Re: Previewer 2.8 - Updated 03/05/2010

Post 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

Post 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

Post 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

Post 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

Post 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

Post 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

Post 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

Post 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

Post 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:

Post 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!

Re: Previewer 2.8 - Updated 03/05/2010

Post by trixmoto » Mon Oct 01, 2012 6:44 pm

Haha, no worries :lol: I'm glad you like it.

Re: Previewer 2.8 - Updated 03/05/2010

Post by GeertJ » Mon Oct 01, 2012 9:13 am

Sorry, just accidentally pressed 1 'star' as a rating and seem not able to correct that. :oops:
It works like a charm.

Thanks a lot.

Re: Previewer 2.8 - Updated 03/05/2010

Post by gggirlgeek » Tue May 22, 2012 12:26 pm

Thanks! Couldn't do without this one.

Love the toolbar button too.

Re: Previewer 2.8 - Updated 03/05/2010

Post by trixmoto » Tue Jan 18, 2011 5:28 pm

It should play through the whole song, yes. The GUI should not disappear without you clicking anything, it's a modal form. CreateTimer accepts the number of milliseconds, so 30000 is 30 seconds.

Top