Audio

Property | Function | Type |
Autoplay | Start playback automatically
Actions editor:
Property > Audio > Autoplay
Code:
widget.content.autoplay | bool |
Loop | Looping the playback
Actions editor:
Property > Audio > Loop
Code:
widget.content.loop | bool |

Property | Function | Type |
Equalizer | Display graphic equalizer
Actions editor:
Property > Audio > Equalizer > Equalizer
Code:
widget.content.showEqualizer | bool |
Equalizer color | Equalizer color
Actions editor:
Property > Audio > Equalizer > Equalizer color
Code:
widget.content.styleColor | color |
Bar width | Equalizer bar width in pixels
Actions editor:
Property > Audio > Equalizer > Bar width
Code:
widget.content.styleRows | int |
Symmetric | Display bars symmetrically
Actions editor:
Property > Audio > Equalizer > Symmetric
Code:
widget.content.styleSymmetric | bool |
Dots | Display dots instead of bars
Actions editor:
Property > Audio > Equalizer > Dots
Code:
widget.content.styleDots | bool |
File name | Audio file name
Actions editor:
Property > Audio > Equalizer > File name
Code:
widget.content.audioFile | string |
Property | Function |
Play | Actions editor:
Actions > Common > Play
Code:
widget.content.script.actionPlay() |
Stop | Actions editor:
Actions > Common > Stop
Code:
widget.content.script.actionStop() |
Pause | Actions editor:
Actions > Common > Pause
Code:
widget.content.script.actionPause() |
Property | Function |
Play | Event when playing started
Actions editor:
Event > Play
Code:
widget.content.script.eventPlay() |
Stop | Event when playing stopped
Actions editor:
Event > Stop
Code:
widget.content.script.eventStop() |
Pause | Event when playing paused
Actions editor:
Event > Pause
Code:
widget.content.script.eventPause() |
Last modified 2yr ago