Hoe installeer ik add-ons (extensies)

Addons zijn scripts die zijn geschreven door MediaMonkey en Third Party-ontwikkelaars om de functionaliteit van MediaMonkey uit te breiden. De meeste Addons kunnen als volgt worden geïnstalleerd:

De meeste Addons worden gepubliceerd als .mmip-bestanden. U kunt .mmip-extensies installeren door te dubbelklikken op het .mmip-bestand of door naar Tools > Addons te gaan in het hoofdmenu en Add te gebruiken om het .mmip-bestand voor de extensie te selecteren

Opmerking:

  1. Als MediaMonkey in de draagbare modus draait, moet u het script handmatig installeren via Extra > Add-ons in het hoofdmenu.
  2. Als de extensie wordt geleverd als een .mmip-bestand, maar het bestand op uw pc wordt opgeslagen als een .zip-bestand, wijzigt u de extensie terug naar .mmip (u kunt .mmip-bestanden die u als .zip hebt gedownload, installeren onder Extra > Add-ons in het hoofdmenu (pak het bestand niet uit)).

Bij MediaMonkey 3 en 4 gebruikt u Extra > Extensies in plaats van Extra > Add-ons om Add-ons te installeren.

Sommige scripts (vaak oudere) zijn niet verpakt als .mmip-installatiebestanden en moeten handmatig worden geïnstalleerd. Volg de instructies die bij de extensie worden geleverd over hoe u moet installeren. Als er geen worden geleverd, zijn de algemene installatie-instructies als volgt:

  • Scripts met een installatieprogramma (meestal voor MediaMonkey 2.x):
    1. Sluit MediaMonkey
    2. Voer het installatieprogramma van het script uit
    3. MediaMonkey opnieuw opstarten
  • Automatische scripts die geen installatieprogramma hebben:
    1. Sluit MediaMonkey.
    2. Als het script niet als bestand beschikbaar is, opent u Kladblok, kopieert u de tekst van het script, plakt u deze in Kladblok en slaat u het bestand op met de juiste scriptnaam (bijvoorbeeld nieuwscript.vbs).
    3. Kopieer het scriptbestand naar de volgende map: C:\Program Files\MediaMonkey\scripts\auto
    4. MediaMonkey opnieuw opstarten
  • Scripts die geen installatieprogramma hebben:
    1. Sluit MediaMonkey
    2. Als het script niet als bestand beschikbaar is, opent u Kladblok, kopieert u de tekst van het script, plakt u deze in Kladblok en slaat u het bestand op met de juiste scriptnaam (bijvoorbeeld nieuwscript.vbs).
    3. Kopieer het scriptbestand naar de volgende map: C:\Program Files\MediaMonkey\scripts\
    4. Voeg een item toe aan scripts.ini om te definiëren hoe het script moet werken:
    5. Open C:\Program Files\MediaMonkey\Scripts\Scripts.ini in Kladblok
    6. Bewerk het bestand zodat het de volgende informatie bevat:
      Een nieuwe [SectionName] voor het script om het eenduidig te identificeren (bijv. [Newscript] )
      Bestandsnaam = Naam van een bestand waarin het script zich bevindt, (bijv. Bestandsnaam = Newscript.vbs)
      ProcName= Naam van een procedure die moet worden aangeroepen wanneer het script wordt uitgevoerd.
      Deze procedure moet bestaan in het hierboven gespecificeerde script (dit is alleen vereist voor sommige scripts).
      ScriptType=x om het type van het script te definiëren. Mogelijke waarden zijn:
      0 = Een standaardscript dat in het submenu ToolsScripts verschijnt.
      1 = Een exportscript dat u kunt vinden in het submenu BestandExport.
      2 = Een procedure die wordt aangeroepen wanneer een nieuw spoor wordt gestart.
      Dit script verschijnt niet in een menu, het wordt enkel op de achtergrond aangeroepen.
      Order=x om de volgorde te definiëren waarin het script in het submenu wordt weergegeven.
      DisplayName= Naam van script. Het script staat onder deze naam in het MediaMonkey-menu.
      Beschrijving = Beschrijving van het script. Dit wordt weergegeven als een tooltip wanneer de muis over de menu-ingang van het script beweegt.
      Taal = Meestal is dit VBScript, maar het kan ook een andere scripttaal zijn, bijvoorbeeld JScript.
      Snelkoppeling = Kan een snelkoppeling specificeren die het script in MM aanroept.
      U kunt elke tekenreeks gebruiken: “Shift+”, “Ctrl+” of “Alt+”, zelfs gecombineerd en gevolgd door een enkele letter of door een speciale toets, namelijk: BkSp, Tab, Enter, Esc, Spatie, PgUp, PgDn, End, Home, Left, Up, Right, Down, Ins, Del.
    7. MediaMonkey opnieuw opstarten

Veel extensies zijn te vinden op:
http://www.mediamonkey.com/addons/
MediaMonkey 5 Addon-forum
MediaMonkey 3 & 4 Addon-forum

Geldt voor:

Translated automatically (see original)

How to Install Addons (Extensions)

Addons are scripts written by MediaMonkey and Third Party developers to expand MediaMonkey’s functionality. Most Addons can be installed as follows:

Most Addons are published as .mmip files. You can install .mmip extensions by double clicking on the .mmip file or by going to Tools > Addons from the Main Menu and using Add to select the .mmip file for the extension

Note:

  1. If MediaMonkey is running in portable mode, you’ll have to manually install the script via Tools > Addons from the Main Menu.
  2. If the extension is provided as a .mmip file, but it saves on your PC as a .zip file, then change the extension back to .mmip (you can install .mmip files downloaded as a .zip under Tools > Addons from the Main Menu (don’t unzip the file)).

With MediaMonkey 3 & 4 use Tools > Extensions instead of Tools > Addons to install Addons.

Some scripts (often older ones) aren’t packaged as .mmip installer files and must be manually installed. Follow the instructions provided with the extension on how to install. If none are provided the general installation instructions are as follows:

  • Scripts with an installer (typically for MediaMonkey 2.x):
    1. Close MediaMonkey
    2. Run the script’s installer
    3. Restart MediaMonkey
  • Auto-scripts that don’t have an installer:
    1. Close MediaMonkey.
    2. If the script isn’t available as a file, open Notepad, copy the text of the script, paste it into notepad, and then save the file with the appropriate script name (e.g. newscript.vbs).
    3. Copy the script file to the following folder: C:\Program Files\MediaMonkey\scripts\auto
    4. Restart MediaMonkey
  • Scripts that don’t have an installer:
    1. Close MediaMonkey
    2. If the script is not available as a file, open Notepad, copy the text of the script, paste it into notepad, and then save the file with the appropriate script name (e.g. newscript.vbs).
    3. Copy the script file to the following folder: C:\Program Files\MediaMonkey\scripts\
    4. Add an entry to scripts.ini to define how the script should work:
    5. Open the C:\Program Files\MediaMonkey\Scripts\Scripts.ini in notepad
    6. Edit the file so that it contains the following:
      A new [SectionName] for the script to uniquely identify it (e.g. [Newscript])
      Filename= Name of a file where the script is located, (e.g. Filename=Newscript.vbs)
      ProcName= Name of a procedure to be called when the script is executed.
      This procedure must exist in the script that is specified above (this is only required for some scripts).
      ScriptType=x to define the type of the script. Possible values are:
      0 = A standard script that appears in ToolsScripts submenu.
      1 = An export script that can be found in FileExport submenu.
      2 = A procedure that is called whenever a new Track is started.
      This script doesn’t appear in any menu, it’s simply called in the background.
      Order=x to define the order in which the script is displayed in the submenu.
      DisplayName= Name of Script. The script is listed under this name in the MediaMonkey menu.
      Description= Description of the Script. This is shown as a tooltip when the mouse is over the script’s menu entry.
      Language= Is usually VBScript, but can be any other scripting language, e.g. JScript.
      Shortcut= Can specify a shortcut that will invoke the script in MM.
      You can use any of the string “Shift+”, “Ctrl+” or “Alt+” even combined together and followed either by a single letter or by a special key, which are: BkSp, Tab, Enter, Esc, Space, PgUp, PgDn, End, Home, Left, Up, Right, Down, Ins, Del.
    7. Restart MediaMonkey

Many extensions can be found at:
http://www.mediamonkey.com/addons/
MediaMonkey 5 Addon Forum
MediaMonkey 3 & 4 Addon Forum

Applies to:

Hide original

Was dit artikel nuttig?