Was ist das? "Einfügen/test" ?

• 30. Mai 2012 - 16:03

Hi,

kann mir jemand einen Tipp geben, was es mit dem (evtl. nur bei mir) auftauchenden Menüeintrag "Einfügen/test" auf sich hat?
Es tut sich gar nichts, wenn ich den bediene und irgendwie wirkt der auf mich suspekt.
Jetzt habe ich die 1.2er-Version, aber bei der 1.0er hatte ich den auch schon - wenn ich auch nicht weiß, wie lange schon....

[Das "PlugIns/Test" kenne ich wohl - aber das hier ist ein anderer]

Danke,

pmalias.

Anhang Größe
musescore.jpg 141.31 KB

Comments

Gibt es bei mir nicht. Könnte aber ein Plugin sein, das sich diese normalerweise unter Menü->Plugins aufhalten ist nur deren Quelltext zu verdanken, wenn man dort das 'Plugins' durch 'Einfügen' oder so ersetzt, tauchen sie halt woanders auf. Ein Beispiel dafpr ist das MuseScore Connect Plugin, dass sich in Menü->Datei->Online speichern einnistet

Antwort auf von Jojo-Schmitz

Hi,

vielen Dank. Ich habe es tatsächlich gefunden. Ich habe eine C:\Programme\MuseScore\plugins\test2.js gefunden, auf die das passt:

//=============================================================================
// MuseScore
// Linux Music Score Editor
// $Id:$
//
// Test plugin 2
//
// Copyright (C)2008 Werner Schweer and others
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//=============================================================================

//
// This is ECMAScript code (ECMA-262 aka "Java Script")
//

//---------------------------------------------------------
// init
// this function will be called on startup of
// mscore
//---------------------------------------------------------

function init()
{
// print("test2 script init");
}

//---------------------------------------------------------
// run
// this function will be called when activating the
// plugin menu entry
//---------------------------------------------------------

function run()
{
print("test2 script run");
}

var mscorePlugin = {
menu: 'Create.test',
init: init,
run: run
};

mscorePlugin;

Woher die kommt, weiß ich nicht, aber ich gehe mal davon aus, dass sie unbedenklich ist....
Datei umbenannt -> Eintrag weg -> User zufrieden. :D

Vielen Dank!!

pmaliaspm.

Do you still have an unanswered question? Please log in first to post your question.