locked
Tile update and app logo RRS feed

  • 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,
    Valentin


    Valentin Iliescu

    Wednesday, May 30, 2012 2:58 PM

Answers

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 PM
    Moderator
  • 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";

    -Jeff

    Jeff Sanders (MSFT)

    Monday, June 4, 2012 4:46 PM
    Moderator