Windows 8 Site Tile

Started by Ytterbium, July 03, 2013, 03:30:50 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Ytterbium

Hi, could you add the metadata code to the webapp code to get a nice tile icon when pinned in w8?

There is some documentation here:

http://www.ghacks.net/2012/11/16/create-a-special-windows-8-start-screen-icon-for-your-website/

http://www.buildmypinnedsite.com/

Thanks 😊

fred

Quote from: Ytterbium on July 03, 2013, 03:30:50 AM
Hi, could you add the metadata code to the webapp code to get a nice tile icon when pinned in w8?

There is some documentation here:

http://www.ghacks.net/2012/11/16/create-a-special-windows-8-start-screen-icon-for-your-website/

http://www.buildmypinnedsite.com/

Thanks 😊
The links are for website tiles.. I'm confused.

Ytterbium

If I 'pin' the BoincTasks Mobile 'Website' to my start menu then it's "Web Tile" in MS naming?

This is what it looks like now:


fred

Quote from: Ytterbium on July 03, 2013, 09:27:55 PM
If I 'pin' the BoincTasks Mobile 'Website' to my start menu then it's "Web Tile" in MS naming?

This is what it looks like now:


Would you be able to do this yourself?

I would be something like this:

<meta name="application-name" content="BoincTasks"/>
<meta name="msapplication-TileColor" content="#1559eb"/>
<meta name="msapplication-TileImage" content="images/eFMerBoincTasks.png"/>


Open bt.html here: C:\Program Files\eFMer\BoincTasks\webserver

And look for:
<!DOCTYPE html>
<head>   
   <meta charset="utf-8">
Add the above here.
Best to open the file using Notepad (Make sure to open Notepad with the right mouse key and select Administrator).

You may also have to do this for login.html

Result:
<!DOCTYPE html>
<head>   
   <meta charset="utf-8">
   <meta name="application-name" content="BoincTasks"/>
   <meta name="msapplication-TileColor" content="#1559eb"/>
   <meta name="msapplication-TileImage" content="images/eFMerBoincTasks.png"/>

Ytterbium

Thanks fred, I thought it was hard coded into the program somehow.



Worked perfect, any chance you could add it to the code going forward?

fred

Quote from: Ytterbium on July 06, 2013, 12:09:40 AM
Worked perfect, any chance you could add it to the code going forward?
Just did.

Ytterbium

Sounds like this is resolved too :)