HISE Docs

ScriptButton


Class methods

addToMacroControl

Adds the knob / button to a macro controller (from 0 to 7).

ScriptButton.addToMacroControl(int macroIndex)



changed

Call this to indicate that the value has changed (the onControl callback will be executed.

ScriptButton.changed()



createLocalLookAndFeel

Returns a local look and feel if it was registered before.

ScriptButton.createLocalLookAndFeel()



fadeComponent

Toggles the visibility and fades a component using the global animator.

ScriptButton.fadeComponent(bool shouldBeVisible, int milliseconds)



get

returns the value of the property.

ScriptButton.get(String propertyName)



getAllProperties

Returns a list of all property IDs as array.

ScriptButton.getAllProperties()



getChildComponents

Returns list of component's children

ScriptButton.getChildComponents()



getGlobalPositionX

Returns the absolute x-position relative to the interface.

ScriptButton.getGlobalPositionX()



getGlobalPositionY

Returns the absolute y-position relative to the interface.

ScriptButton.getGlobalPositionY()



getHeight

Returns the height of the component.

ScriptButton.getHeight()



getId

Returns the ID of the component.

ScriptButton.getId()



getLocalBounds

Returns a [x, y, w, h] array that was reduced by the given amount.

ScriptButton.getLocalBounds(float reduceAmount)



getValue

Returns the current value.

ScriptButton.getValue()



getValueNormalized

Returns the normalized value.

ScriptButton.getValueNormalized()



getWidth

Returns the width of the component.

ScriptButton.getWidth()



grabFocus

Call this method in order to grab the keyboard focus for this component.

ScriptButton.grabFocus()



loseFocus

Call this method in order to give away the focus for this component.

ScriptButton.loseFocus()



sendRepaintMessage

Manually sends a repaint message for the component.

ScriptButton.sendRepaintMessage()



set

Sets the property.

ScriptButton.set(String propertyName, var value)



setColour

sets the colour of the component (BG, IT1, IT2, TXT).

ScriptButton.setColour(int colourId, int colourAs32bitHex)



setControlCallback

Pass a inline function for a custom callback event.

ScriptButton.setControlCallback(var controlFunction)



setKeyPressCallback

Adds a callback to react on key presses (when this component is focused).

ScriptButton.setKeyPressCallback(var keyboardFunction)



setLocalLookAndFeel

Attaches the local look and feel to this component.

ScriptButton.setLocalLookAndFeel(var lafObject)



setPopupData

Sets a FloatingTile that is used as popup.

ScriptButton.setPopupData(var jsonData, var position)



setPosition

Sets the position of the component.

ScriptButton.setPosition(int x, int y, int w, int h)



setPropertiesFromJSON

Restores all properties from a JSON object.

ScriptButton.setPropertiesFromJSON( var jsonData)



setTooltip

Shows a informative text on mouse hover.

ScriptButton.setTooltip( String tooltip)



setValue

Sets the current value

ScriptButton.setValue(var newValue)



setValueNormalized

Sets the current value from a range 0.0 ... 1.0.

ScriptButton.setValueNormalized(double normalizedValue)



setValueWithUndo

Sets the current value and adds it to the undo list. Don't call this from onControl!

ScriptButton.setValueWithUndo(var newValue)



setZLevel

Changes the depth hierarchy (z-axis) of sibling components (Back, Default, Front or AlwaysOnTop).

ScriptButton.setZLevel(String zLevel)



showControl

Hides / Shows the control.

ScriptButton.showControl(bool shouldBeVisible)



updateContentPropertyInternal

This updates the internal content data object from the script processor.

ScriptButton.updateContentPropertyInternal(int propertyId,  var newValue)



updateValueFromProcessorConnection

Updates the value from the processor connection. Call this method whenever the module state has changed and you want to refresh the knob value to show the current state.

ScriptButton.updateValueFromProcessorConnection()