Monkey Rok 4.1 - Updated 17/08/2009

Download and get help for different MediaMonkey for Windows 4 Addons.

Moderators: Peke, Gurus

trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Re: Monkey Rok 3.4 [MM2+3]

Post by trixmoto »

No, but it's the script I'm working on next time I get some spare time.
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
spacefish
Posts: 1427
Joined: Mon Jan 14, 2008 7:21 am
Location: Denmark

MR Skins Tutorial?

Post by spacefish »

Is there a tutorial for creating MonkeyRok skins anywhere? I'd really like to have one made for a couple of MM skins but no one's taken them up yet. Thought I might try to delve into it myself but don't know how to start.
Image
MM Gold 3.0.3.1183 : Vista HP SP1 (x86) : Zen Stone (2GB)
Zekton: An original MM3 skin by Eyal.
Scripts in Use: Add/Remove PlayStat | Auto Album DJ | AutoRateAccurate | Backup
Case & Leading Zero Fixer | Classification & Genre Changer | Clean Scripts.ini | Clear
Field | Custom Report | Discogs Auto-Tag Web Search | Forget Crossfade | Invert
Selection/Select None | Last 100... | Lyricator | Lyrics to Instrumental | MonkeyRok
MusicBrainz Tagger | My Custom Nodes | Now Playing Art Node | Play History & Stats
Right Click for Reports | Right Click for Scripts | Right Click for Web | Stop After Current
WebNodes
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Re: Monkey Rok 3.4 [MM2+3]

Post by trixmoto »

There's no tutorial, it's all in the "skin.html" and "skin.css" file, plus all the images in the "skins" folder. It's web styling rather than skinning really. I don't know if that makes it easier or harder for you though! :)
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
dypsis
Posts: 1362
Joined: Wed Apr 30, 2008 9:51 pm

Re:

Post by dypsis »

MPG wrote:I am always prompted to accept an Active X control. I have registered the msinet.ocx file. Is there another control requiring to be registered?

Thanks for you responses Trixmoto!

MPG
Here is a regfile to quickly change the setting. There is also an undo regfile included.
dypsis
Posts: 1362
Joined: Wed Apr 30, 2008 9:51 pm

Re: Monkey Rok 3.4 [MM2+3]

Post by dypsis »

Is there a way to get MonkeyRok to add the track to the end of the queue when you click on a track rather than play immediately?
spacefish
Posts: 1427
Joined: Mon Jan 14, 2008 7:21 am
Location: Denmark

Re: Monkey Rok 3.4 [MM2+3]

Post by spacefish »

trixmoto wrote:There's no tutorial, it's all in the "skin.html" and "skin.css" file, plus all the images in the "skins" folder. It's web styling rather than skinning really. I don't know if that makes it easier or harder for you though! :)
Ah, so it's just basic HTML and CSS with image references pointing to the skins folder? Seems straightforward enough. I guess I should start with an existing skin and see how that works, try changing it myself and see what happens. Thanks!
Image
MM Gold 3.0.3.1183 : Vista HP SP1 (x86) : Zen Stone (2GB)
Zekton: An original MM3 skin by Eyal.
Scripts in Use: Add/Remove PlayStat | Auto Album DJ | AutoRateAccurate | Backup
Case & Leading Zero Fixer | Classification & Genre Changer | Clean Scripts.ini | Clear
Field | Custom Report | Discogs Auto-Tag Web Search | Forget Crossfade | Invert
Selection/Select None | Last 100... | Lyricator | Lyrics to Instrumental | MonkeyRok
MusicBrainz Tagger | My Custom Nodes | Now Playing Art Node | Play History & Stats
Right Click for Reports | Right Click for Scripts | Right Click for Web | Stop After Current
WebNodes
Eyal
Posts: 3123
Joined: Sun Jun 26, 2005 9:27 am
Location: Québec
Contact:

Re: Monkey Rok 3.4 [MM2+3]

Post by Eyal »

dypsis wrote:Is there a way to get MonkeyRok to add the track to the end of the queue when you click on a track rather than play immediately?
Right-click the track instead. Popup with different choices.
Skins for MediaMonkey: Cafe, Carbon, Helium, Spotify, Zekton. [ Wiki Zone ].
dypsis
Posts: 1362
Joined: Wed Apr 30, 2008 9:51 pm

Re: Monkey Rok 3.4 [MM2+3]

Post by dypsis »

Eyal wrote:
dypsis wrote:Is there a way to get MonkeyRok to add the track to the end of the queue when you click on a track rather than play immediately?
Right-click the track instead. Popup with different choices.
Thanks.
Some left click options would be nice. And maybe the ability to remove the play controls. I don't need another set of controls.
Eyal
Posts: 3123
Joined: Sun Jun 26, 2005 9:27 am
Location: Québec
Contact:

Re: Monkey Rok 3.4 [MM2+3]

Post by Eyal »

dypsis wrote:Some left click options would be nice. And maybe the ability to remove the play controls. I don't need another set of controls.
You can disable the left click action in the options.
Again, for the controls, it's all defined in the skin. I saw once a MR skin without the controls, but don't remember where.
Skins for MediaMonkey: Cafe, Carbon, Helium, Spotify, Zekton. [ Wiki Zone ].
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Re: Monkey Rok 3.4 [MM2+3]

Post by Vyper »

Go to the skin's skin.html file and look for:

Code: Select all

<div id="play_controls"><img src="prev.gif" onClick="Player('prev')" /><img src="play.gif" onClick="Player('play')" /><img src="paus.gif" onClick="Player('paus')" /><img src="stop.gif" onClick="Player('stop')" /><img src="next.gif" onClick="Player('next')" /></div>

Delete it and save.
Stop Button Freak
dypsis
Posts: 1362
Joined: Wed Apr 30, 2008 9:51 pm

Re: Monkey Rok 3.4 [MM2+3]

Post by dypsis »

Vyper wrote:Go to the skin's skin.html file and look for:

Code: Select all

<div id="play_controls"><img src="prev.gif" onClick="Player('prev')" /><img src="play.gif" onClick="Player('play')" /><img src="paus.gif" onClick="Player('paus')" /><img src="stop.gif" onClick="Player('stop')" /><img src="next.gif" onClick="Player('next')" /></div>

Delete it and save.
Thanks...
I will look into this.
Eyal wrote:
dypsis wrote:Some left click options would be nice. And maybe the ability to remove the play controls. I don't need another set of controls.
You can disable the left click action in the options.
Yeah, but then it does nothing.
What I mean is that I would like to be able to left click, and add it to the end of the queue rather than replacing the entire playlist and playing that track. I don't see any point in it the way it currently works. Who really wants to erase everthing that they have just added to hear a track?
searching

Re: Monkey Rok 3.4 [MM2+3]

Post by searching »

hi,

is there a way to get MonkeyRok? the website mentioned in the first post does not contain a download of this script. or, otherwhise, i could not found anyone.

thanks
nohitter151
Posts: 23640
Joined: Wed Aug 09, 2006 10:20 am
Location: NJ, USA
Contact:

Re: Monkey Rok 3.4 [MM2+3]

Post by nohitter151 »

MediaMonkey user since 2006
Need help? Got a suggestion? Can't find something?

Please no PMs in reply to a post. Just reply in the thread.
nynaevelan
Posts: 5559
Joined: Wed Feb 07, 2007 11:07 pm
Location: New Jersey, USA
Contact:

Re: Monkey Rok 3.4 [MM2+3]

Post by nynaevelan »

searching wrote:hi,

is there a way to get MonkeyRok? the website mentioned in the first post does not contain a download of this script. or, otherwhise, i could not found anyone.

thanks
For the either the MM2 or MM3 versions, you have to click on the logo for the appropriate version.

Nyn
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins

Join Dropbox, the online site to share your files
shayguitarra
Posts: 27
Joined: Tue Apr 08, 2008 6:10 am
Location: Ireland

Re: Monkey Rok 3.4 [MM2+3]

Post by shayguitarra »

I've had an idea for what might be a good addition to Monkey Rok's Last FM functionality. Depending of course on how feasible it is.

In addition to Biography, similar artists, top tracks etc. it would be good if MR showed the number of plays you have for a particular artist. So when for example, you play Johnny Cash it comes up with "149 plays on Last FM" or something similar. I am one of those who likes to check on how my artists are faring from day to day.
Locked