Assigned
Status Update
Comments
ra...@google.com <ra...@google.com> #2
Thank you for reporting this issue. For us to further investigate this issue, please provide the following additional information:
Android build
Which Android build are you using? (e.g. UQ1A.240205.002)
Device used
Which device did you use to reproduce this issue?
Android bug report (to be captured after reproducing the issue)
For steps to capture a bug report, please refer:https://developer.android.com/studio/debug/bug-report#bugreportdevice
Alternate method
Navigate to “Developer options”, ensure “USB debugging” is enabled, then enable “Bug report shortcut”. Capture bug report by holding the power button and selecting the “Take bug report” option.
Note: Please upload the bug report to google drive and share the folder to android-bugreport@google.com, then share the link here.
Android build
Which Android build are you using? (e.g. UQ1A.240205.002)
Device used
Which device did you use to reproduce this issue?
Android bug report (to be captured after reproducing the issue)
For steps to capture a bug report, please refer:
Alternate method
Navigate to “Developer options”, ensure “USB debugging” is enabled, then enable “Bug report shortcut”. Capture bug report by holding the power button and selecting the “Take bug report” option.
Note: Please upload the bug report to google drive and share the folder to android-bugreport@google.com, then share the link here.
ni...@gmail.com <ni...@gmail.com> #3
Thanks for your request. We will investigate this issue and see if we can implement the behavior you've requested.
ni...@gmail.com <ni...@gmail.com> #4
As an additional alternative, it should be possible to specify a label in the options for GmailApp.sendEmail().
A work-around is proposed in StackOverflow:http://stackoverflow.com/a/18727687/1677912
A work-around is proposed in StackOverflow:
ra...@google.com <ra...@google.com> #5
Are there any news on adding the ability to archive and add a label to specific emails (not threads)? From a corporate shared mailbox perspective auto threading emails by subject is a serious issue (eg. we recive two emails from the same person with same subject but with different description).
Since it's available in pure mailbox view is that such a big effort to make it available also in Google Script?
Since it's available in pure mailbox view is that such a big effort to make it available also in Google Script?
ra...@google.com <ra...@google.com> #6
Looking forward to having this implemented. As has been mentioned automatic threading based on subject is a big no-no for our enterprise. We get automated reports and other documents sent to us by customers and suppliers and they are lumped together in threads making it very difficult for me to let Apps Script process them automatically since labels (i.e. outlook folders) have to be applied to entire threads (even though the messages in these threads often need to be treated differently).
ni...@gmail.com <ni...@gmail.com> #7
Please add this function (and message.getlabel too) we need to scan message not only the thread.
ra...@google.com <ra...@google.com> #8
Will there be any progress on this issue? Threading is great for humans, but if you are scripting, accessing and manipulating individual messages is MUCH more important, especially if it can be done from the normal user interface. Anything you can do to the thread you should be able to do at the message level.
mo...@gmail.com <mo...@gmail.com> #9
Unassigning
Description
We are never seeing a dbl click event in android chrome when talkback is on. Vist the following html on a touch device in non talkback and with talkback enabled and see differences in the emitted events.
see attached screen shots of the logged events.
<!DOCTYPE html>
<html>
<body>
<div tabindex="-1" id="a">My First Heading</div>
<script>
function x(event) {
console.log(event.type, event)
};
document.getElementById("a").addEventListener('mousedown', x);
document.getElementById("a").addEventListener('mouseup', x);
document.getElementById("a").addEventListener('focus', x);
document.getElementById("a").addEventListener('blur', x);
document.getElementById("a").addEventListener('touchstart', x);
document.getElementById("a").addEventListener('touchend', x);
document.getElementById("a").addEventListener('touchcancel', x);
document.getElementById("a").addEventListener('click', x);
document.getElementById("a").addEventListener('dblclick', x);
const el = document.getElementById("a");
el.onpointerdown = x;
el.onpointerup = x;
el.onpointercancel = x;
</script>
</body>
</html>