[Q] Opera 10 mobile sites issue - HD2 Windows Mobile 6.5 Q&A, Help & Troubleshooting

On HD2 with Opera 10 installed, many mobile sites, such as m.wikipedia.org or m.wikitravel.org seem to render on a viewport that is bigger than the actual screen space available. With the "show" buttons on wiki mobile sites being at the right side, this becomes a real nuisance.
Anyone got a solution for this ?
NOTE: The very same sites mentioned render properly on Opera 9.7. Actually, they also render properly on Opera 10 on my older QVGA device, too.

bump :-(

All you had to do is scroll one page dowm.
http://forum.xda-developers.com/showthread.php?t=781381
Read the last post. Opera should be 1.

My question isnt related to useragent, i dont want to open the full version instead of the mobile sites, i want the mobile sites to open properly ! And, no, i cant find an answer on my question anywhere, otherwise i just wouldn't post.

Bump.
To make it easier to understand what i mean, i am attaching 2 screenshots, one with the Opera 10 rendering and one with the proper, Opera 9.7, rendering of the very same page.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
* Opera 10 rendering​
* Opera 9.7 rendering​

Come on, i can't be the only one having this problem !
I also did the following test, to avoid any possible link to the useragent. I made the following test html:
Code:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="initial-scale=1, width=device-width, height=device-height, minimum-scale=1, maximum-scale=1.0, user-scalable=no" />
</head>
<title>Viewport Test</title>
<body>
<center>***</center>
</body>
</html>
Opening it on opera 9.7 works normally, the "***" is centered on the screen, there is no horizontal scrollbar. On opera 10, though, it appears on the right side of the screen with horizontal scrollbar, like if it would be x2 zoomed !!! Setting the viewport width attribute to 480, directly, results in the same rendering. Setting it to 240 instead results in PROPER rendering, though. Kinda looks like the browser is zooming the page x2 by default, despite having my zoom setting at 100%.
Someone, please point me to the right direction, i really want a fix for this.

Just go to Settings and change Zoom level to anything above 100%,start the page Double tap the screen,tap the ZoomOut at the bottom left you will see the full page,this will not work with 100% setting.

hagba said:
Just go to Settings and change Zoom level to anything above 100%,start the page Double tap the screen,tap the ZoomOut at the bottom left you will see the full page,this will not work with 100% setting.
Click to expand...
Click to collapse
I know about this, found it out myself, too. There are quite a few disadvantages in doing this.
Opera keeps the paragraphs width the same even after zooming out, not using the entire screen space, unless you disable this in about:config, but in this case you get a hard time reading non-mobile versions
The fonts in the "zoomed out" state are way too small, if you enlarge them in settings, again, you screw yourself up in non-mobile site versions browsing.
Having to zoom out, and then zoom back in to click, on the mobile sites, defies the entire purpose of the "mobile version".
This thing is CLEARLY a bug, but it kinda seems like nobody really cares and/or knows any workaround :-(

I guess i am not going to receive a real answer on this one, ever :-(
http://www.google.com/reader/i/This issue totally screws sites such as iphone google reader version up. I would use Opera 9.7, but it seems to conflict with the Hebrew support, looks like it either doesn't support bidi, or attempts to do it on it's own, on top of the system bidi support, resulting in reversed Hebrew. Internet explorer, while not having those particular issues, is a total crap at rendering normal, non-mobile sites. Skyfire is no longer servicing middle east. Webkit unavailable for WM, "Torch Mobile" no longer exist. Damn :-(
Any suggestions ?

Since nobody provided a real answer and no amount of googling did any good, i am now using my own, userscript based, workaround. Just in case anyone else may need this (doubt it, really), i am sharing it below. I know it's fugly, wrong, etc etc, but as nasty as this code is, this 'fixes' the touch.facebook.com rendering, as well as m.wikipedia and m.wikitravel. IPhone version of google reader is rendering correctly with this, too. So, here we go:
Code:
function fixviewport()
{
if (document.documentElement)
{
var meta_viewport_array = document.getElementsByName("viewport");
if (meta_viewport_array.length)
{
var meta_viewport = meta_viewport_array.item(0);
meta_viewport.setAttribute('content', "width="+((screen.width+16)/2)+",height="+(screen.height/2));
}
}
}
window.addEventListener('DOMContentLoaded',fixviewport,false);

InfX said:
Since nobody provided a real answer and no amount of googling did any good, i am now using my own, userscript based, workaround. Just in case anyone else may need this (doubt it, really), i am sharing it below. I know it's fugly, wrong, etc etc, but as nasty as this code is, this 'fixes' the touch.facebook.com rendering, as well as m.wikipedia and m.wikitravel. IPhone version of google reader is rendering correctly with this, too. So, here we go:
Code:
function fixviewport()
{
if (document.documentElement)
{
var meta_viewport_array = document.getElementsByName("viewport");
if (meta_viewport_array.length)
{
var meta_viewport = meta_viewport_array.item(0);
meta_viewport.setAttribute('content', "width="+((screen.width+16)/2)+",height="+(screen.height/2));
}
}
}
window.addEventListener('DOMContentLoaded',fixviewport,false);
Click to expand...
Click to collapse
This is great! Thank you for this! This was the main reason I wasn't using OM10 on my HD2.
(I'm using zoom 80% so I changed from "(screen.width+16)/2" to "(screen.width+16)/1.6"...)

wardh said:
This is great! Thank you for this! This was the main reason I wasn't using OM10 on my HD2.
(I'm using zoom 80% so I changed from "(screen.width+16)/2" to "(screen.width+16)/1.6"...)
Click to expand...
Click to collapse
No problem at all
TBH, judging by the fact this thread consistently got buried one post after another, with nobody posting anything relevant, i've assumed nobody cares about this issue.
About the 80% or other zooms, any chance you may know a programmatic way of finding the current zoom out. I've did try a few things, but i couldn't find a working method to do this. Another thing i couldn't find is a window event that would fire when the screen is rotated, to avoid the need to reload the page. So if you happened to find any of those, do post an updated script

Sorry I can't help you with that. Someone on here must know so lets hope they read this thread sooner then later

wardh said:
This is great! Thank you for this! This was the main reason I wasn't using OM10 on my HD2.
(I'm using zoom 80% so I changed from "(screen.width+16)/2" to "(screen.width+16)/1.6"...)
Click to expand...
Click to collapse
hello guys,
this sounds great, I've just run into this. where do you put/apply this script?
cheers,
tinto

InfX said:
Since nobody provided a real answer and no amount of googling did any good, i am now using my own, userscript based, workaround. Just in case anyone else may need this (doubt it, really), i am sharing it below. I know it's fugly, wrong, etc etc, but as nasty as this code is, this 'fixes' the touch.facebook.com rendering, as well as m.wikipedia and m.wikitravel. IPhone version of google reader is rendering correctly with this, too. So, here we go:
Click to expand...
Click to collapse
Thanks a million InfX for this !!!
Luckily I found your thread here, when I've already given up hope to get this fixed.
I was also wondering nobody else cared about this as there is no other other browser which is any good on WinMo 6.x, especially with the handling and favorites.
Older Opera versions (9.7) are so much slower in the user interface and viewing compared to 10 they are no alternative.
IE Mobile is kinda crappy too.
For all others interested, I also found other places where people talked about this problem
// Sorry can't post URLs ....
But apparently nobody at Opera cared about it at all.
And from what I've seen/read it would be no biggy to fix it

Here is an manual for everyone how to get the userscript into Opera 10:
- Create a directory anywhere on your device, e.g. I used:
\Interner Speicher\Opera Mobile 10\profile\scripts\
- Save the script in that directory, e.g. as: fix-viewport.js
- Open Opera Mobile 10 and go to: opera:config
- Enter "javascript" in the searchbox
- change the following values:
Activate: "User JavaScript"
Set: "User JavaScript File" to the folder you created before
Activate: "User JavaScript on HTTPS"
===
That's it. Restart Opera and you will have nicely fitting webpages!!
Edit: Maybe an Admin can put this thread into the general Windows Mobile forums, as the problem is not specific to any device, but all WinMo 6.x with a screen resolution of 480x800

This has just made Opera 10 a million times better!
Hoe,
Thank you for your instructions they were spot on and thanks to the OP's javascript code this works fantastic!
I just recently ran into this with using Twitter's mobile website and was frustrated that Opera 10 did not adjust the width correctly and I always had to horizontal scroll. In addition to other sites that would default to the mobile version, and I would use the "full site" link just to get correct sizing, even though sometimes the mobile site is more convienent. Normally, I like the full websites, but mobile versions DO have their place.
Again, KUDOS to all, this is super-helpful. I have always found Opera 10 to be the superior mobile browser and really this issue was my only problem with it. Now Opera Mobile 10 went from 99% to 100% perfect in my view.

VHAHONGRANTC said:
Again, KUDOS to all, this is super-helpful. I have always found Opera 10 to be the superior mobile browser and really this issue was my only problem with it. Now Opera Mobile 10 went from 99% to 100% perfect in my view.
Click to expand...
Click to collapse
Due to that additional work, I still prefer to have Opera 9.7 though
I hope the cook/devs can cook it into his rom, especially the one that cook opera 10
cheers

This is awesome! Thanks for sharing - the BBC News Mobile Web-Site now renders at the correct width on Opera 10 for me.
Much appreciated!
Regards,
Richard Tubb.
www.tubblog.co.uk

I can't believe someone still finds this thread useful, lol. I went the Android way quite some time ago, making this kinda irrelevant for me

Related

Anyone here use X10 Home Automation?

Hi all,
Just out of curiosity does anyone here use X10 devices and more importantly use HomeSeer?
I've almost finished my Home Automation app for Android and may be looking for some testers.
Thanks Matt.
Yes, I do.
Wow, I shure want to test this.
I use the "old" version of Homeseer. I'm at work now, and don't know the version number.
It should work fine with either 1.5 or 2. You just need the web interface enabled and you need to copy a script into the html folder on the pc.
I've got a couple of things I know about which I need to fix first but then it would be good to get someone elses opinion. It does exactly what I wanted it to do (obviously) but you may have ideas which you would like implented.
Seems to work really well though. I can control my whole house from the phone now and best of all the layouts are all done dynamically so you don't have to sit there for ages designing your GUI like I used to with netremote on windows mobile.
Matt.
Croccy22 said:
Hi all,
Just out of curiosity does anyone here use X10 devices and more importantly use HomeSeer?
I've almost finished my Home Automation app for Android and may be looking for some testers.
Thanks Matt.
Click to expand...
Click to collapse
Hello
Yes, sure. I am using X10 in my house and cotroler by my PC, it will be nice have my hero doing it.
Thanks
Manuel Bravo
Count me in!! I have tried multidomo but can't get it to operate properly. If you want a tester i'm more than happy to help!
orchid666 said:
Count me in!! I have tried multidomo but can't get it to operate properly. If you want a tester i'm more than happy to help!
Click to expand...
Click to collapse
Do you use HomeSeer on your PC?
Matt.
Croccy22 said:
Do you use HomeSeer on your PC?
Matt.
Click to expand...
Click to collapse
Hi Matt,
I do indeed! Would love to have access from my hero. Homeseer is a great piece of software!! Any chance of having a test at it?
I've got a couple of things I need to do, a confirmation box on the delete device/event menu, and a background image on the add device screen as I;ve had a weird problem with the scrollview squashing the background picture when the virtual keyboard displays on the screen.
Once i've done this I'll get together a tme limited beta so you can all have a look and make any suggestions.
If all is ok then i'm gonna put this one on the market for a couple of quid and see if people like it.
I know it's not going to be a big seller as it is currently limited to homeseer and I really can't be bother to write a full HA app for the pc .
Homeseer does everything I need but the web interface is far to clunky for th mobile. I know you can use the touchpad interface but I find having coded real buttons and UI speeds things up so it is actually usual.
I'll keep you all informed. I may do some screen grabs later to show you what i'm working on.
Matt.
Just a few screenshots:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Matt.
Add me to your list of interested parties.
(I don't run HomeSeer, I have my own i.e. source code, app)
Matt this looks great! I'd love to give this a trial. I'd pay for this if it's as good as it looks. Can we get a time limited trial?
Hi, Sorry for the delay in replying i've been a bit busy the last few weeks.
I've sorted out pretty much all the things I needed to for Version 1. Just need to sort out one last thing and then I'll do a time limited beta for those interested.
I also need to write some simple manuals to show how to set it all up. It really is quite simple. I expect there are many other features that I could include but I just want it to be quicj to configure and I want it to work! I used it for all my x10 stuff over the last couple of months and it works flawlessly in my environment.
On the pc side all you need to do is copy a single script file info the homeseer folder. I'll prob package this up as an MSI to make things easier for people.
Thanks for the interest.
Matt.
Excellent Matt. Will we be able to use this over the data network or will it be wifi only? I'm constantly having problems with homeseer on the standard hero browser with lockouts.
Hi,
Ok, a very good question and one that I already have asked myself.
At the moment you enter the web address of the homeseer web server nto droidseer for it to send the commands to. This address can either be a internal ip address which can then be used over wifi or an external address (dyndns, no-ip etc) that can be accessed from gprs/3g.
I seem to remember that if you try to access an external address using a dyndns/no-ip address from your internal network it doesn't work always as you get your external ip address back which can't be accessed from your inside network.
I'll have to do some testing as i'm even confusing myself here!
I think my final idea was to be able to configure multiple addresses to connect to the homeseer server, if one fails it will try the next. This way if you are home on wifi it will use the inernal address, if you are away from home it will use the external adresss.
Simples!
Matt.
Sounds good Matt! Like i said i have issues with the standard browser using dyndns. Not sure why but it would seem the browser does not retain its password info for homeseer and after 3 connects you get locked out. When your using homeseer and the android browser across gprs/3G and dyndns do you experience this problem? I'm led to believe it's a security feature in homeseer to stop unauthorised access. Not sure if SSL connection would resolve this. I have the same problem using safari on the iphone. Windows mobile does not seem to have this problem as my experia worked perfectly.
Cheers,
John
Hi all,
I believe I now have a version ready for some real world testing. It works fine in my environment and I use it everyday so we'll see how it goes.
It is a fully featured Time Limited version that will expire on the 1st December so it gives you a while to have a play around and see what you think.
There is an APK file for install on your phone, a script file that needs to be copied onto the pc running homeseer and a PDF Manual explaining how to set it all up.
If you are interested in giving it a test then please PM me with your e-mail address and what version of Homeseer you are using just so I know what it has been tested on.
Thanks for your interest.
Matt.
Croccy22
Ok,
Droidseer Beta is now live on the Android Market in Beta form ready for some testing for whoever wants to give it a go!
The website is now live too at http://www.spvsoft.co.uk/droidseer
There you'll find everything you need to know including the User Guide.
Hope you like it and be sure to let me know what you think!
Matt.
Off topic here, but someone know if there is a WM app too for X10 automation?
I used to use Promixis NetRemote and the HSGirder plugin for Homeseer. It worked fine but you had to completely design your own interface in the designer program and the buttons are all hard coded. So when you add a new device to your system you have to edit your design and add the new button. That was the main reason why I designed DroidSeer to be Dynamic.
Get an Android device I used to always have WinMo devices ever since the first SPV but Microsoft missed out on the whole app market thing and I think they are a little too late to the game now. Most developers have moved on the iphone or android now.
Matt.

Opera Mobile 10 Beta 3 with Native Flash support!

I tested it at Youtube, and though the video is shaky, it actually worked without any hacking or anything. It was the version I got directly from Opera's website.
DOWNLOAD HERE
For Flash support, you'll need to turn on 'Plugins' under Advanced Settings to get it working.
Finally... that's all I'm saying.
Good news, will test it immediately!
youtube works well..
at youtube it redirects to m.youtube.com and on s1.sfgamege (flash game) it says adobe flash not isntalled
maduuto said:
at youtube it redirects to m.youtube.com and on s1.sfgamege (flash game) it says adobe flash not isntalled
Click to expand...
Click to collapse
if you change to desktop youtube site it works fine
For all people having the same, it's not just changing to www.youtube.com or going to the right sites. By default all plugins for Opera 10 are disabled, go to settings and hit 'Advanced', here you can turn on plugins. Once you did that the flash objects will show, but youtube still redirects to it's mobile site.
I think all in all this beta is quite nice, however flash is a little slow at this point (better to leave it off). If you have Streaming Media as application in your ROM you better use that one, it works a little smoother, but remember Opera is still in beta!
Edit I don't see a way to stop YouTube from redirecting you to it's mobile site, even when you tell Opera to behave like the destop version! Even direct links won't work, it will still redirect or tell you that 'this video is not available for mobile devices'.
maduuto said:
at youtube it redirects to m.youtube.com and on s1.sfgamege (flash game) it says adobe flash not isntalled
Click to expand...
Click to collapse
Opera Mobile 10 really sucks -.- the 9.5 was nice but now... It made a step backwards, gets more and more like the "Mini" version
And I think flash should be disabled, to block weird, cpu eating ads. You should first click on any Flash to "run" it
scilor said:
Opera Mobile 10 really sucks -.- the 9.5 was nice but now... It made a step backwards, gets more and more like the "Mini" version
Click to expand...
Click to collapse
You're crazy. For one, the newest builds of version 9.7 are better than any 9.5 build (nobody can deny that). And the newest beta of Opera 10 is arguably a whole lot better than version 9.7. It's just missing the zoom slider and schalable text reflow. Try it and everyone should see it is definitely not a step backwards, but for most people a big step forwards.
And I think flash should be disabled, to block weird, cpu eating ads. You should first click on any Flash to "run" it
Click to expand...
Click to collapse
That's exactly how it works in Opera 10 beta 3.
this version is a lot more smooth than beta 2
and other flashames wont work, too, it olny says no adobe flash installed
barty22 said:
You're crazy. For one, the newest builds of version 9.7 are better than any 9.5 build (nobody can deny that). And the newest beta of Opera 10 is arguably a whole lot better than version 9.7. It's just missing the zoom slider and schalable text reflow. Try it and everyone should see it is definitely not a step backwards, but for most people a big step forwards.
That's exactly how it works in Opera 10 beta 3.
Click to expand...
Click to collapse
My problem with the Mobile 10 is that there are several web pages that it brings up as the mobile version and there is no way to get it to default to desktop view. For example Engadget.
It does seems a heck of a lot faster with a lot less checkerboard of death (well the checkerboard is gone but less waiting none the less).
Other then being a little faster I agree with the other poster that it feels like a step backwards on my TP2. It reminds of me browsing on my Blackberry with Opera Mini. In fact I had to look a couple of times to make sure I was using Opera Mobile not Opera Mini. Let me clarify that I think the browsing experience feels like a step back. I do like the new menus and start page.
DeoreDX said:
My problem with the Mobile 10 is that there are several web pages that it brings up as the mobile version and there is no way to get it to default to desktop view. For example Engadget.
Click to expand...
Click to collapse
That is not a problem with Opera. It's a problem with the site. The site is doing it, not Opera.
Other then being a little faster I agree with the other poster that it feels like a step backwards on my TP2.
Click to expand...
Click to collapse
How?
KilZone said:
I don't see a way to stop YouTube from redirecting you to it's mobile site, even when you tell Opera to behave like the destop version! Even direct links won't work, it will still redirect or tell you that 'this video is not available for mobile devices'.
Click to expand...
Click to collapse
Switch off opera Turbo and switch on plugins. If that doesn't work, while on Youtube, scroll to the bottom of the page and click on "desktop version" or something like that.
WhatThis said:
That is not a problem with Opera. It's a problem with the site. The site is doing it, not Opera.
Click to expand...
Click to collapse
The Site, Opera, doesn't matter who is at fault the fact is it does it and I don't want it too. Same with Google.
How?
Click to expand...
Click to collapse
The way it formats to my TP2's screen. It really does look more like Opera Mini on my Blackberry then Opera Mobile that came stock on my Tmo TP2. It doesn't use the extra real estate very well and doesn't seem to do as good of a job formatting web pages to my Rhodium's screen. Looks mobile formatted instead of desktop formatted at times. Take a look at how they both bring up this web page. 9.5 comes up with a much more useful default view. Beta 10v3 is pretty much unusable and requires me to zoom up before you can do anything.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Inertial scrolling seems much better on 9.5 then 10v3. It takes several more swipes to move down the same screen on 10v3 compared to 9.5. Scrolling on 10v3 seems smoother but I like how 9.5 will "lock" onto a column and I can scroll up and down on a specific column/frame pretty easily. 10v3 reacts to the slightest side movement when you scroll so it is easy to knock your view off your column when you scroll up or down.
No G sensor or zoom slider by default is a giant step backwards on my RHodium.
Menus and animations are much better on 10v3.
10v3 also seems to hog resources and eat my battery (even with plugins turns off). I had about 40% battery left and forgot to close OM10v3 and it killed the rest of my battery in about an hour and a half.
Opera 10 Beta 3 is pretty nice, but I agree with some of the comments about it almost feeling more like Opera Mini. We NEED someone to figure out how to enable the zoom bar on the rhodium!
I will say, Mobile 10v3 loads pages really quickly, and I'm NOT using Opera Turbo. But my favorite browser stiil, by FAR, is Opera 9.7 build 35541. Zoom bar support, very good text reflow, FANTASTIC Javascript support (NOT flash, Javascript). That's been my default browser for quite some time, and nothing else I try works quite as well at rendering pages (full desktop versions! no default mobile version crap!).
I can't recommend enough to anyone who has not tried this build to try it out...
DeoreDX said:
The Site, Opera, doesn't matter who is at fault the fact is it does it and I don't want it too. Same with Google.
Click to expand...
Click to collapse
Then you should blame the site, not Opera. It's only doing it because Opera is a well known mobile browser.
The way it formats to my TP2's screen. It really does look more like Opera Mini on my Blackberry then Opera Mobile that came stock on my Tmo TP2. It doesn't use the extra real estate very well and doesn't seem to do as good of a job formatting web pages to my Rhodium's screen. Looks mobile formatted instead of desktop formatted at times. Take a look at how they both bring up this web page. 9.5 comes up with a much more useful default view. Beta 10v3 is pretty much unusable and requires me to zoom up before you can do anything.
Click to expand...
Click to collapse
That's because Opera Mobile 10 wraps the text so that it fits your screen when you zoom. That's a step in the right direction because it's a pain to have to adjust the zoom all the time. Now you just press once to zoom in, and it fits perfectly.
bast525 said:
I agree with some of the comments about it almost feeling more like Opera Mini.
Click to expand...
Click to collapse
Um, yeah, they have the same UI! LOL.
WhatThis said:
Um, yeah, they have the same UI! LOL.
Click to expand...
Click to collapse
not quite what I meant... And the word wrapping is nice BUT I like the way Opera 9.7 does it dynamically so that I can choose the zoom level I want, and still have the columns formatted perfectly to the width of my screen.
As for Javascript... some good examples of things that 9.7 does better:
1. Have a hotmail account? Log in on Opera 10. You can see your inbox, but click on any emails or menus and nothing happens. In 9.7 it's fully functional, you can view emails, jump between different folders, open the pop-up menus, etc.
2. Go to phonedog.com. At the top of the page there is an animating strip of the popular stories for the day. In Opera 10, the strip does not animate correctly, 9.7 it works perfectly
3. CNET.com, there is a similar animating 'billboard' of the days popular articles, while this does animate in Opera 10, it does so choppily, the small pictures at the bottom not 'moving', in Opera 9.7 it works much more smoothly
4. acid3.acidtests.org... Opera 10 gets a high 90, which is good, but opera 9.7 gets a 100
I could give other examples, but you guys get the idea. Everyone makes a big deal about Flash... but Javascript is much more commonly used and 9.7 has the best Javascript support than any other full mobile browser I've tried.
Thanks for opening this thread!
I have been waiting for a new version of Opera mobile since the 1st beta. Beta 3 has some improvements (and bugfixes) I really missed in the 2nd beta. For example Opera crashed as soon as I wanted to remove the "www" in the title bar or if I wanted to write an after these letters (=goodbye amazon ). Also, I noticed a slightly faster scrolling.
For those who don't get to the normal version of youtube: on the bottom part of the site you can click desktop to view the desktop version.
There are only two problems I encountered: the first one is that I haven't yet got youtube to work and the other one is that the bookmarks from beta 2 weren't imported.
I still have the plan to change to fennec as soon as there is a faster version.
how do we disable the auto rotate on tilt in this thing, i cant use opera in bed while lieing sideways my screen flips all over the place, even upsidedown if i got the phone turned upsidedown

[APP][WM6] alpha v2 - Tube8 viewer --- uses XBMC plugins with PythonCE!

WARNING! THIS IS STILL IN ALPHA STAGES... (v0.2.1a)
And that's because I don't mean it to be a Tube8/porn viewer. It's going to be a video viewer for all types of websites. So until I get to that stage, alpha!
However, it's fully-functioning in the sense that you should be able to get to any movie on Tube8. There are some bugs... I'll list the ones I know below. You MUST follow the steps below to get this working.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
(wow, took a while before I found a kind-of-work-safe image... but you saw Tube8 in the header, you should know better)
STEP 1
This uses PYTHON! You must have PythonCE installed for this to work. I'll explain why in a second, but the link for pythonCE is here..
Get PythonCE
STEP 2
Install the CAB file below. (I'm crossing my fingers that it works ok.)
STEP 3
Copy the THREE .pyw files in the attached zip file to the /Program Files/Python25/Lib folder. (Unzip them!) These are crucial! (Some unzip programs will capitalize the file names. CHANGE THEM BACK to all lowercase if this happens. Python is case-sensitive and it's looking for these files with lower-case names.)
STEP 4
Have a video player set to open M3U files by default. I KNOW this works with CorePlayer. I'm not certain it works with TCPMP (maybe mine sucks ) For CorePlayer, it's not enough to just install it. You need to go into Tools->Settings... then select the page for Associations and check M3U.
One thing you WILL notice is that not all videos will play in CorePlayer. I can't figure out the reason, but some of the videos are encoded in VP6 (FLV4) and Coreplayer can't read them. However, a good two thirds of the videos do work... just keep trying.
OK, maybe you noticed that these python files are named XBMC. Well, my intention is to get most (or all) of the plugins that work for XBMC to work for my app which I think I'm going to name 2Kinetic - Mobile Video Viewer. So far, it should work with the Tube8 plugin. I did not write this plugin, and I would not normally package it with this app, but I'm still in testing mode so... hopefully I haven't stepped on anyone's toes.
You'll notice that PythonCE is a little slow... well, it is not super fast, but I think you'll be able to live with it if we can get everything else that XBMC does working on Windows Mobile. Besides, if PythonCE turns out to be incredibly useful on the WM platform, maybe someone will take it up again and put out a better (newer version).
Known bugs:
-Back button doesn't do what it should always
-If net connection is down, the program will crash
-Images don't show up on the initial screen unless you scroll down, then back up... or you wait until it finishes loading.
-Many more i'm sure...
To Do:
-Write a new class for displaying images and text... i'm currently using listview (small icons). This will let me display more data (vid length) and fix the image loading behavior.
-Speed everything up
-See if TCPMP will open HTTP addresses as streams from an *.M3U file (how 2Kinetic currently works)
-Make a nicer search page (the default one is ugly and not convenient at all)
Future:
-Get more plugins from XBMC to work
-Get a better overall video player to work flawlessly (maybe TCPMP)
-Get RTMP support worked into the program (on the way )
Good idea, thanks.
I've seen your post on WVD's thread. Maybe you're app could enable to the user to fix some html or others to make the app reworking when video-websites have changed. No?
I hope your app will be a "better and working" wvd soon.
If you need help, but only for a translation in french, i can help you.
zinconnu said:
Good idea, thanks.
I've seen your post on WVD's thread. Maybe you're app could enable to the user to fix some html or others to make the app reworking when video-websites have changed. No?
Click to expand...
Click to collapse
I've got some ideas for that... like using an XML file containing regex expressions that will auto-update via web (or by hand). I really wanted to mimic how XBMC does it, but XBMC uses python and pythonCE is not perfect yet. I'm still thinking about it.
I hope your app will be a "better and working" wvd soon.
If you need help, but only for a translation in french, i can help you.
Click to expand...
Click to collapse
I speak French... but I don't know any technical French so maybe I'll ask for help
Ok, good idea. Do you think that in future your app may enable some "plugins" ? For exemple a dev' create a plugin (xml file) for a website like youtube, we put it in a folder, and it works. It's a good idea, to my mind.
(you speak french? Wow. )
dommage il crash sur diamond bsb 6.5.3
mancukya said:
dommage il crash sur diamond bsb 6.5.3
Click to expand...
Click to collapse
In english please.
How does it crash? Do you have an error message/log?
Just so everyone knows... it will crash if there's no internet connection. It will also crash if tube8.com is unreachable. There is absolutely no error-handling in the program at all. There is no log file either.
I was hoping that someone would say, "Yes it works for me on GPRS."
I'll keep working on it anyways.
If you are having trouble saying what you want to say inEnglish, french is ok since I can understand you, but we all prefer english normally so that everyone can understand
BTW - YOU MUST HAVE NET CF 3.5 INSTALLED FOR IT TO WORK. I think most new roms come with it, so this shouldn't be a big issue, but just in case.
It worked great for me,I have the Sprint Touch Pro2 using stock ROM,no problem at all,thanks for your great work.
Were you using WiFi at the time or were you using the Sprint Network?
makku12 said:
Were you using WiFi at the time or were you using the Sprint Network?
Click to expand...
Click to collapse
Both worked great.
DIAM500
Telus
It crashes for me, I believe its because its trying to save the file to "storage card" but as you may or may not no the DIAM500 only has internal memory no SD slot. Other wise it loaded fine and showed all the previews.
I've forgotten to say it, but it works for me too.
I use an acer tempo x960, with wifi.
For me it crashes when I press flv... If this app tries to save to the storage card that may be the issue in my case (maybe it's a regional or unicode issue... since in my localization the storage card folder is named "Cartão de memória".
PS: If you're going to add more sites I leave the same suggestion as I did for WVD: make your app scriptable in a similar way to PSP Tube (and its mods... here and here are some scripts that may help making the addition of some sites faster). In the long run this would require less (official) updates.
frmariam said:
For me it crashes when I press flv... If this app tries to save to the storage card that may be the issue in my case (maybe it's a regional or unicode issue... since in my localization the storage card folder is named "Cartão de memória".
PS: If you're going to add more sites I leave the same suggestion as I did for WVD: make your app scriptable in a similar way to PSP Tube (and its mods... here and here are some scripts that may help making the addition of some sites faster). In the long run this would require less (official) updates.
Click to expand...
Click to collapse
Yeah, it's hardcoded to go to "/storage card/" so it will crash if it's in another language or not there. Well, this was just a test to make sure those sites aren't doing anything other than checking the HTTP Headers for mobile devices.
As for scripting... I did not know that PSP Tube existed. I'll look into those... I was definitely going for a scripted version that others can contribute to since I don't want to be the one to fix it each time a site changes their format.
I'm still working on it...
And thanks for all the responses so far.
makku12 said:
I was definitely going for a scripted version that others can contribute to since I don't want to be the one to fix it each time a site changes their format.
I'm still working on it...
Click to expand...
Click to collapse
Good luck, i can't wait to test new version.
Good to know. Will keep an eye on development.
hey buddy, nice to see this.
i'm working on a similar app for android and started with tube8 too, cause it has easy accecable videos. Maybe we can share information how to extract the video infos.
I try to make my app pluginbased so that it is easy in the future to add new sites. I'm a android beginner (without my own device) so it takes some time.. but tube 8 works quit good at the moment.
P.S.: For android devices its important that the site has mp4 support so the sitesupport is very limited on android at the moment.
sxe: PM'd you...
Failed on GPRS when I clicked FLV...
WebException - Could not establish connection to network
I think I have everything working except for the Search function and the back button...
But the behavior so far:
1. You're presented with a series of menus
2. If you select Categories, it will show you a series of categories.
3. Otherwise, it will show you a list of videos with name and thumbnail.
4. Doubletap the video and it will open CorePlayer automatically and stream it. I had no slowdowns at all like I used to get with WVD and TCPMP (although I think that was TCPMP's fault and not WVD).
Ok, now all I have to do is fix the Search and Back buttons... then learn how to package this whole thing into a CAB file and I'll upload it for testing
Edit: Oh, and I need to put in a lot of error handling so that you guys can tell me what it says when there's an error

[APP] People's Note - Evernote client

People's Note
http://www.peoplesnote.org
People's Note is a polished Windows Mobile note taking application with full-featured Evernote integration.
The app is completely free and open-source. New versions come out every week or few. Let me know what you think.
You can also add and vote up feature requests at the site.
Download version 0.41 here (last updated: 2012-05-24)
Features
Rich text note creation and editing
TODO list creation and editing
Ink and photo note creation
Optional synchronization with your Evernote account
Offline note storage
High performance and small memory footprint
Requirements
Windows Mobile 5 or 6
Resolution 240x240 or higher
Touchscreen
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
This app works great man. Is there any setting to make it autosync anything you make?
I tried evernote long ago but didn't find it much use since there was no winmo app. Any tips or tricks?
wow, great app, works great on the hd2. waiting for the voice notes to be functional. some suggestions: feature to send notes through bluetooth and more color schemes
ninjabortion said:
This app works great man. Is there any setting to make it autosync anything you make?
I tried evernote long ago but didn't find it much use since there was no winmo app. Any tips or tricks?
Click to expand...
Click to collapse
There are 3 votes for autosync so far, which does not quite bring it to the top of my to-do pile, but you can help to change that.
http://peoplesnote.codeplex.com/workitem/416
Evernote has a WinMo app, but it is pretty bare-bones and has not been supported for a long time.
joshzzz2001 said:
wow, great app, works great on the hd2. waiting for the voice notes to be functional. some suggestions: feature to send notes through bluetooth and more color schemes
Click to expand...
Click to collapse
I'm not sure what you mean by sending notes through bluetooth. Would you elaborate?
Adding more colour schemes is unlikely. The app currently includes two versions of the interface, one for high-resolution displays and one for the low. With more variants of each, it could quickly become unmaintainable. I can't change the background colour programmatically either, because it is baked into the graphics. They are all dithered for 16-bit colour, and dithering is incompatible with transparency.
Don Reba said:
I'm not sure what you mean by sending notes through bluetooth. Would you elaborate?
Click to expand...
Click to collapse
It's simply you can send the notes you have to another device, say to another phone or pc, using bluetooth.
joshzzz2001 said:
It's simply you can send the notes you have to another device, say to another phone or pc, using bluetooth.
Click to expand...
Click to collapse
The thing I wonder about is what to do with the note on the receiving end. Official Evernote clients cannot properly transfer notes outside of synchronization. Exporting to HTML is possible, but would raise the question of what to do with file attachments.
Of course, if you can connect to internet through Bluetooth, then you can simply sync.
Don Reba said:
There are 3 votes for autosync so far, which does not quite bring it to the top of my to-do pile, but you can help to change that.
http://peoplesnote.codeplex.com/workitem/416
Evernote has a WinMo app, but it is pretty bare-bones and has not been supported for a long time.
Click to expand...
Click to collapse
Yeah i remember trying it out specifically because they had one, but it was terrible. Yours works great on my htc touch pro 2 though, so thanks
Perfect timing: I just started trying out Evernote this week and wasn't really keen on Evernote's own application because it's useless offline. And here comes your app and looks great.
I got one problem, though: It refuses to connect via wifi. No problem at all via 3G, but on WiFi it steadily shows "connecting".
Oh, and being able to create new tags would be a good addition.
Rjinswand said:
Perfect timing: I just started trying out Evernote this week and wasn't really keen on Evernote's own application because there it's useless offline. And here comes your app and looks great.
I got one problem, though: It refuses to connect via wifi. No problem at all via 3G, but on WiFi it steadily shows "connecting".
Oh, and being able to create new tag would be a good addition.
Click to expand...
Click to collapse
Thanks for complimenting the app. I have not used WiFi in a while, but will try to reproduce your problem.
Started a new work item for tag creation: http://peoplesnote.codeplex.com/workitem/1005.
Voting on feature requests gets them implemented sooner.
Since restarting my phone a few times, the app doesn't hang up while trying to connect via WiFi anymore - it just takes way longer than via 3G for some reason, but it's usable.
Edit: Forget about the described problem. I'm sure it was a generally lagging WiFi connectivity that day. It works like a charm in other WiFi networks and now at the same one, too.
I apologize for taking so long to release a new version — just did not have much time to spare. Version 0.38 implements one of the most-requested features, letting you choose "All Notebooks" to browse, search, and sync all your notebooks together.
http://peoplesnote.codeplex.com/releases/view/83479
Great App!
Great App! Working on my old Axim X51V!
I see on your website that you have Notes popping up with a timed alarm reminder as low priority. Let me put in a vote for higher priority.
I would use it as a timed "sticky note" to myself to do something.
Keep up the good work!
Just released version 0.39, making it possible to delete notes from the main note list screen via a tap-and-hold menu.
http://peoplesnote.codeplex.com/releases/view/84127
Version 0.40 adds an option to compact the database from the profile screen. Compacting a database can make it smaller and faster by removing empty spaces left over by editing, moving, and deleting notes.
http://peoplesnote.codeplex.com/releases/view/84688
cant log in
It must be just me; since nobody else has mentionned it; but I cannot log in to evernote at all on my HD2. On 3G it immediately comes back with network error (never even tries to open a data connection). On wifi it seems to be trying to do something in the background but after a few minutes to just goes back to the login screen.
Any ideas??
SR
sydneyrodgers said:
It must be just me; since nobody else has mentionned it; but I cannot log in to evernote at all on my HD2. On 3G it immediately comes back with network error (never even tries to open a data connection). On wifi it seems to be trying to do something in the background but after a few minutes to just goes back to the login screen.
Any ideas??
Click to expand...
Click to collapse
It sounds like the WiFi connection is slow and times out. With 3G, try to establish a data connection first, such as by opening a web browser. I just created a work item for this: workitem:1055.
0.41 release
After a temporary break, development continues. Version 0.41 adds some more polish to the user interface, as well as a new in-app player for WAV file attachments.
http://peoplesnote.codeplex.com/releases/view/88314
Don Reba said:
After a temporary break, development continues. Version 0.41 adds some more polish to the user interface, as well as a new in-app player for WAV file attachments.
http://peoplesnote.codeplex.com/releases/view/88314
Click to expand...
Click to collapse
thanks for update man....
This application is very usefull for me... Thanks for continue the great works
I use your apllication from the first time and it always works great for me..
Thanks again.
Regrads,
squallvai
This program is making all the right steps in all the right directions, it has great prospects.
There are some features that Evernote has that I hope would arrive in this software in the not-too-distant future. I make more handwritten notes that any other form of note taking, and what I find with 'PeoplesNote' is that the 'Ink Note' feature is just a one page scribble pad without any option to scroll or add a page. It would be fantastic if the Ink Note feature of PeoplesNote could automatically scroll as the old Windows Note does as you approach the bottom of the page. Evernote's Ink Note recognises that you are reaching the bottom of the page and facilitates extra space to scroll into. Additionally, it would be very helpful to have an erase feature with Ink Note.
Please don't take this as criticism, I can see this app being extremely useful for as long as Evernote allow you to develop it.

[APP] Wear IP Cam Viewer

I've just finished my new Wear IP Camera Viewer app - find it here:
https://play.google.com/store/apps/details?id=com.barkside.ipcam
With it you can view snapshots of your favourite public cameras, or your personal (security/baby-monitor/bird-cam) cameras, right on your Wear Watch. Other features include the ability to tap on a snapshot, and then pinch/double-tap to zoom. Also refresh a particular camera image from your watch. It works for MJPEG streams and JPEG snapshots only at the moment.
It is early days, so please let me know any issues.
Also, it is free (donations can be made within the app - if you get on well with it that is!)
Also again, if I type "Android wear IP Cam viewer" in Google Play, loads of non Android Wear IP cam apps come up - regular peeps aren't going to easily find my app! Any ideas?
Screenshots:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Put it in the Wear store.
I can't get my watch to refresh or change cams.
Moto 360
App updated with some fixes. Enjoy!
Sent from my HTC One S using XDA Free mobile app
it cant seem to find my foscam, easyn, or linksys cameras? and im def using the right settings from the cameras does the file path part need to be filled in?
Oh dear that doesn't sound very good. So you can either fill out the various boxes with ip/host, Port, path, etc or you use the manual setting to manually type (or paste) the full url. Are you testing from the phone first to ensure it is correct. Do the demo cameras work?
Sent from my HTC One S using XDA Free mobile app
barkside said:
Are you testing from the phone first to ensure it is correct. Do the demo cameras work?
Click to expand...
Click to collapse
Testing from phone first and it keeps saying failed to get frame grab. I am using the same credentials as my app that i have that views all my cams. I'll try to get the full url and try that later to see if that works.
Thanks.
good apps
barkside, great app!! i set it up to work with my foscam (a very popular webcam) so i'm going to post the details below to help others out and maybe some others can provide some input as well.
Foscam FI9821W V2 Cam on my LG G
The image above is a JPEG snapshot, but one that refreshes whenever I launch the webcam app on my watch.
Step 1 Purchase Foscam and setup on your local WiFi (not going into all the instructions, but basically its little more than giving your camera its on own IP address internally so you can see it on your local network.
Step 2 Launch the local URL, go to the your "settings" tab using IE, Firefox or Chrome and under "network" select the "port" option. Note the HTTP port, the only one you're interested in. Change it to something you like such as 8090 or 8095 or whatever and hit "save".
Step 3 Go to "basic settings", then "user accounts" and go ahead & create a "visitor" level user. You don't need or want your default admin account being the one you plug into the URL you'll ultimately put into your watch.
Step 4 Now that you have your visitor/user account, you just need to set up your virtual server/port forwarding for the IP address of your camera. Depending on the router, these settings are typically under "WAN" or "Virtual Servers" or "Port Forwarding". Its a very common feature that every router will have.
Step 5 After you've located your Virtual Server page, simply add a new "virtual server" and key in your IP cam's *LOCAL* web address. This is the same one you see at the top of your browser window in Step 3 above. Typically something like 192.168.2.210 or something. Add this IP address to the table along with the port you setup in Step 2 (8095 or whatever) and select "TCP" as the type.
Step 6You're almost done. Now you're ready to test the access to your camera on the web outside of your local WiFi. Make sure you have the NAME and PASSWORD handy for the visitor account you created.
You can do this one of 2 ways:
>> If using IP address (I don't recommend) do a 'whatismyip.com' lookup and get your 'outside facing' IP address.
>> If using a dynamic DNS (strongly recommended..i won't go into how to do this, but you should do this anyway when you set up your router) use that.
Here's an example of each type you'd want to type into your browser window VERY CAREFULLY
blah.freedomain.com = your DDNS or IP address
8095 = whatever port you are forwarding
blah = your visitor username
blah2 = your visitor password
Code:
http://blah.freedomain.com:8095/cgi-bin/CGIProxy.fcgi?cmd=snapPicture2&usr=blah&pwd=blah2
or
Code:
http://68.43.55.698:8095/cgi-bin/CGIProxy.fcgi?cmd=snapPicture2&usr=blah&pwd=blah2
Step 7 If you can see your webcam image in your browser window you're done! All you need to do now is to open Wear IP Cam on your phone and paste that in.
Step 8 Hit refresh on your watch and you will be able to see the updated web image on your watch each time!
Caveats
This works for the 19821W V2 and the CGI scripting language is slightly different for different foscam models. You might need to browse the Foscam site to see if the CGI code is. I can help out if needed but its really just getting the syntax down. NOTE the user is 'usr' in the code above. I was pulling my hair out for awhile because the older CGI script used 'user' and I kept misspelling it.
I haven't gotten the MJPEG working at all..in any browser. I get a broken image regardless of whether I'm internal or external. However the correct CGI to use for that (if you have better luck than me) is:
NOTE That the author says the end result is the same for MJPEG and JPEG; just a snapshot so there's no need to explore the MJPG option further unless you just want to play with it.
Example
Code:
http://blah.mydomain.com:8095/cgi-bin/CGIStream.cgi?cmd=GetMJStream&usr=blah&pwd=blah2
Of course you'll have to replace the DOMAIN, PORT, USERNAME and PASSWORD with your credentials.
Let me know if you have any questions!
nyvram1 said:
I'll update this guide if/once I've figured out why I can't get that secondary stream working correctly.
Click to expand...
Click to collapse
Great guide! Just to avoid confusion, can I reiterate that it will only ever work for snapshots of mjpeg streams, not the video stream itself. So it ends up being the same as jpeg.
Sent from my Nexus 4 using XDA Free mobile app
oh ok. That actually helps. I'll just stick with this version of it then. I wasn't sure if I was missing something by not seeing the MJPEG flavor. If there's no difference I probably won't pursue getting that working.
Thanks!
After playing with this a couple days, I think what would really make it nicer is to have the option to zoom..i guess 'pinch' zoom controls dont work on a watch touchscreen, so maybe a double tap will zoom the image and you can then move it around and another double tap to zoom back out.
that would be helpful as I can't make out the timestamp in my webcam image and i'd like to know its pulling a current snapshot.
Other than that, I think the app is great for what it is does.
Nice job!
nyvram1 said:
After playing with this a couple days, I think what would really make it nicer is to have the option to zoom..i guess 'pinch' zoom controls dont work on a watch touchscreen, so maybe a double tap will zoom the image and you can then move it around and another double tap to zoom back out.
Click to expand...
Click to collapse
This is supported already. Tap on a snapshot once which opens the zoom window. Now pinch zoom and double tap zoom will work (to a point). Long press to exit.
Really? Well dang I guess I should read the instructions.. off to try this now
So...
I have everything working fine ON MY TABLET for a Foscam FL8910W PTZ @ 640x480...
How in the world do I get the app to show up on my Moto 360 now?
I have every other app working well, but this one doesn't seem to sync when resyncing all apps
Any help would be appreciated!
There is nothing special with this app. I suppose you've tried the unoriginal restarting your tablet and your watch? Otherwise the only other thing is uninstalling and reinstalling the app?
barkside said:
There is nothing special with this app. I suppose you've tried the unoriginal restarting your tablet and your watch? Otherwise the only other thing is uninstalling and reinstalling the app?
Click to expand...
Click to collapse
Uninstall and reinstall just did the trick
I would mention that refreshing the image would be nice - maybe a 5/10/15/30/60 second option in setup? That would be SPANK!
Let me know what you think, otherwise, I'll report it working well with Foscam!
Glad that worked for you. Yes auto refresh would be nice. I didn't want to complicate it too much to begin with...
Nice app. Donation submitted. I also would like to vote for an auto-refresh enhancement. I think that would make the app perfect if it had that feature.
thanks

Categories

Resources