MediaMonkey Development www page

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

Moderators: Peke, Gurus

rusty
Posts: 8419
Joined: Tue Apr 29, 2003 3:39 am
Location: Montreal, Canada

MediaMonkey Development www page

Post by rusty »

Hi,

I just posted a new page containing all relevent information for developing scripts / plugins / translations / skins for MediaMonkey. It's at:

http://www.mediamonkey.com/developers.htm

p.s. It includes information about new scripting functionality that has been added to MM 2.2.2.

-The MediaMonkey Team
Lowlander
Posts: 56574
Joined: Sat Sep 06, 2003 5:53 pm
Location: MediaMonkey 5

Post by Lowlander »

Nice,

but I'm kinda missing something. I just see a complete blank page in IE. In Firefox works fine.


PS. Source code shows a complete page in IE, just the browser shows a blank page.
jaxjon
Posts: 102
Joined: Tue May 27, 2003 8:47 am
Location: Florida USA

Post by jaxjon »

dittos for MYIE2
Lowlander
Posts: 56574
Joined: Sat Sep 06, 2003 5:53 pm
Location: MediaMonkey 5

Post by Lowlander »

I checked the code and there are two mistakes in the page:

The </title> tag misses the opening <. This actually causes the problem in IE.

Another problem on the page is that the third table (with class="tablemenubar") misses it's <tr></tr> tags. This actually is not causing any problems in IE (IE assumes these tags when missing) but could cause problems in other browsers as they don't assume missing table tags generally).



PS. MyIE and all those similar browsers run IE, not there own format. This often makes them as vunerable as IE itself!
jiri
Posts: 5419
Joined: Tue Aug 14, 2001 7:00 pm
Location: Czech Republic
Contact:

Post by jiri »

Thanks, it's fixed now.

Jiri
TheRocket
Posts: 84
Joined: Sat Jan 17, 2004 4:42 pm
Location: Quebec, Canada

Cooooooooollll :-)

Post by TheRocket »

I'm just waiting an object to add buttons to the song property window! That will be so cool!

Now the possibilities are endless!!!

Mediamonkey surpassed itself every time!
TheRocket
-- MMWBE 0.91 released! Get it here http://rocket.dyndns.info/mp3manager/mmwbe_v091.rar or see topic http://www.mediamonkey.com/forum/viewto ... 4005#34005 for more details!!!
Freexe
Posts: 73
Joined: Sun Nov 02, 2003 9:11 pm
Location: UK - London
Contact:

Post by Freexe »

While we are on the topic of the website, would it be possible to use mod_rewrite or something on the url from mediaomnkey.com/forum to the song-db one so i can bookmark forum posts instead of just sticking it in a frame, its kinda just lazy to use a frame.
b0b0b0b-guest

Post by b0b0b0b-guest »

Thanks for building this developer's site.
b0b0b0b
Posts: 29
Joined: Thu Apr 29, 2004 1:11 pm

Post by b0b0b0b »

Looking over the new API now. It's great! Thanks again guys
onkel_enno
Posts: 2153
Joined: Fri Jan 14, 2005 1:45 am
Location: Germany
Contact:

Post by onkel_enno »

Because I'm always searching for the latest Beta of the Scripting Help file, I set my bookmark here :)

http://www.mediamonkey.com/beta/MediaMo ... ipting.chm
KR

Anyone know why I can't get the help file to work?

Post by KR »

I am trying to open the scripting help file, but I can't make it work. All the contents, etc. come up in the left pane, but the right pane has only the message "Action cancled, internet explorer was unable to link to the web page you requested, blah, blah, blah."

Anyone have any ideas?

Thanks
leavhouse

Re: Anyone know why I can't get the help file to work?

Post by leavhouse »

Hi KR, are you running Windows XP or Server 2003?

Windows security settings are probably blocking the content. To unblock:
1) right click on the downloaded MediaMonkeyScripting.CHM file
2) choose properties.
3) Click the Unblock button (on the General tab)
4) Reopen the MediaMonkeyScripting.CHM file.
The right pane should work now.

See http://support.microsoft.com/kb/892675/

Hope this helps. It fixed my situation!

Scott
KR wrote:I am trying to open the scripting help file, but I can't make it work. All the contents, etc. come up in the left pane, but the right pane has only the message "Action cancled, internet explorer was unable to link to the web page you requested, blah, blah, blah."

Anyone have any ideas?

Thanks
Morten
Posts: 1092
Joined: Thu Aug 11, 2005 11:31 am
Location: Norway

Post by Morten »

I'm missing in the list... :(
MrPixar
Posts: 52
Joined: Thu Jan 05, 2006 5:35 pm
Location: Miami, FL, USA

Post by MrPixar »

Very useful information on that site. Thanks for posting it. Now, I just gotta get *my* name in that dern list :D
Teknojnky
Posts: 5537
Joined: Tue Sep 06, 2005 11:01 pm
Contact:

Post by Teknojnky »

onkel_enno wrote:Because I'm always searching for the latest Beta of the Scripting Help file, I set my bookmark here :)

http://www.mediamonkey.com/beta/MediaMo ... ipting.chm

is this still the most current scripting help?


I am getting an error trying to use the example code for adding option sheets:

Code: Select all

Example code


Sub OnStartup
  ' Create our own option sheet
  ind = SDB.UI.AddOptionSheet( "Test", Script.ScriptPath, "InitSheet", "SaveSheet", 0)
  ' Create another sheet as a child of the previous one
  SDB.UI.AddOptionSheet "Test2", Script.ScriptPath, "InitSheet2", "", ind
  ' Create one more sheet that is a child of Player sheet
  SDB.UI.AddOptionSheet "Player test", Script.ScriptPath, "InitSheet2", "", -2
End Sub

Sub InitSheet( Sheet)
 ' Prepare the sheet here...
End Sub

Sub SaveSheet( Sheet)
 ' Save entered values
End Sub
The error:

"Error happened during script execution:
Unknown name"

MM 2.5.2.951
Post Reply