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:

Post by trixmoto »

@Balance - your request has been fulfilled: http://www.mediamonkey.com/forum/viewtopic.php?t=18416
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.
Killjoy12
Posts: 100
Joined: Mon Jun 11, 2007 11:33 pm

Post by Killjoy12 »

I really like your brushed monkey blue skin. Any chance you could create a corresponding MonkeyRok skin?
trixmoto
Posts: 10024
Joined: Fri Aug 26, 2005 3:28 am
Location: Hull, UK
Contact:

Post by trixmoto »

I've added it to my to-do list. :)
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.
Killjoy12
Posts: 100
Joined: Mon Jun 11, 2007 11:33 pm

Post by Killjoy12 »

Thanks!
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Post by Vyper »

I did a search and found the answer to my exact question several pages back which was:

Can the order of the panels be easily changed? To which you replied that it was a skin function and could be changed in the skin.html file which is all well and good for you geeky types ...... lol . :P

Any chance it could become a function in the options in the future sometime?


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

Post by trixmoto »

No, this is no possible, because of the way the script is designed. The entire HTML would have to be built by the script, and this would be extremely slow so I don't even think a redesign would be possible.
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.
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Post by Vyper »

Ah well. Thanks for letting me know. :D
Stop Button Freak
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Post by Vyper »

Not sure if it's okay to do this or not so if not, someone delete my post. :)

This is the body of the skin.html that I want changed. What do I do to make the lyrics panel appear last?

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

Post by trixmoto »

To save space I've removed yours. Try this...

Code: Select all

<body onLoad="RestoreSession()">
<input id="onPlayChange_proxy" onClick="OnPlayChange()" type="button" class="proxy" />
<div id="wrapper"><div id="wrapper2">
	<div id="info" class="box">
		<div id="info_header" class="header" onClick="toggleVisible('info_content')">
			<div id="info_title"></div>
			<div id="info_sub"></div>
		</div>
		<div id="info_content" class="content">
			<table width="100%" border="0">
				<tr>
					<td id="info_left" class="img_box">
						<img id="info_art" class="img_big" src="" onClick="PopImage(this)" />
					</td>
					<td id="info_right"><br>
						<div id="info_played"></div>
						<div id="info_rating"></div>
						<div id="info_lastplayed"></div>
						<div id="info_added"></div>
						<div id="info_extra"></div>
					</td>
				</tr>
			</table>
			<div id="current_album" class="box">
				<div id="current_album_header" class="header">
					<div id="current_album_title" onClick="toggleVisible('current_album_content')">Current Album</div>
				</div>
				<div id="current_album_content" class="content"></div>
				<div id="current_album_footer" class="footer"></div>
			</div>
		</div>
		<div id="info_footer" class="footer"></div>
	</div>
	<div id="external" class="box">
		<div id="external_header" class="header">
			<div id="external_title" onClick="toggleVisible('external_content')">External</div>
		</div>
		<div id="external_content" class="content">
		</div>
		<div id="external_footer" class="footer">
		</div>
	</div>
	<div id="favourites" class="box">
		<div id="favourites_header" class="header">
			<div id="favourites_title" onClick="toggleVisible('favourites_content')">Favourite Tracks By Artist</div>
		</div>
		<div id="favourites_content" class="content">
		</div>
		<div id="favourites_footer" class="footer">
		</div>
	</div>
	<div id="mostplayed" class="box">
		<div id="mostplayed_header" class="header">
			<div id="mostplayed_title" onClick="toggleVisible('mostplayed_content')">Most Played Tracks By Artist</div>
		</div>
		<div id="mostplayed_content" class="content">
		</div>
		<div id="mostplayed_footer" class="footer">
		</div>
	</div>
	<div id="albums_by" class="box">
		<div id="albums_by_header" class="header">
			<div id="albums_by_title" onClick="toggleVisible('albums_by_content')">Albums By Artist</div>
		</div>
		<div id="albums_by_content" class="content">
		</div>
		<div id="albums_by_footer" class="footer">
		</div>
	</div>
	<div id="albums_featuring" class="box">
		<div id="albums_featuring_header" class="header">
			<div id="albums_featuring_title" onClick="toggleVisible('albums_featuring_content')">Albums Featuring Artist</div>
		</div>
		<div id="albums_featuring_content" class="content">
		</div>
		<div id="albums_featuring_footer" class="footer">
		</div>
	</div>
			<div id="lyrics" class="box">
				<div id="lyrics_header" class="header">
					<div id="lyrics_title" onClick="toggleVisible('lyrics_content')">Lyrics / Comments</div>
				</div>
				<div id="lyrics_content" class="content"></div>
				<div id="lyrics_footer" class="footer"></div>
			</div>
</div></div>
</body>
All I've done is taken the DIV labelled "lyrics" and moved it down underneath all the others.
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.
RedX
Posts: 366
Joined: Wed Dec 27, 2006 10:32 am
Location: Germany

Post by RedX »

trixmoto wrote:No, this is no possible, because of the way the script is designed. The entire HTML would have to be built by the script, and this would be extremely slow so I don't even think a redesign would be possible.
Well actually you could easily make everything drag and drop by using the javascript framework you already have. scriptaculous. Check out their website.

Best wishes,
Red
Vyper
Posts: 845
Joined: Tue May 23, 2006 5:53 pm

Post by Vyper »

I woulda swore I did that but I was getting an error. Must have missed a line or something.

At any rate, thanks for the help! :D
Stop Button Freak
Lhademmor

Can't see covers

Post by Lhademmor »

Hi, I've just installed Monkey Rok, and it's a good idea. I've tweaked the regedit.exe to get rid of that annoying ActiveX reminder. However, when marking a track, I get no cover shown (only the red ? on white background).
Is there any way to get a cover or something there?

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

Post by trixmoto »

This depends, how have you got your artwork tagged in your tracks?
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.
Lhademmor

Post by Lhademmor »

trixmoto wrote:This depends, how have you got your artwork tagged in your tracks?
Oops, no... When artwork tagged it shows up nicely. :)
But then another question: What was that about last.fm? Does this script pull something from last.fm? I think I've read that it pulls up all known albums from the chosen artist, but when I pick an artist, it only shows the albums I already have?
Eyal
Posts: 3123
Joined: Sun Jun 26, 2005 9:27 am
Location: Québec
Contact:

Post by Eyal »

You can change that in the Options.
Skins for MediaMonkey: Cafe, Carbon, Helium, Spotify, Zekton. [ Wiki Zone ].
Locked