-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hard to switch tabs in Android tablet #287
Comments
@richb-hanover -- thanks for the very thorough report. It sounds like the problems were introduced when I did a rewrite of the tab code, and it's probably due to some code catching the click before it gets to the tab code. Once found, it's easy to fix. A couple of things to try --
I'll post a link to this issue on Scripting News, to see if other people have input. And thanks again for the thorough report. :-) |
Update:
|
@richb-hanover -- thanks, that's very helpful. now i don't have to install Brave. i have an iPad, but haven't tried running news.scripting.com in chrome on the iPad, I generally use Safari there. i really appreciate your staying with this. ;-) |
You're welcome. My philosophy on this kind of stuff is expressed here: https://randomneuronsfiring.com/wpntfiiwdkib/ |
That's a great philosophy. Along a similar line, I've long felt they should teach every college grad how to write a good bug report. http://scripting.com/stories/2010/06/30/writingGoodBugReports.html Your bug reports are great. I have been occupied doing other things, but when I can swing around to this I'm sure we'll be able zero in on the problem right away. |
I don't have an Android tablet, but I do see similar behavior on on my iPad (iPadOS 17.1.2) in both Chrome 120.0.6099.119 and Safari. Safari seems to catch the taps more often than Chrome, but it does miss one sometimes. When I have a spare moment I'll to get a debugger going to see if there are any messages in the console. |
I just tried it on my iPad in both Chrome and Safari, the performance was as it is on my desktop system, it works as it's supposed to. |
OK. I'll keep diggin' (but later this week). Thanks. |
Also please try it with this, a new version of the software, same content. |
This version is better.
Thanks! |
I still want to get to the bottom of this. |
Update: Today, I went to news.lucky.wtf on my Fire tablet with Brave browser and it appears the tab behavior has changed, mostly for the better.
Using my old (slower) Asus Nexus 7 tablet with Chrome:
Using my iPhone 14 with either Chrome or Firefox:
I have not had time to figure out invoking the debugger to look for error messages in the browser console. Thanks again. |
First @richb-hanover -- thanks for sticking with this. As I read your outline I was thinking, I wonder what "slow" looks like on his system. So I thought I'd start by doing a demo of how news.lucky.wtf performs on my system. newsPerformance.mov |
The attached video is exactly what it looks like on my desktop computer. I judge its speed to be completely acceptable. I need to figure out how to make a screen recording of an Android tablet where taps are "evident" to show what I'm seeing. I need to work on other projects today, but will look for time for a screen recording soon. Thanks again. |
thanks, no rush. i've asked some other people to come take a look at this too. |
Just found out that the brief blue flash comes from |
@fmfernandes -- i haven't seen the brief blue flash. could you do a little video to demo? |
Sure. It'll only show on mobile (or when emulating one): blue-flash.mp4 |
@fmfernandes -- thanks -- i may want to get rid of the focus-setting. now i know what to look for. ;-) |
I figured out how to do screen recording. I hope this gives additional clues: The attached video shows
https://github.com/scripting/Scripting-News/assets/1094930/dd8dc7b0-69ec-4a39-8e0e-fc262ccf7f0d For comparison, here's the production https://github.com/scripting/Scripting-News/assets/1094930/56c7957f-7b97-4bb9-96a8-00834b442612 |
@scripting I wonder if there's an update. (I updated the video links so they may appear now.) I continue to use news.lucky.wtf, where a single tap on a tab always switches to the tab. This remains different from the production scripting.com site, where I have to "tease" my Android tablet to switch. I realize that it's not a vote, but I would be happy to see the production site switch to the code that runs news.lucky.wtf. Thanks as always. |
I was working on something completely different today and saw the problem with tab-clicking. It happened in Chrome on my Mac in a mode where it emulates an iPad Mini. My first theory was there was another click handler somewhere that was catching the click and not propagating it. There aren't good ways to trap this in the debugger, but my limited ability to check this out via searching in source code said this wasn't it. I looked for things I could turn off to see if the problem went away, and in that I seem to have found a conflict. If I commented out the code that adds a tooltip to the tab object then I no longer had any problems with clicking. Then I tried something less drastic. Instead of putting the tooltip on the whole tab, I just put it on the icon at the beginning of the tab. Again no problem. So here's how you can help.
Report results here: a) fixed |
I decided to make a stronger test, I commented out the code that adds the tooltip. That should make this a stronger test. |
I am sad to say that it is "c) not fixed". It does not appear to be materially different from my original report. Here's how I tested at 2:40pm ET on 7 Mar 2024: I rebooted the same Fire 8 tablet as in the original report. I turned on Settings -> Device -> Developer -> Show taps to confirm that the OS registered my taps. I then open HOWEVER... What other info could I provide? Thanks as always |
@richb-hanover -- thanks for the report. the good news is that i saw the problem here today. there's nothing i can do to fix the problem until i can reproduce it. thanks for sticking with it. |
I don't mean to perseverate, but I want to be clear that the |
@richb-hanover -- you've made that point well. i've read all your messages, and am working on this question this morning. the big change is that now I am able to reproduce the problem. until yesterday i had not been able to do that. i can't debug something i can't see happen. i've now said that three times. please believe me. i want to solve this problem. i'm going to report another experiment i did in the next message for anyone who is tuning in who might be puzzling this out alongside us. |
I did a bit more research in trying to answer this question -- why would this happen on a mobile device and not on a website accessed from a desktop computer (assuming that's true for other people, it is true for me). it turns out that the browser has special events for mobile devices because clicking is different there. they are called touchstart, touchend, touchmove. and they have another set of events that capture both classes, pointerdown, pointerup, pointermove. chatgpt recommends trying using "pointerdown" in place of "click" and seeing if that helps. as far as I can tell, it doesn't make a difference. the tabs still are only sometimes responsive. |
okay so the next thing i want to look at is to see what's the difference between news.scripting.com and news.lucky.wtf. there is a difference. both use the filter.js feature in pagepark, and a new feature in pagepark that hooks directly into FeedLand news products. so this is what's in filter.js on news.scripting.com: const newsProductOptions = {
urlServer: "https://feedland.social/newsproduct",
urlApp: "http://scripting.com/code/newsproducthome/index.html",
urlNewsProductSpec: "http://scripting.com/code/newsproducthome/newsscriptingcom.json"
};
options.runNewsProduct (newsProductOptions); and this is what's in filter.js on news.lucky.wtf: const newsProductOptions = {
urlServer: "https://feedland.com/newsproduct",
urlApp: "http://scripting.com/code/newsproducthome2/index.html",
urlNewsProductSpec: "http://scripting.com/code/newsproducthome/newsscriptingcom2.json"
};
options.runNewsProduct (newsProductOptions); |
Pixel 7, all good |
Moto G5 2023 tabs worked fine several times no problems. Thanks. |
Okay it sounds like this version of the tabs works. |
HP Envy Everything works. Clippers lost 67 - 102 |
Works fine on my iPad pro |
Next testhttp://scripting.com/code/testing/tabstest/ This test is simpler, it just displays a picture in each tab. There is no good or bad result. If it doesn't work, we've gotten closer to finding the problem. If it does, then we know to look elsewhere. How toClick on each tab in turn, observe if a new picture has shown up below, and then click the next tab. And then come back here and say if it worked or it didn't. Mention the device and browser you're using for the text. ThanksAnd thanks for your help! 😄 |
Tabs with pictures |
iphone 14 plus, vivaldi (chromium) browser
TL;DR no problems
i first tapped tabs in order right to left, then tapped tabs at random.
each tab always displayed a picture. any given tab always displayed the
same picture.
…On Sat, Mar 9, 2024 at 8:09 AM Dave Winer ***@***.***> wrote:
Next test
http://scripting.com/code/testing/tabstest/
This test is simpler, it just displays a picture in each tab.
There is no good or bad result. If it doesn't work, we've gotten closer to
finding the problem. If it does, then we know to look elsewhere.
How to
Click on each tab in turn, observe if a new picture has shown up below,
and then click the next tab.
And then come back here and say if it worked or it didn't.
Mention the device and browser you're using for the text.
Thanks
And thanks for your help! 😄
—
Reply to this email directly, view it on GitHub
<#287 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABP73J2HSYCC2NMPPJXIFCTYXMQZFAVCNFSM6AAAAABBPRMPQKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSOBWHA4DANZTGM>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Mac mini M1, Sonoma 14.4, Safari |
Worked on iPhone 15 Pro Max, Safari, iOS 17.3.1. |
Everything works on my Pixel in Chrome.
Grant
33 Hart Cres.
Whitehorse, YT
Y1A 4R2
(867) 633-3243 (home)
(867) 333-3243 (cell)
…On Sat, Mar 9, 2024 at 8:34 AM Jon Ault ***@***.***> wrote:
Worked on iPhone 15 Pro Max, Safari, iOS 17.3.1.
—
Reply to this email directly, view it on GitHub
<#287 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AJMXVTAZ25XTVFXO2WGVAW3YXMTZLAVCNFSM6AAAAABBPRMPQKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSOBWHA4DONJTGI>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Whoops, I was wrong. I didn’t realize it until I looked at it on my Mac, but on the iPhone the last two tabs are missing (Mets and Burns) in portrait orientation. If I rotate to landscape & reload then they appear (and work correctly). I went back & checked yesterday's test & that had the same problem - only the first 4 tabs were displayed in portrait, with no indication that anything was missing. |
I saw that someone reported missing tabs on their iPhone, so I went back
and made this screenshot on mine:
…On Sat, Mar 9, 2024 at 8:28 AM Daniel Barnes ***@***.***> wrote:
iphone 14 plus, vivaldi (chromium) browser
TL;DR no problems
i first tapped tabs in order right to left, then tapped tabs at random.
each tab always displayed a picture. any given tab always displayed the
same picture.
On Sat, Mar 9, 2024 at 8:09 AM Dave Winer ***@***.***>
wrote:
> Next test
>
> http://scripting.com/code/testing/tabstest/
>
> This test is simpler, it just displays a picture in each tab.
>
> There is no good or bad result. If it doesn't work, we've gotten closer
> to finding the problem. If it does, then we know to look elsewhere.
> How to
>
> Click on each tab in turn, observe if a new picture has shown up below,
> and then click the next tab.
>
> And then come back here and say if it worked or it didn't.
>
> Mention the device and browser you're using for the text.
> Thanks
>
> And thanks for your help! 😄
>
> —
> Reply to this email directly, view it on GitHub
> <#287 (comment)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/ABP73J2HSYCC2NMPPJXIFCTYXMQZFAVCNFSM6AAAAABBPRMPQKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSOBWHA4DANZTGM>
> .
> You are receiving this because you commented.Message ID:
> ***@***.***>
>
|
Updated test results using http://scripting.com/code/testing/tabstest/ TL;DR: works exactly right for all tests. Details:
THANK YOU FOR TRACKING THIS DOWN! |
It works for me on the iPhone 13 (with the latest operating system iOS 17.3.1) |
Tabs with pictures works w/ moto G5 2023 with duck duck go.
…On Sat, Mar 9, 2024, 10:09 AM Dave Winer ***@***.***> wrote:
Next test
http://scripting.com/code/testing/tabstest/
This test is simpler, it just displays a picture in each tab.
There is no good or bad result. If it doesn't work, we've gotten closer to
finding the problem. If it does, then we know to look elsewhere.
How to
Click on each tab in turn, observe if a new picture has shown up below,
and then click the next tab.
And then come back here and say if it worked or it didn't.
Mention the device and browser you're using for the text.
Thanks
And thanks for your help! 😄
—
Reply to this email directly, view it on GitHub
<#287 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AVGUYPZDMRFE5YCNCSR5DWDYXMQZHAVCNFSM6AAAAABBPRMPQKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSOBWHA4DANZTGM>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
It seems like the second test works well. Everyone so far is reporting perfection. If this keeps up there will be another test tomorrow that replaces one of the pictures with a timeline from FeedLand. That will help determine if there's interference between the two. If the click meant for the tab is getting captured somehow by the FL bits. |
Here's the next test. It's the same as the previous test, except one of the tabs is a FeedLand timeline. How to
QuestionDid you have to click on any tab more than once to get it to change? Also include info about browser and device. |
iPhone 15 Pro, iOS 17.4 |
I started a new thread for the fourth test and beyond. Please stay with it. I can move pretty fast if there are enough people trying to make it fail. |
Using http://scripting.com/code/testing/tabstest3/index.html, I saw interesting behavior for the River tab:
|
Tabs with pictures and Feedland timeline |
the only question that matters is whether it ignores your click or responds to it. it doesn't matter how it responds to it. thanks for keeping the responses simple. |
Your help is much appreciated! 😄 Let's try this as a tab test. As with every other test...
Do this a bunch of times. Did it register your clicks or not? Remember, forget everything else. All that matters is the tab clicking being heard by the software. Thank you! |
Pixel Phone - Android and Chrome. Worked. |
Worked iPhone 14 Plus, Vivaldi (Chromium) browser |
tabs work, paragraphs in News run too wide. iphone mini 13. |
I have been reading Scripting News for a couple years on my Amazon Fire HD 8 (10th generation) running Android version 9 using Brave browser (version 1.61.109)
Recently, I find I have a hard time changing/clicking new tabs on the main page. I expect to be able to tap to move to/select the desired tab. What actually happens is difficult to describe but is one of these behaviors:
I have not determined a pattern to what triggers any of these behaviors. I have also tried varying tap-lengths from brief to holding down for a second.
To rule out hardware problems, I made two tests, both work as expected, and seem to rule out any hardware problem in my tablet.
Clicking any of the underlined links in the body of the page works as expected: A tap will go to the desired page; long-clicking opens the context menu that allows me to open in a new tab, etc.
I used archive.org to look at Scripting News in the past. The tabs work exactly as expected. I chose December 20, 2022 at 05:31:49 (https://web.archive.org/web/20221221053149/http://scripting.com/) .
I started noticing this around the time the newest Scripting News came out; I remember some mention of making all the tab/menu handling the same across all the programs and I wonder if this behavior is related.
What other debugging information could I provide? Many thanks.
The text was updated successfully, but these errors were encountered: