Search found 102 matches

by jaxjon
Fri Aug 20, 2004 7:56 am
Forum: Need Help with Addons? (MMW4)
Topic: Script for EvilLyrics Menu Button
Replies: 1
Views: 3210

Script for EvilLyrics Menu Button

Sub OnStartup Set UI = SDB.UI UI.AddMenuItemSep UI.Menu_TbStandard, 0, 0 Set Mnu = UI.AddMenuItem( UI.Menu_TbStandard, 0, 0) Mnu.Caption = "EvilLyrics" Mnu.UseScript = Script.ScriptPath Mnu.OnClickFunc = "OnClick" Mnu.IconIndex = 22 Mnu.Hint = "Launch EvilLyrics" End Sub Sub OnClick( Itm) Dim ...
by jaxjon
Fri Aug 20, 2004 6:41 am
Forum: Need Help with Addons? (MMW4)
Topic: Scripting help please
Replies: 14
Views: 10619

pah68

Yes I agree it will work, takes a bit of time to save 9000 previews though. I like the challenge of trying to code it myself even though it does not work sometimes. :x

TheRocket

I did not find reference to DoEvents in MSDN Library for VBScript. Thanks.
by jaxjon
Thu Aug 19, 2004 9:10 pm
Forum: Need Help with Addons? (MMW4)
Topic: Scripting help please
Replies: 14
Views: 10619

Well, I tried a number of times to figure this out (need more times). I found that I ran into the same problems with focus and problems with do loops and other looping mechanisms. The player does not do well with loops as the loop is constantly checking the time for when to play next song and the ...
by jaxjon
Thu Aug 19, 2004 4:43 am
Forum: Need Help with Addons? (MMW4)
Topic: Scripting help please
Replies: 14
Views: 10619

I think I have a script worked out. I will have to test later as I have to work now. Will post tonight if works.
by jaxjon
Wed Aug 18, 2004 9:59 am
Forum: Need Help with Addons? (MMW4)
Topic: MediaMonkey Development www page
Replies: 19
Views: 39970

dittos for MYIE2
by jaxjon
Sun Aug 15, 2004 5:54 pm
Forum: Need Help with Addons? (MMW4)
Topic: beta support of new functionality to better integrate script
Replies: 1
Views: 2970

beta support of new functionality to better integrate script

- Added beta support of new functionality to better integrate scripts with MediaMonkey UI: - Create menu items/ pop-up menu items, toolbar items, tray icon menu items & shortcuts - Create new dialogs with controls to edit lines, buttons, drop downs, etc. - Create any new hierarchy of tree nodes I ...
by jaxjon
Sat Aug 14, 2004 10:23 pm
Forum: Need Help with Addons? (MMW4)
Topic: WebMonkey - 12 Aug 2004
Replies: 12
Views: 7872

Awesome!! :D One thing that would be a cool addition would be to allow users to play a preview (30 sec) of a song so they could hear it and listen to what your tastes are. Some musicians/bands I have never heard of, and would be a good way to share your music more with others but hopefully not break ...
by jaxjon
Sun Aug 01, 2004 3:52 pm
Forum: Need Help with Addons? (MMW4)
Topic: New script: Moves initial prepositions and fixes case
Replies: 8
Views: 27669

Question. How can this script be edited to allow for "a" to be "a" as not first word and "a" to be "A" when is first word? Example "A Farewell to Kings" I am working on a script to allow user to type in an artist name and album name and automatically play the album. So I need to allow for users to ...
by jaxjon
Thu Jun 03, 2004 5:58 pm
Forum: Need Help with Addons? (MMW4)
Topic: Full Album & Two For Script
Replies: 5
Views: 14102

Revision to Checker routine to only go to new album when End is the last song ( now when not in playalbum mode the last song will play :D ) Sub Checker Set plr=SDB.Player Set list=plr.CurrentSongList Dim i, itm For i=0 To list.count-1 Set itm=list.Item(i) If ((itm.Title="End") and ((plr ...
by jaxjon
Tue Jun 01, 2004 9:54 am
Forum: Need Help with Addons? (MMW4)
Topic: Full Album & Two For Script
Replies: 5
Views: 14102

Here is an update that has a check to make sure the second track is not the same as the first track in PlayArtist mode. Sub Checker Set plr=SDB.Player If (((plr.PlaylistCount) = (plr.CurrentSongIndex +1)) and (plr.PlaylistCount>3))Then Call PlayAlbum Else If (((plr.PlaylistCount) = (plr ...
by jaxjon
Sun May 30, 2004 6:48 pm
Forum: Need Help with Addons? (MMW4)
Topic: Full Album & Two For Script
Replies: 5
Views: 14102

Full Album & Two For Script

Here is my previous script updated with a new routine for generating 2 random songs from a randomly generated artist, commonly known as Two For Tuesday on radio stations here. Once again you need to install a song of no or little sound into the main tracklist and title it End. Here is my file to ...
by jaxjon
Sat May 29, 2004 8:09 pm
Forum: Need Help with Addons? (MMW4)
Topic: Play albums randomly
Replies: 6
Views: 7254

You could also just have Checker.vbs and add this to Scripts.ini [PlayAlbum] FileName=Checker.vbs ProcName=PlayAlbum Order=1 DisplayName=Play Full Album Description=Plays Full Album Language=VBScript ScriptType=0 [Checker] FileName=Checker.vbs ProcName=Checker Order=1 DisplayName=Checker Description ...
by jaxjon
Sat May 29, 2004 8:01 pm
Forum: Need Help with Addons? (MMW4)
Topic: Play albums randomly
Replies: 6
Views: 7254

The script now will loop to a new album when finished, in a non simplistic way. I had to create another script and give it a ScriptType=2, this script also has the original script included so it can call it. You need both scripts and references to both in scripts.ini. I also added another file (song ...
by jaxjon
Tue May 25, 2004 8:50 am
Forum: Need Help with Addons? (MMW4)
Topic: Check Player Status
Replies: 1
Views: 3952

Check Player Status

Is there a way with scripting to test if the player has stopped or if the playlist has come to an end? plr.stop tells player to stop but returns nothing.

Also, what is the value of CurrentSongIndex while the player has stopped?

Thank you
by jaxjon
Sun May 23, 2004 8:06 pm
Forum: Need Help with Addons? (MMW4)
Topic: Play albums randomly
Replies: 6
Views: 7254

Alright, this works, but I am still looking for a good way to loop back to the top when the last song has played. Any suggestions? The reason for recognizing only all visible songs is so if you click around in MM main track list then it still picks from the big list. Works best if main track listing ...