Answered by:
Tile update and app logo

Question
-
I am updating the tile locally (from my app) and I am using the square image template. The tile is updated, however, the small app logo is showing on the tile, in the bottom right corner. Is there a way not to show the app logo?
Thanks,
ValentinValentin Iliescu
Wednesday, May 30, 2012 2:58 PM
Answers
-
Hi Valentin,
You can set the branding to "none" to suppress this:
http://msdn.microsoft.com/en-us/library/windows/apps/br212854.aspx
In JS you would do it like this:
var tileContent = TileContent.TileContentFactory.createTileWideText09(); tileContent.textHeading.text = updateString; tileContent.textBodyWrap.text = "Received: " + dueTime.toLocaleTimeString(); tileContent.branding = "none";
-JeffJeff Sanders (MSFT)
- Proposed as answer by Jeff SandersMicrosoft employee, Moderator Monday, June 4, 2012 4:46 PM
- Marked as answer by Valentin Iliescu Tuesday, June 5, 2012 5:00 AM
Monday, June 4, 2012 4:46 PMModerator
All replies
-
That is very strange. The logo should show up in the bottom left corner and that is by design.
Jeff Sanders (MSFT)
Friday, June 1, 2012 2:14 PMModerator -
Sorry, I meant bottom left corner. So there is no way to change that?
Valentin Iliescu
Friday, June 1, 2012 2:42 PM -
Hi Valentin,
You can set the branding to "none" to suppress this:
http://msdn.microsoft.com/en-us/library/windows/apps/br212854.aspx
In JS you would do it like this:
var tileContent = TileContent.TileContentFactory.createTileWideText09(); tileContent.textHeading.text = updateString; tileContent.textBodyWrap.text = "Received: " + dueTime.toLocaleTimeString(); tileContent.branding = "none";
-JeffJeff Sanders (MSFT)
- Proposed as answer by Jeff SandersMicrosoft employee, Moderator Monday, June 4, 2012 4:46 PM
- Marked as answer by Valentin Iliescu Tuesday, June 5, 2012 5:00 AM
Monday, June 4, 2012 4:46 PMModerator