Cómo instalar complementos (extensiones)

Los complementos son scripts escritos por MediaMonkey y desarrolladores externos para ampliar la funcionalidad de MediaMonkey. La mayoría de los complementos se pueden instalar de la siguiente manera:

La mayoría de los complementos se publican como archivos .mmip. Puede instalar extensiones .mmip haciendo doble clic en el archivo .mmip o yendo a Herramientas > Complementos desde el Menú principal y usando Agregar para seleccionar el archivo .mmip para la extensión.

Nota:

  1. Si MediaMonkey se ejecuta en modo portátil, tendrás que instalar manualmente el script a través de Herramientas > Complementos desde el Menú principal.
  2. Si la extensión se proporciona como un archivo .mmip, pero se guarda en su PC como un archivo .zip, cambie la extensión nuevamente a .mmip (puede instalar archivos .mmip descargados como .zip en Herramientas > Complementos desde el Menú principal (no descomprima el archivo)).

Con MediaMonkey 3 y 4, utilice Herramientas > Extensiones en lugar de Herramientas > Complementos para instalar complementos.

Algunos scripts (a menudo los más antiguos) no están empaquetados como archivos de instalación .mmip y deben instalarse manualmente. Siga las instrucciones proporcionadas con la extensión sobre cómo instalar. Si no se proporciona ninguna, las instrucciones generales de instalación son las siguientes:

  • Scripts con un instalador (normalmente para MediaMonkey 2.x):
    1. Cerrar MediaMonkey
    2. Ejecute el instalador del script
    3. Reiniciar MediaMonkey
  • Scripts automáticos que no tienen instalador:
    1. Cerrar MediaMonkey.
    2. Si el script no está disponible como archivo, abra el Bloc de notas, copie el texto del script, péguelo en el bloc de notas y luego guarde el archivo con el nombre de script apropiado (por ejemplo, newscript.vbs).
    3. Copie el archivo de script a la siguiente carpeta: C:\Program Files\MediaMonkey\scripts\auto
    4. Reiniciar MediaMonkey
  • Scripts que no tienen instalador:
    1. Cerrar MediaMonkey
    2. Si el script no está disponible como archivo, abra el Bloc de notas, copie el texto del script, péguelo en el bloc de notas y luego guarde el archivo con el nombre de script apropiado (por ejemplo, newscript.vbs).
    3. Copie el archivo de script a la siguiente carpeta: C:\Program Files\MediaMonkey\scripts\
    4. Agregue una entrada a scripts.ini para definir cómo debe funcionar el script:
    5. Abra C:\Archivos de programa\MediaMonkey\Scripts\Scripts.ini en el bloc de notas
    6. Edite el archivo para que contenga lo siguiente:
      Un nuevo [SectionName] para que el script lo identifique de forma única (por ejemplo , [Newscript] )
      Nombre de archivo = Nombre de un archivo donde se encuentra el script (por ejemplo, Nombre de archivo = Newscript.vbs)
      ProcName= Nombre de un procedimiento que se llamará cuando se ejecute el script.
      Este procedimiento debe existir en el script que se especifica arriba (esto solo es necesario para algunos scripts).
      ScriptType=x para definir el tipo de script. Los valores posibles son:
      0 = Un script estándar que aparece en el submenú HerramientasScripts.
      1 = Un script de exportación que se puede encontrar en el submenú ArchivoExportar.
      2 = Un procedimiento que se llama siempre que se inicia una nueva pista.
      Este script no aparece en ningún menú, simplemente se llama en segundo plano.
      Orden=x para definir el orden en que se muestra el script en el submenú.
      DisplayName= Nombre del script. El script aparece con este nombre en el menú de MediaMonkey.
      Descripción= Descripción del script. Se muestra como información sobre herramientas cuando el mouse se encuentra sobre la entrada del menú del script.
      Idioma= Generalmente es VBScript, pero puede ser cualquier otro lenguaje de programación, por ejemplo JScript.
      Acceso directo= Puede especificar un acceso directo que invocará el script en MM.
      Puedes utilizar cualquiera de las cadenas “Shift+”, “Ctrl+” o “Alt+” incluso combinadas entre sí y seguidas ya sea de una sola letra o de una tecla especial, las cuales son: BkSp, Tab, Enter, Esc, Space, PgUp, PgDn, End, Home, Left, Up, Right, Down, Ins, Del.
    7. Reiniciar MediaMonkey

Se pueden encontrar muchas extensiones en:
http://www.mediamonkey.com/addons/
Foro sobre complementos de MediaMonkey 5
Foro sobre complementos MediaMonkey 3 y 4

Se aplica a:

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

¿Fue útil este artículo?