How To Make A Live Tile That Regularly Updates From A Website - Windows 10, 8, 7, XP etc.

Hello,
I created a Windows Vista/7 Gadget to gather weather information from the following site: http://orsl.montana.edu/weather/ORSLweather.php. This is basically an image that updates every five minutes with the latest data from a weather station at a University. Pinning the site doesn't create a tile that actively shows the latest image, so I am trying to create a live tile for use with Windows 8/10. While I have some coding experience, I am not a programmer and am getting stymied making this seemingly simple task occur. I will copy the XML and HTML files I used for the Gadget I created in the hopes that it will help out. Thanks in advance for any help!
**** GADGET-XML ****
<?xml version="1.0" encoding="utf-8" ?>
<gadget>
<name>MSU Weather</name>
<namespace>
<!--_locComment_text="{Locked}"-->microsoft.windows
</namespace>
<version>1.2</version>
<logo src="logo.png"/>
</author>
<copyright>July 29, 2008</copyright>
<description>Gadget based on the MSU COE Weather Page</description>
<icons>
<icon height="180" width="120" src="icon.png"/>
</icons>
<hosts>
<host name="sidebar">
<base type="HTML" apiVersion="1.2.0" src="MSU_Weather.html" />
<permissions>full</permissions>
<platform minPlatformVersion="0.3" />
<defaultImage src="drag.png"/>
</host>
</hosts>
</gadget>
**** GADGET-HTML****
<html>
<head>
<style>
body {
width:120;
height:180;
background-image:url('http://orsl.montana.edu/weather/ORSLweather.php');
}
</style>
<script>
function loaded()
{
window.setInterval(refreshImage, 60 * 1000);
}
function refreshImage()
{
window.location.reload(true);
}
</script>
</head>
<body onload="loaded()">
</body>
</html>

May try to create an application http://appstudio.windows.com/en-us

maxaon09 said:
May try to create an application http://appstudio.windows.com/en-us
Click to expand...
Click to collapse
Thanks for the info - I never knew this existed. Unfortunately it doesn't seem to create a 'live' tile - meaning one that updates regularly. The weather info updates every five minutes, so I am looking to make a tile that will look for the updated image similar to how the gadget I made did.

Actually, only applications can create live tiles on start menu. So I think it needs a little coding experience. I don't know if those links help:
msdn.microsoft.com/en-us/library/windows/apps/xaml/hh868253.aspx
irisclasson.com/2014/07/30/how-to-create-a-live-tile-for-your-website-in-a-few-minutes/
cleonti said:
Thanks for the info - I never knew this existed. Unfortunately it doesn't seem to create a 'live' tile - meaning one that updates regularly. The weather info updates every five minutes, so I am looking to make a tile that will look for the updated image similar to how the gadget I made did.
Click to expand...
Click to collapse

kerimka said:
Actually, only applications can create live tiles on start menu. So I think it needs a little coding experience. I don't know if those links help:
msdn.microsoft.com/en-us/library/windows/apps/xaml/hh868253.aspx
irisclasson.com/2014/07/30/how-to-create-a-live-tile-for-your-website-in-a-few-minutes/
Click to expand...
Click to collapse
Thanks for the help. I had seen the info in the second link, but the first one was new to me. Unfortunately the info in the first link gets me close, but not quite there though that could be due to my ignorance. I have seen websites that work as a Live tile when pinned and was hoping I could make something similar, but as a HTML/XML/JS on the local computer as opposed to hosted on a server or having to create a full app using C#, C++, or VB. While it took me a bit of coding to make the original gadget, it wasn't that hard to get it going whereas the Live Tile continues to elude me.

Related

[New release] Clock with seconds (today plug-in)

Greetings everybody!
This project started as a simple test to write a today screen plug-in. The first version did nothing but show date and time updated every second. It had no options and in my opinion was useless.
Then I found out about the new AKU2 ROM and that there were a lot of people out there who really didn't like the changes made to today screen.
So I decided to continue with the project, and now it has evolved so even the title of the thread isn't very suitable any more. I keep it so people can recognize the thread.
Here's what this plug-in has to offer:
• Show date on today screen in one line, like in older ROMs.
• Show clock on taskbar in today screen (with / with out AM / PM).*
• Show date in taskbar*
• Options to control what appears in today screen: long / short date, time, seconds.
• 4 different alignment options.
• Custom font size for plug-in.
• Shows alarm icon, even on WM2003 devices.
• Option to blink the taskbar clock at user set intervals.*
• Option to turn of selectability.
• Windows Mobile 6 compatible
• Internet time synchronization (manual only)
*The plug-in does not effect system displayed taskbar clock if it exists, instead it puts it's own clock covering some icons. It can do so in today screen and all programs. The covered icons can still be accessed by taping on their location (the clock is 'click transparent')
NOTE: Before updating the plug-in, disable old version and then uninstall it. This will insure new file and settings will take effect. It is also recommended to preform soft reset.
DISCLAIMER: This program comes free but with no warranty, or even a guarantee that it will work. I take no responsibility for any damage that might incur from using this program.
PLEASE NOTE: The download is just below this message, but you must be logged in to see it.
LATEST VERSION: 0.2.1 published on 12/1/2008
One minor bug fix: my leap year calculation was off so the internet time sync was a day back. This is now fixed.
Download the app: View attachment LVMTime.CAB
Want to know how it works? Get the source code: View attachment 65697
Side note: It seems that the pole was reopened (probably because of forum format change. 33 people voted for "something else" but I have not received a single suggestion. "see post" means that if you vote for "something else" you must add a post with a suggestion - or I'll have to hunt you down for it! (Just kidding - not time as it is).
very nice
I'm about to commission something like this myself (plans from a month back or so - hope you don't mind)... here's one thing I noticed immediately; the font size doesn't respect the system font size. So if your today text is all "smaller" or "small", your item will still display as "normal".
Hi ZeBoxx!
I'm about to commission something like this myself (plans from a month back or so - hope you don't mind)...
Click to expand...
Click to collapse
Like I said this is just something I did as a test so be my guest, in fact if you want, I can send you the code, it's really basic but a good starting point.
the font size doesn't respect the system font size
Click to expand...
Click to collapse
Yeah, I just create the font once in a global var. If someone will be kind enough to point me toward the right registry key, I'll be happy to correct this.
Also I'm pretty sure that clock.exe has a command line parameter that forces it to open on the time tab instead of the last tab accessed (when you launch it from the clock / run menu), I've tried several options but none of them worked. Does any one know what the parameter is?
Hi Levenum,
nice if you could send me the code too.
Thinking to implement some options, that might be usefull.
- Show/hide date
- Show/hide seconds
- Left/right justify
Seems to be the best alternative, for lack of clock in Today screen with new WM5.0 ROMs.
At least until someone cames with a proper hack!
Code sent via email.
levenum said:
Code sent via email.
Click to expand...
Click to collapse
Can you send the code also to me? Would be nice. Thanx
Thanks levenum
I think this good and can be further enhanced.
1. Clock to be sensitive to the h:mm:ss tt setting so we can alter the format and option to turn seconds on/off
2. Date format to be sensitive too to the format set
3. I think I would prefer the time to be right justified as this would appear neater.
I think this project could be a real goer as many have complained with the new wm5 roms and two lines date and time take.
Keep up the good work!
Thanks levenum
I think this good and can be further enhanced.
1. Clock to be sensitive to the h:mm:ss tt setting so we can alter the format and option to turn seconds on/off
2. Date format to be sensitive too to the format set
3. I think I would prefer the time to be right justified as this would appear neater.
I think this project could be a real goer as many have complained with the new wm5 roms and two lines date and time take.
Keep up the good work!
Hello everybody!
I am actually a bit overwhelmed by the warm response and the amount of downloads in such a short period of time.
Since I don't have access to a WM 5 device with the current ROMs you mentioned here I had no idea there was a problem with the date on today screen.
Regarding adding the formatting options: I thought of that, but unfortunately I have next to no time to devote to this project (I didn't actually expect it to become a project) so since I need to do a search for the registry keys (or maybe there are API functions) that contain the date and time format I am not likely to incorporate them any time soon. Of course if someone wants to help by posting the relevant info or link to it, that might speed things alone.
If anyone out there wants to just take my code and add the options them selves like Conchas you are welcome to post the results right here.
Also, the code requests keep coming in. I didn't post the project here because I thought it will be a waste of disk space (it's just a basic outline for a plug-in) but if the requests keep coming I will post it here rather then sending it every time.
P.S.:
I found this forum very helpful, and am glad to give a little something back to the community, although I am sure a monetary donation would have been more appreciated by the site administration. :mrgreen: :mrgreen: :mrgreen:
I want the code also.Thanks a lot
Hey good jb, I have downloaded, but not installed.
I suggested to SPB to get a hurry up with their WM5 release of SPB Time, and have heard that it has gone into Beta, probably for this reason.
will have a look and provide feedback. Without looking, some good features that people have indicated a need for in clock feature on other forums are:
1. Alarm clock system that works
2. Floating screen saver for clock
3. Stop watch and lap counters
PS I am sure donations will flow with a commitment to add in and make your own features enhanced.
When I looked, there was 66 downloads. If we offered say $10 (AUS) or similar for a full featured application, you would have had $660, and its ony just been posted. by the end of next week, it will have been downloaded thousands of times.
xdaIIse: I am posting the code a the head of the thread.
simon_darley: You misunderstood me: I am not asking for donations to my self. What I meant was that this site could use a donation more than my plug-in posted. It was just a little joke.
As for SPB, I saw some of their plug-ins, and there's not much chance I will be able to compete with them though I decided to add some options soon.
I was only dropping a hint that you could make money out of it, and gain further development experience at a profit... ,)
I just downloaded -- will be great as a quick intro to writing today plugins -- thanks!
I'm also really interested, because I'd like to have a single-line Day, Date, Time option for my Today screen -- but NOT the 2-line silliness that WM5 makes you use -- that just takes up too much space!
I have the date and time on my task/title bar with Wisbar, but there's no room up there for it to say "Saturday" (or any other day for that matter!). So I've been pondering a nice slim Today add-in that can format the day, date, time exactly as I'd like. I'd also like to experiment with options to make it skinnable, transparent, obey/ignore the system fonts, date formats, etc.
Thanks...I'll take a look at this soon...
Hey, could some one post here or pm me a screen shot of the problematic date plug-in. All this talk got me curios. I worked with WM 5 devices but they had a standard date display like WM 2003.
levenum said:
Hey, could some one post here or pm me a screen shot of the problematic date plug-in. All this talk got me curios. I worked with WM 5 devices but they had a standard date display like WM 2003.
Click to expand...
Click to collapse
It's only with the new ROMs (AKU2 ROMs)
http://forum.xda-developers.com/viewtopic.php?t=44662
Thanks Ze!
It looks to me like MS is heading towards making PPCs look like regular cell phones with this new OS. First there were the soft keys that took the place of the menu/toolbar. (I didn't understand the design until I saw a phone edition device that had hardware equivalents) now it’s the little white battery meter.
What's next?
Full screen incoming call notification…
Problem is, unless you use a full taskbar skinner like Wisbar, you don't have much control over the fact that the day/date displays as two lines (I think changing the global date formats might have an effect but I'm not positive - and that SHOULDN'T be the only way to affect this display!).
Take a look at this clock plugin: TodayTime
Perhaps it does what you want. Dunno about the spanish though...
Cheers

[New release] Registry display plugin

Ok, most of you may find this totally useless as a plugin, but it was a combination of a request by user Treo_newb and a desire to create a sample plugin project that could be used as a base / example for plugin writers (I plan on doing an article on codeproject.com and this will be the source for it).
What does it do?
This plugin displays a string stored in registry.
The path is:
HKEY_CURRENT_USER\Software\RegDispPlugin
Value name: DisplayString
It checks if this string has changed several times per second when today screen is shown (as the system sends refresh message to all plugins) and displays the updated message if a change occurred.
What is it good for?
First, if you write apps using mortscript or similar like the user who requested this it will let your script display stuff on today screen.
Alternatively it could be used to mark your device today with a string that isn't as easily changed as user info.
The source is basically a skeleton plugin you can use to build your own plugin on (no license / copyright to limit you) and it already has several tricks needed for the plugin to display correctly:
VGA compatibility
Text size matching system settings
Proper header in settings dialog (like on system plugins)
Proper text color when selected (according to theme)
No blinking all today screen on change
Proper resize when switching between landscape and portrait
When I was writing my first plugin I could not find all these little fixes concentrated in a single article so I had to fish for each one as the bug reports came in.
Hope you will find this little project useful.
The plugin:View attachment RegDisplay.CAB
The source (eVC 4 project): View attachment RegDisplay.zip
Thanks for this!
Thank You Lev.
Thanks, Thanks, Thanks,
You are a legend.
I was almost through with my today plugin and was trying to figure out reading registry values and all of a sudden I get a PM from u about the plugin !!!
Very Cool !!!
OK a few questions,
1. I know that WM_TODAYCUSTOM_QUERYREFRESHCACHE is called for refreshing the today plugin, any ideas about when is it called.
I read somewhere that it was 2 seconds. Is it true?
2. I saw ur code and u have exposed CustomItemOptionsDlgProc in RegDisplay.def, but when I installed the cab file the 'options' is not enabled.
I manually changed the resistry and changed options to dword = 1 and saw ur name and email address.
u might want to enable that by default so that people can notice ur work.
I am planing a commercial release of a new project on basis of this.
Thanks again,
Shailesh
First, you're welcome.
shaileshashar:
1) I ran a debug print on this message once on an iPaq 1710 and it seems to be sent several times per second. This could differ from OS to OS or even from device to device, I am not sure.
If you need specifically timed refresh, or you have an event triggered on new data, I suggest using a timer or maybe a thread that will wait on an event. You can refresh your plugin from anywhere in code by calling InvalidateRect with your window handle.
2) I messed up the cab at first, forgetting to add the Options reg value. Then when I went to upload the fix, I couldn't access the site for about an hour (no idea why, I even rebooted the PC to Ubuntu). Should be fixed now, but I will check it later again (I have to go back to XP for that).
Good luck with your program.
Suggestion
levenum said:
First, you're welcome.
shaileshashar:
1) I ran a debug print on this message once on an iPaq 1710 and it seems to be sent several times per second. This could differ from OS to OS or even from device to device, I am not sure.
If you need specifically timed refresh, or you have an event triggered on new data, I suggest using a timer or maybe a thread that will wait on an event. You can refresh your plugin from anywhere in code by calling InvalidateRect with your window handle.
2) I messed up the cab at first, forgetting to add the Options reg value. Then when I went to upload the fix, I couldn't access the site for about an hour (no idea why, I even rebooted the PC to Ubuntu). Should be fixed now, but I will check it later again (I have to go back to XP for that).
Good luck with your program.
Click to expand...
Click to collapse
Thanks for the help, will check the fixed cab.
Also a suggestion:
A custom icon could also be incorporated. You can give a option to load a custom icon next to the text in the today plugin.
I know anybody can modify ur code and do it but still.
Actually, I probably should have mentioned this in the original post but I have no intention of adding options to this thing.
This would only complicate the code and turn it in to an actual app instead of a sample project.
But by all means feel free to make suggestions. If this thing does become popular, when I am done with my other projects (like LVMTopBat) which won't be any time soon (unfortunately) I will release a separate version of this plugin with all kinds of options that can be controlled both by user (form the options dialog) and by other apps through registry.
Maybe things like text alignment, size, bold / Italic / underlined.
P.S.
The reason I put the string this plugin loads under HKEY_CURRENT_USER instead of the HKLM where the rest of the plugin registry resides is because by default the HKEY_LOCAL_MACHINE on WM 5 and higher has a security restriction. For example you can not write to it using RAPI, only by authorized (or signed) app on the device. The HKEY_CURRENT_USER on the other hand is open for all.
levenum said:
P.S.
The reason I put the string this plugin loads under HKEY_CURRENT_USER instead of the HKLM where the rest of the plugin registry resides is because by default the HKEY_LOCAL_MACHINE on WM 5 and higher has a security restriction. For example you can not write to it using RAPI, only by authorized (or signed) app on the device. The HKEY_CURRENT_USER on the other hand is open for all.
Click to expand...
Click to collapse
Thanks for the info, I never knew that.
Thank you so much! This was exactly what I was looking for!
levenum said:
...But by all means feel free to make suggestions.
Click to expand...
Click to collapse
As a frequent mortscript user I think, this great app might be even more usefull, if the string was shown in an "allways on top" message box instead of the today screen. The Today screen might be obscured by other active windows during the scripts runtime and the plugin eats precious today screen estate also while being unused, doesn't it?
In that case (of a standalone application) I would furthermore introduce some kind of termination string (or reg. value) to end the display application.
Code:
- start mortscript
- writes first string to registry
- starts display application (run)
- updates string in registry whenever appropriate
- ...
- writes termination string to registry
-> display applications self-terminates
- ...
- end of mortscript
Honestly, I already do use something comparable with mortscript (employing a conditioned sleepmessage loop and reading from the registry too), but this could be much nicer and more elegant.
Just my 2 cents... What do you think?
I think something like that would be better implemented by the mortsrit program it self.
It could be a function like MessageBox API in windows which you could then command on and off. Having it built in would save precious resources on the device that would be wasted by having an extra app run constantly in background.
This is just my thought though.
I'd suggest contacting the developer of mortscript and discussing it with him.
levenum said:
I think something like that would be better implemented by the mortsrit program it self.
...
I'd suggest contacting the developer of mortscript and discussing it with him.
Click to expand...
Click to collapse
Mort knew about that request and by chance just announced to so.
Thanks anyway.
Hello levenum,
I just joined the community. Reason being, I found your RegDisplay plug-in
You call it a sample project, but the impact is that of an awesome solution.
Great for MortScript, but equally useful in BASIC applications that write
messages to the registry which is show upon screen minimization.
I regret not being a C programmer (mainly BASIC), else I'd love to further
develop this jewel.
Your plug-in runs flawlessly in an iPAQ 210 under WM6 Classic.
Cheers and Respectful Greetings
Robert
CLSID for registry display plugin
What is the CLSID for the Registry Display Plugin? I am going to have to edit the XML file that defines my home screen in order to get the plugin to show up. I am using Facade to control my home screen, and the only plugins that it will show in its list are those currently in use in one of the XML files in the Application Data\Home folder. All other new plugins require editing the XML. Thanks for your help.
levenum said:
Ok, most of you may find this totally useless as a plugin, but it was a combination of a request by user Treo_newb and a desire to create a sample plugin project that could be used as a base / example for plugin writers (I plan on doing an article on codeproject.com and this will be the source for it).
What does it do?
This plugin displays a string stored in registry.
The path is:
HKEY_CURRENT_USER\Software\RegDispPlugin
Value name: DisplayString
It checks if this string has changed several times per second when today screen is shown (as the system sends refresh message to all plugins) and displays the updated message if a change occurred.
What is it good for?
First, if you write apps using mortscript or similar like the user who requested this it will let your script display stuff on today screen.
Alternatively it could be used to mark your device today with a string that isn't as easily changed as user info.
The source is basically a skeleton plugin you can use to build your own plugin on (no license / copyright to limit you) and it already has several tricks needed for the plugin to display correctly:
VGA compatibility
Text size matching system settings
Proper header in settings dialog (like on system plugins)
Proper text color when selected (according to theme)
No blinking all today screen on change
Proper resize when switching between landscape and portrait
When I was writing my first plugin I could not find all these little fixes concentrated in a single article so I had to fish for each one as the bug reports came in.
Hope you will find this little project useful.
The plugin:View attachment 41592
The source (eVC 4 project): View attachment 41583
Click to expand...
Click to collapse
This is great! I was asked if I could write a today screen plug-in for my weather application (http://forum.xda-developers.com/showthread.php?t=445576) - I couldn't since I don't have the skills and I'm writing .NET code - but this is exactly what I needed.
I'm adding support for this plug-in and will of course give credits to you.

[SOLVED] Metro Tiles for NON-METRO applications? Edit: YES! :D

PREVIOUS POST:
Hi all!
My post should be in the developer page, but since I have less than 10 posts I'll post it here. Hope someone'll read it, I think it may be useful to everybody. BTW sorry for my poor english.
I am a user of Windows 8 from the developer preview, and I learned to appreciate the new Start Page and get used to.
The only thing that makes it still "just bearable" to me is the poor (more like nonexistent) non-metro applications customization. I understand that Windows wants developers to create Metro Apps, but their usability on a desktop PC does not fully not convince me; for some uses I prefer a thousand times to use the classic applications.
The question is: how to get the tiles to the classic desktop applications more pleasing than a monochromatic square with an icon?
I started to look far and wide on the Internet, finding not that much (really this does not affect anyone?), but I found something, something (even right in this site).
I've thought about three different ways of solving this problem. Since it's a little bit tl;dr i'll organize them under quotes.
1- An app that opens programs
- it is relatively easy to modify images of Metro Tiles for metro applications already installed, just follow this guide.
- For those who have knowledge of programming C + +, Javascript, or, generically, any language to Visual Basic, creating a tile for your application is extremely easy, so easy even I did it (I don't know programming, sadly). Still, nobody yet has thought to create standard desktop applications with these tiles, even Microsoft itself (Visual Studio RC hasn't got it!).
- I know that Metro Apps work a bit like the sandbox, but you can set the permissions to access images, documents and so on, so should not be impossible to make up a "double bounce" (metro app that opens a link in the Documents which opens the user desktop) without slowing down too the opening of the original program. I do not think is too complex, yet I can not do it alone.
- Also, an xda user found a way to bypass the sandbox and HERE someone (looks like the only one on the ENTIRE internet, apart from me) wondered about this problem and tried to solve this by itself.
Click to expand...
Click to collapse
2- The icon, centered and bigger
- a simple and elegant solution: can't we just edit the registry to bring up the icon in the middle of the tiles and change as well as the size of it equal to the tile itself? Then we should just make bigger icons for programs large enough to not be pixelated.
I searched a bit in regedit on:
HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ ImmersiveShell \ Grid
However, I found "only" how to enlarge or shrink the tile itself or the number of these files. There are a lot of other data but does not have competence to understand the setup.
Seems the easiest way.
Click to expand...
Click to collapse
3- Copying from Google
As you surely know Google has launched the Google Chrome metro interface, with some special features:
- The program does not come from the Windows App Store, but can be downloaded from the Chromium Project site, therefore, is installed in the usual place of Chrome (User / AppData / Local) and not in the folder WindowsApps. This is quite unusual, because I thought it was the "exclusive" folder for metro applications;
- From my analysis I understood that the application that starts, both in desktop and Metro look, is always the same, "chrome.exe". To confirm this I noticed that, in fact, the folder "Metro" in "Google Chrome" folder contains only the userdata files and not specific ones for the program, which instead are contained by the classic Chrome folder;
- I'm pretty sure that all Google Chrome files are in this folder, since I found inside the "Manifest" and the images for the tiles. Trying to change the PNG and cleaning the cache also changed the tile in the Start bar.
- The first step, too simple for it to be working ( ) was to copy the manifest and the images folder in the folder of another program (obviously changing the directory on the manifest through Notepad), clearing the cache and restarting the PC. It did not work, of course.
- The next step was to open the folder "C: \ Users \ MYUSERPROFILE \ AppData \ Roaming \ Microsoft \ Windows \ Start Menu \ Programs" and try to understand more of nature of the link to Google Chrome...Only to find out that the link to Chrome was not there! ... Does anyone know where it is?
Click to expand...
Click to collapse
And that's all. There is still nobody in the world that seems to manage a tweak for having tiles in non-metro applications, so if someone here manages to do this he'll be like the first in the ENTIRE WORLD
Hope this motivates you. I hope to read something from you developers!
Click to expand...
Click to collapse
The user Argony-OT has found a solution to add metro tiles in the start page for common legacy application. Link to his thread:
http://forum.xda-developers.com/showthread.php?t=1899865
Otinademoniac said:
Hi all!
My post should be in the developer page, but since I have less than 10 posts I'll post it here. Hope someone'll read it, I think it may be useful to everybody. BTW sorry for my poor english.
I am a user of Windows 8 from the developer preview, and I learned to appreciate the new Start Page and get used to.
The only thing that makes it still "just bearable" to me is the poor (more like nonexistent) non-metro applications customization. I understand that Windows wants developers to create Metro Apps, but their usability on a desktop PC does not fully not convince me; for some uses I prefer a thousand times to use the classic applications.
The question is: how to get the tiles to the classic desktop applications more pleasing than a monochromatic square with an icon?
I started to look far and wide on the Internet, finding not that much (really this does not affect anyone?), but I found something, something (even right in this site).
I've thought about three different ways of solving this problem. Since it's a little bit tl;dr i'll organize them under quotes.
1- An app that opens programs
2- The icon, centered and bigger
3- Copying from Google
And that's all. There is still nobody in the world that seems to manage a tweak for having tiles in non-metro applications, so if someone here manages to do this he'll be like the first in the ENTIRE WORLD
Hope this motivates you. I hope to read something from you developers!
Click to expand...
Click to collapse
I would think that Microsoft would give a way for Google to bypass the restriction on side-loading (for verified developers like Google or the like) if they requested (Of course, they could also have found a way to install Metro Applications without the developers license/enterprise requirement, etc.)
This is probably how it works since the Metro application is not in the usual Installation folder. It is something to wonder about though.
My god! Me and my friend are having this same problem with windows 8! We like the metro menu a lot, but we want to customize non metro program tiles!! We can make some pretty cool images for the tiles, but we just dont know how to change the tiles. I think ur on to something with Google chrome though! I hope some can figure this out! Ur not the only one who wants this!
Sent from my DROID RAZR using Tapatalk 2
bb12489 said:
My god! Me and my friend are having this same problem with windows 8! We like the metro menu a lot, but we want to customize non metro program tiles!! We can make some pretty cool images for the tiles, but we just dont know how to change the tiles. I think ur on to something with Google chrome though! I hope some can figure this out! Ur not the only one who wants this!
Sent from my DROID RAZR using Tapatalk 2
Click to expand...
Click to collapse
The problem is that I haven't got enough knowledge (not as much as my dedication to the cause ) to really do something with this...I am kinda searching for some help from XDA Developers
Same problem here
I'm also having the same problems on Windows 8. I'm also finding a way to change the default traditional app icons to the metro look, like what google do. Hmmmm.... Microsoft should add a feature to change default non-metro icons to non-metro tiles.
What's weird is that, as someone made me notice, if you make Google Chrome (the W8 version) the default browser for Metro instead of Internet Explorer, IE loses it's metro icon and become a normal Windows monocoloured tile. It's weird enough for making me think that the "copy Google" way is a bit harder than expected.
On the other hand, I've got a friend of mine searching in Windows 8 resources for a way to enlarge and center icons in Start Scren. Nowadays all the icons are big and detailed enough to fit inside a tile, and if they don't we can always make our own. I think that this is actually the easiest way.
Anyone have any clue that might help the cause? Also, since I still have less than 10 post, might someone link this thread in the Windows 8 hacking-developer forum?
Otinademoniac said:
What's weird is that, as someone made me notice, if you make Google Chrome (the W8 version) the default browser for Metro instead of Internet Explorer, IE loses it's metro icon and become a normal Windows monocoloured tile. It's weird enough for making me think that the "copy Google" way is a bit harder than expected.
On the other hand, I've got a friend of mine searching in Windows 8 resources for a way to enlarge and center icons in Start Scren. Nowadays all the icons are big and detailed enough to fit inside a tile, and if they don't we can always make our own. I think that this is actually the easiest way.
Anyone have any clue that might help the cause? Also, since I still have less than 10 post, might someone link this thread in the Windows 8 hacking-developer forum?
Click to expand...
Click to collapse
Not sure what might cause it, but I know that it's a behavior that's been there since Developers Preview, after setting Chrome as the default browser it would go away, Even when I set the older chrome versions as default it would do it.
Still nothing...! This is quite frustrating, I'm searching really deeply a way to edit the METRO UI, but nothing yet found. Any help?
The way I think would be easier is to center and make bigger the Icon inside the Metro Tiles. I'm trying to use a Resource Editor in windows, but I haven't found anything yet.
Hi, I'm (obviously) new here.
I actually joined just to try and help figure this very issue out.
1. I actually noticed about an hour ago (when installing Firefox) the change that occurred with the Metro tile for IE, changing to a default tile. Your post made me chuckle, as I had literally just done that very thing. It was as if IE felt unloved. :laugh:
2. I am a designer. The ability to not change these tiles right now is killing me from the inside! I could easily set some color values or make my own icons in Adobe Illustrator and Photoshop and then make new metro-esque tiles the way I want for nearly all my apps in no time.
So, with all of that said... I too shall be looking into how we can manage making our own tiles for non-metro apps.
I wonder (and this is a cheap cheap fix) if one were to design an application icon for say, Firefox, and it would be the actual size & dimension of the pre-fixed metro square...would that icon fill the sqaure and at least give the appearance of being a metro app? It may, but I fear it might just down-size the icon entirely leaving us at square one.
All my design programs are on my OS X hard drives. Later I'll plug them back in, then re-boot my hackintosh and try to make a fill-in metro styled icon for testing purposes.
-TYPØ
Hi TYPOGRAPH1C, sadly changing the icon size won't work, nowadays almost every application icon for Windows have a resolution big enough to fit more than just the METRO tile; sadly, it's still not working.
Also, I've tried (withouth success) another experiment: In the "Users\USERNAME\AppData\Roaming\Microsoft\Windows\Start Menu" folder you can find the links for some of the METRO APP; those icons are from a DLL! I've tried to simply copy one of those in another folder and make a legacy program use it, but it didn't work. I guess is one way less to try
That is unfortunate. And, who knows this may be something we can't fully tackle until the full release of the OS. But, I do know that I went through yesterday and counted 30+ apps that I personally would like to make icons for. Mainly the general stuff I use, but a lot of them are things many people use as well. So between now and the finalized OS release, I should have them all done. And if worst case, we can never set the tiles ourselves... at least I'd rock some custom metro style icons on my taskbar.
But if we do get this working... I was actually thinking last night about this. If we were able to achieve the correct look for the tile icons, I suppose it would be 100% possible to have practically nothing living on the taskbar in Windows 8 (besides the current open desktop application). Everything could be bound to the Start Menu and grouped accordingly in theory.
-TYPØ
I am also looking for a solution. I really want all my programs to have the tile icon.
What i already did is make a white icon for some programs and then specify it as the icon.
Like this you have the icon in the tile (downsized ofc) but the tile itself isn't filled with a background color.
I looks better than the full colored icons from before but i still want the whole metro tile look.
Otinademoniac said:
Hi all!
3- Copying from Google
Click to expand...
Click to collapse
You can read all about "metro enabled desktop browsers" when you get some free time. It's a cool idea, but unfortunately, you can only have one.
Could someone who knows how to make Tiles not make a custom tile app that can then handle custom image and file path, so we just update the details within the app so it points the the right place? So we could install the placeholder with the new set details and pop the icons are Larg and Small and offer booting the exe?
I have NO idea how to make tiles but I just thought maybe that could be a way?
rexzooly said:
Could someone who knows how to make Tiles not make a custom tile app that can then handle custom image and file path, so we just update the details within the app so it points the the right place? So we could install the placeholder with the new set details and pop the icons are Larg and Small and offer booting the exe?
I have NO idea how to make tiles but I just thought maybe that could be a way?
Click to expand...
Click to collapse
Windows Phone has custom tile apps...Wiztiles is one I use. A user can create custom tiles using pictures they have on their phone. These tiles can then be used to link to specific functions. The function I use it for is to point to websites. You can have it open many of the built in apps on WinPhone. It will open email and draft a new email for you with contact, subject and even the body of the mail drafted...all you have o do is hit send, or edit then send. Same with sms. It can be used to dial a contact or perform a search in the marketplace or Bing app. So it doesn't just open an app, it opens and performs an initial action in the app. Not sure how much of a leap it would be to have it point to 3rd party apps, but the basic idea is there.
The website the OP posted which was this http://stackoverflow.com/questions/9527644/launching-a-desktop-application-with-a-metro-style-app actually does have a method on creating an app to launch a desktop app if anyone wants to try it. Me I'm not that great with code.
a tip for hex editors, just DUI hackers: twinui.dll UIFILES.
I think that it's possible, because you can open internet explorer desktop from internet explorer immersive
@Ka-la I've tried some time ago, but twinui.dll get corrupted... (Next time I will retry )
Pasquiindustry said:
I think that it's possible, because you can open internet explorer desktop from internet explorer immersive
@Ka-la I've tried some time ago, but twinui.dll get corrupted... (Next time I will retry )
Click to expand...
Click to collapse
I managed to size content in my tiles in RTM pretty succesfully, not sure why you corrupt it. Im not using Windows 8 at the moment so I cannot really help. I remember there were templates for many variant of tiles (widewithpicture and smallwithpicture and so on). If there is one for that applies to desktop apps, it might be possible to apply a metro one to it
I'll give it a shot once im using Windows 8 but cant promise anything.
Maybe i had wrong edits in wrong place

[Q] Screen View - Java ADT Eclipse

Hello, I am developing my very first app using the latest Android bundle (SDK + Eclipse included). I also installed LibGDx since it will be a game. Upon following some tutorials online it dawned on me, how the hell can I SEE what I'm doing? Meaning I have no room/screen view. So when I render an object onto the screen I just have to wing it when it comes to where it should start on the screen. This is obviously not a good way to make games, its kinda tedious. Precise placement of objects as in "Angry Birds" will be very hard. I'm well aware of emulation but that only shows things after the fact. There has to be a way to do it, maybe a plugin or something? Being able to drag/drop and interact with objects on this screen w/out code would also help a lot. Much thanks!
Eclipse shows the layouts at runtime. You don't have to run it on the emulator each time to manage layouts. Double click on the layout file and it will open in a side view. At the bottom, there will be 2 options, viz Layout.xml and Graphical Layout. Choose Graphical Layout.
EatHeat said:
Eclipse shows the layouts at runtime. You don't have to run it on the emulator each time to manage layouts. Double click on the layout file and it will open in a side view. At the bottom, there will be 2 options, viz Layout.xml and Graphical Layout. Choose Graphical Layout.
Click to expand...
Click to collapse
Thanks for replying, but I should've mentioned that I'm aware of this. This view only shows things I drag and drop onto from the same window. It doesn't show anything rendered in the code from other classes. So anything important like the main characters aren't there. Is there perhaps some way to make them show up in here?
Android3000 said:
Thanks for replying, but I should've mentioned that I'm aware of this. This view only shows things I drag and drop onto from the same window. It doesn't show anything rendered in the code from other classes. So anything important like the main characters aren't there. Is there perhaps some way to make them show up in here?
Click to expand...
Click to collapse
Layouts managed by code isn't showed. Only the xml layouts are show up.
EatHeat said:
Layouts managed by code isn't showed. Only the xml layouts are show up.
Click to expand...
Click to collapse
This is what bothers me. How in the world am I suppose to develop complex levels and what not without being able to see placement of things live? I can't imagine trying to make angry birds or something like that by only having coordinates and no visuals. So there isn't any add-on or plugin that can provide such capabilities?
There isn't any official visual level editor by LibGDX.
But maybe you find an Editor that saves your level in xml or sth. and you can parse that xml in ur LibGDX-App. I wrote my own Level-Editor specially for my LibGDX-Game and it wasn't so hard to code.
Regards
Android3000 said:
This is what bothers me. How in the world am I suppose to develop complex levels and what not without being able to see placement of things live? I can't imagine trying to make angry birds or something like that by only having coordinates and no visuals. So there isn't any add-on or plugin that can provide such capabilities?
Click to expand...
Click to collapse
Not that I know of. You can just create the whole layout in xml to get it correct first. Then use those coordinates in your code accordingly.
Apparently various types of 3rd party apps do exist for this task . Thanks for the help guys.
just try another game engine

Equivalent To Active Desktop?

I had previously asked about making an active tile, but I fear I may have been throwing out what I thought would be a 'simple' solution instead of asking for what I really wanted. I am looking to have something that allows my users to see this content - http://orsl.montana.edu/weather/ORSLweather.php - easily. This page is basically a small image that updates every five minutes with a new image showing the current weather from a weather station at a university.
Turning on the way back machine I was able to accomplish this using Active Desktop in Windows XP and Vista. With Windows 7 I wrote some code to make a Windows Gadget and even used an add-on to re-enable gadgets in Windows 8. I had hoped making an active Windows Tile for the Start Menu would be fairly easy, but it turns out that is not the case.
I am open to a solution that allows this content to be on the Desktop or Start Menu and regularly update. Any thoughts?
Perfect gadget Weather desktop like in Windows 7? It can be installed.
You can try Rainmeter: http://rainmeter.net/ or XWidget : http://www.xwidget.com/xwidget/
maxaon09 said:
Perfect gadget Weather desktop like in Windows 7? It can be installed.
You can try Rainmeter: http://rainmeter.net/ or XWidget : http://www.xwidget.com/xwidget/
Click to expand...
Click to collapse
I appreciate the thought, but the goal is not to just have some weather widget/gadget. I am looking to have the exact weather image detailed in the OP update regularly. This weather data is from a specific weather station and a new image is created every five minutes with the latest weather info. Having it appear on the Start menu or Desktop is what we need
cleonti said:
I appreciate the thought, but the goal is not to just have some weather widget/gadget. I am looking to have the exact weather image detailed in the OP update regularly. This weather data is from a specific weather station and a new image is created every five minutes with the latest weather info. Having it appear on the Start menu or Desktop is what we need
Click to expand...
Click to collapse
well, rainmeter lets you also create these widgets, with a fairly simple script language. you could easily fetch said photo every five minutes. :good:

Categories

Resources