TimeSig object

Updated 3년 ago
This page shows old instructions for MuseScore 1.
For MuseScore 4 users, see TimeSig object.

This documentation applies to plugins for 1.x only!


Documentation for 2.x+ is built into the Plugin Creator of Musescore.

( ⇒ In Musescore press Ctrl+Shift+P, then F1 to bring it up. )


Click here for Documentation for 3.x



Available in MuseScore 1.1+ only

The TimeSig object represents the time signature of a score.

A new TimeSig object is created with either:
var ts = new TimeSig()
or
var ts = new TimeSig(numerator, denominator)

In the former case an "empty" TimeSig object is created. Before it is used, it needs to be initialized by one of the methods below. In the latter case, the TimeSig object is initialized with the time signature numerator / denominator.

The time signature of the current score can be obtained with curScore.timesig, and you can, for instance, change it with the change method (e.g. curScore.timesig.change(3,4))

Properties

Name Type Description
type int an internal value describing the time signature
the only usage of this property is to copy the time signature from one TimeSig object to another (e.g. newsig.type = oldsig.type

Methods

change(int numerator, int denominator)

Change the time signature to numerator / denominator.

setAllaBreve()

Change the time signature to Alla Breve.

setCommonTime()

Change the time signature to Common Time