Search found 102 matches
- 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 ...
- Fri Aug 20, 2004 6:41 am
- Forum: Need Help with Addons? (MMW4)
- Topic: Scripting help please
- Replies: 14
- Views: 10619
- 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 ...
- Thu Aug 19, 2004 4:43 am
- Forum: Need Help with Addons? (MMW4)
- Topic: Scripting help please
- Replies: 14
- Views: 10619
- Wed Aug 18, 2004 9:59 am
- Forum: Need Help with Addons? (MMW4)
- Topic: MediaMonkey Development www page
- Replies: 19
- Views: 39970
- 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 ...
- 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 ...
- 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 ...
- Thu Jun 03, 2004 5:58 pm
- Forum: Need Help with Addons? (MMW4)
- Topic: Full Album & Two For Script
- Replies: 5
- Views: 14102
- Tue Jun 01, 2004 9:54 am
- Forum: Need Help with Addons? (MMW4)
- Topic: Full Album & Two For Script
- Replies: 5
- Views: 14102
- 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 ...
- 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 ...
- 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 ...
- 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
Also, what is the value of CurrentSongIndex while the player has stopped?
Thank you
- 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 ...