Your comments

Sound options in the app looks to be ok.

Tried that project. Works on desktop but when transferred to iPad there is no sound.

iPad settings looked also to be fine.

Could it be some kind of playlist update bug?

Sometimes Current Playlist text shows for example 53 of 83 but songs on Playlist wont update.

I would really use some help with this! ;)

Ok.

But how can I write specific level value to specific level?


For example if I have created 8 level items to my list and I want to change Item 1 level value to whatever value my equipment is sending to iridium.


IR.AddListener(IR.EVENT_START,0,function()

{
List_1.Template = "Frontpage_list_template";
List_1.CreateItem(0, 1, {Text: "$V"});
List_1.CreateItem(1, 1, {Text: "$V"});
List_1.CreateItem(2, 1, {Text: "$V"});
List_1.CreateItem(3, 1, {Text: "$V"});
List_1.CreateItem(4, 1, {Text: "$V"});
List_1.CreateItem(5, 1, {Text: "$V"});
List_1.CreateItem(6, 1, {Text: "$V"});
List_1.CreateItem(7, 1, {Text: "$V"});
List_1.CreateItem(8, 1, {Text: "$V"});
});

I dont have any licence currently for iPad Air 2.

Does it require licence to get sounds?

Ok. After I reimported songs to playlist it shows correct names again.

But another problem I discovered is:

iPad goest to sleep mode > after several hours I use my iPad and sonos again in normal mode > Sonos updates itself to current playlist song and current playlist but list of songs has been disappeared. Only way to get sonos function properly again is to reboot whole ipad or upload sonos project to iPad again. Any idea what causes this?

Yes I checked and i think all is already in script.It is very important to solve this problem as quick as possible! :)

Yes I checked and i think all is already in script.

It is very important to solve this problem as quick as possible! :)

I have project where i am using this sonos module.

Problem is that Track name is always Album name so it is wrong.

Any ideas how to fix this? I REALLY NEED SOME HELP WITH THIS ASAP! :)


Is it possible to create funtion and use it with script call and log the name of the button with it?

That's great!

In a button In GUI editor we can have button which has Image and Icon property.

Is it possible also to add icon via script so i can have image and icon for button?

IR.AddListener(IR.EVENT_START,0,function() // Event is activated at the application launch

{
list = IR.GetItem("Page 1").GetItem("Item 1");// Receive the list identifier and save it in the variable with the name "list".
list.CreateItem(1, 1, {Text: "TV Bedroom"}); // Create item 1 and set the "Text" property "TV Bedroom" for sub element 1
list.CreateItem(2, 1, {Text: "Projector"}); // Create item 2 and set the "Text" property "Projector" for sub element 1
list.CreateItem(2, 2, {Image: 1}); // Set the "Image" property which identifier is 1 for sub element 2
list.CreateItem(3, 1, {Text: "TV Hall"}); // Create item 3 and set the "Text" property "TV Hall" for sub element 1
list.CreateItem(3, 2, {Image: 2}); // Set the "Image" property which identifier is 2 for sub element 3
});

So is there sub element identifier for icon also?


Something like this?:


list.CreateItem(1, 1, {Text: "Text 1});

list.CreateItem(1, 2, {Image: "Image1"});

list.CreateItem(1, 3, {Icon: "Icon1.png"});