Does anybody have any idea how to add the backgroundimage of the tile but from the LOCAL folder?
this works: backgroundImage: '/images/metrobooks-icon.png', //<-- part of the App Package inside the "images" folder
this does not: backgroundImage: folder.path+"\\myimage.gif", <-- I WANT THIS
---
var folder = Windows.Storage.ApplicationData.current.localFolder;
list.push({
group: sampleGroups[0],
key: "ss",
title: myTitle,
subtitle: '',
backgroundColor: "rgb(231,98,33)",
backgroundImage: folder.path+"\\myimage.gif",
content: (new Array(16)).join(''),
description: ''
});
Any ideas?