STrackInfo
Index
Properties Index
| Property |
|---|
string Title get |
string Artist get |
Properties
Title
string Title get
Title of the track
- Lua
otc = function(trackInfo)
Space.Log(trackInfo.Title)
end
Space.Host.ExecutingObject.Radio.OnTrackChange(otc)
Artist
string Artist get
Artist of the track
- Lua
otc = function(trackInfo)
Space.Log(trackInfo.Artist)
end
Space.Host.ExecutingObject.Radio.OnTrackChange(otc)