I'm using the ShellTile.Create method to create a secondary tile. Users of the app I've developed have noticed that if the entity they are pinning has a name that starts with "@" (which is then used for the title of the tile), then the title that is displayed by the phone is "@\Applications\" ....

It looks to me as though the phone treats an "@" at the start of the name as special somehow, and replaces it with a path ...

Here I'm setting the ShellTileData.Title to "@Test". This is what gets pinned:

Screenshot showing pinned tile with weird name

I've tried UrlEncoding the title - no luck.

Has anyone come across this before? Is it a known issue?

Damian

I've accepted Colin's answer below. This is the code I'm now using based on his suggestion:

...
if(initialData.Title.StartsWith("@")) {
    initialData.Title = '\uff20' + initialData.Title.Substring(1);
}
ShellTile.Create(uri, initialData);
link|improve this question

1  
Have you tried the other at-signs ... \uFF20 @ or \uFE6B ﹫ ? – ColinE Feb 13 at 12:27
\uff20 works! Wonderful thing about unicode - so many choices :-) – Damian Feb 13 at 14:14
cool! I have promoted this comment to an answer :-) Does it look fine on the tile? the character gets clipped in my browser. – ColinE Feb 13 at 14:51
Looks fine to me. Bizarre behavior by the shell API though. – Damian Feb 13 at 15:21
feedback

3 Answers

up vote 1 down vote accepted

As per my comment ... give \uFF20 a go, I doubt anyone will notice the difference between @ and @.

link|improve this answer
This works - I've added my updated code to the question, based on this answer. – Damian Feb 13 at 15:27
feedback

Eric Fleck from Microsoft responded here: http://forums.create.msdn.com/forums/p/100059/598687.aspx#598687

There is a mention of the issue under "Beware of the '@' Sign" on Peter Torr's blog here: http://blogs.msdn.com/b/ptorr/archive/2011/07/12/background-agents-part-3-of-3.aspx

Peter recommends adding a Zero-Width-Space unicode char (8203) to the start of tile names that begin with an @.

link|improve this answer
feedback

Well while you guys talk "code," all I know is the "@" symbol as supplied by typing "shift+2" by your average EU, is extremely common. This is a GTD "Getting Things Done" practice that has been around for a number of years. So it may be more common than the average dev/coder may think.

In the meantime, thanks for looking into this Damian.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.