KUIML
Blue Cat's User Interface Programming Language
PARAM_TOOLTIP

Description

The parameter tool tip is a system tool tip that displays a parameter as text. Its attributes are the combination of the attributes of the TOOLTIP and the PARAM_TEXT widgets.

Inherited Attributes

See TOOLTIP (except 'text' attribute that is replaced by the formatted parameter data) and PARAM_TEXT.

Examples

See the TOOLTIP and PARAM_TEXT widgets widgets for detailed examples.

  • Display a param tool tip on a knob (the blank cell has been added so that the skin is larger than the tool tip).

<?xml version="1.0" encoding="utf-8" ?>
<SKIN language_version="1.0" background_color="#999999">
   <IMAGE_PARAM_KNOB h_align="left" param_id="dsp.input1" image="knob_black.bmp" images_count="127" 
   image_orientation="horizontal">
      <PARAM_TOOLTIP param_id="dsp.input1" content="{name}:{value} {unit}&#13;I can even add text here!"
         value_format="5.1" />
   </IMAGE_PARAM_KNOB>
   <CELL width="200" height="30" />
</SKIN>