This script took 15 minutes to write and should do what you need, but you'll need to install it manually. I wholly recommend learning scripting so that you can do things like this.
Create a new text file in Notepad or your favourite text editor. Copy and paste the code block below into it.
Code: Select all
Sub RateAndSkip()
SDB.Player.CurrentSong.Rating = 20 'set current track's rating to 1 star
SDB.Player.CurrentSongList.UpdateAll 'write the rating to the library and to the file depending on MM settings
SDB.Player.Next 'skip to the next track
If SDB.Player.CurrentSongLength < 90000 Then
'if the new track is less than 90 seconds long then don't bother trying to skip to the one minute mark
Exit Sub
End If
While SDB.Player.IsStartingPlayback 'wait for the player to successfully start playback by running this loop. Otherwise track seeking will have no effect.
SDB.ProcessMessages 'allows MM to continue working while this script waits
WEnd
If SDB.Player.IsPlaying Then 'only seek to one minute if a track is actually playing
SDB.Player.PlaybackTime = 60000 'skip to one minute into the track
End If
End Sub
Save this as
RateAndSkip.vbs in the following folder:
Windows 7 or later: C:\Users\[username]\AppData\Roaming\MediaMonkey\Scripts\
Windows XP: C:\Documents and Settings\[username]\Application Data\MediaMonkey\Scripts\
Now open the file called Scripts.ini in the same folder and add this block to the top:
Code: Select all
[RateAndSkip]
Filename=RateAndSkip.vbs
Procname=RateAndSkip
Order=99
DisplayName=RateAndSkip
Description=Rates the current track one star and skips to the next track.
Language=VBScript
ScriptType=0
The script will be available next time you open MM.
To assign a hotkey:
1. Go to Tools --> Options --> General --> Hotkeys
2. Select <New Hotkey...> at the top of the list.
3. Below the existing hotkey list, select the action 'General: Execute Script: RateAndSkip' from the drop down menu. It will be near the bottom of the drop down list.
4. Click on the text box below the drop down list and type the hotkey you would like to use. Also check the Global box.
5. Click Apply then OK.