Google Script Autocomplete activates when semicolon is pressed instead of period - google-apps-script

I started using Google Script a few hours ago, and I noticed that the Autocompletion doesn't not work correctly. It activates when I press ; (semicolon), but not when I press . (period).
Logger. // Does not display anything
Logger; // Diplays clear(), getLog(), ...
I am using an french AZERTY keyboard and I noticed that when I switch a QUERTY keyboard, then it works correctly.
It makes everything hard to do because, first I do not have the autocomplete, and also it inserts a method at the end of the line every time I press Semicolon and Enter...
Does anyone knows why I have this problem or how to fix it ?
Thank you!

Posting this for documentation purposes.
This behaviour was reported in Issue Tracker a few weeks ago. Users who are experiencing this and want to keep track of this case might want to click the star on the top left in the referenced page.
Reference:
Issue Tracker: Autocompletion dialog malfunctions on AZERTY keyboards

Related

Up arrow key macro no longer works in chrome. (Send {Up})

After some update of chrome or maybe moving my script to a new computer I am no longer able to use a very simple macro for sending the ↑ and ↓ arrow keys.
My code:
!w::send, {Up}
!s::send, {Down}
I attempted adding return to the end of the line and reformatting but only got the behaviour for ↓ regardless of combination. even more odd was that the following code also made the page scroll down
!w::send, {Up} return
and
!w::send, {NumpadUp} return
I am more than a little confused how such a simple macro is not functioning. in only google chrome but fine in other applications. My current thought is that it may overlap with some active extension but I am only seeing a possible conflict with a smooth scrolling extension that shares the usage of the alt key. This however was active last time the macro was functioning and worked to enable smooth scrolling. Attempts with the extension disabled have not produced different results.
I have also altered the key trigger to be just "w" and this yields no result in chrome. Yet the original code functions within text fields in chrome. I think this is mostly an issue with google chrome but I cannot understand why sending the key does not function despite it working when pressing the actual direction keys.
EDIT: So another round of troubleshooting I tried switching to a guest user and the macro functions. there must be an extension that is taking priority over the macro functions. What remains confusing that is it does not appear to have any relation to which key combination I attempt to trigger it with. I will have to start blank and progressively re-enable everything to find out more about the interaction.

How can I make the advanced button work in chrome 'App isnt verified'?

I'm sorry this question might not be completely on topic, but i couldn't find answers googling it.
I'm creating an google app script (with clasp).
When i run the script i get the following popup as usual:
I'm supposed to click on advance and go anways.
But the advanced button no longer works! it doesn't show me the followup button to continue anymore!
Does anyone have the same issue and was able to fix it? It seems to have originated after the chrome update (with rounded ui).
I tried deleting the original grant (i added a feature that needed bigger scope), but even that didn't work.
It might be one of my chrome extensions.
Doing the same thing in incognito mode, worked!

Chrome - type=file drag and drop

I have a weird situation. One of my users is using functionality of Chrome (current version, 49, 50), that he drags and drops a file from his folder on local computer to normal input type=file button in a form on the webpage. Once again, let me stress it even more, its normal html input, no fancy javascript, no drag&drop events and handlers, nothing like this. It just takes the name of the dragged file and puts it into the input field, as like he selected it via "normal" way, opening the file select window, locating file on harddrive, selecting the file and confirming.
In some specific situation, this stops working (while doing some edits in the page via javascript / ajax), and I need to "reenable" it.
But, and that is my question, I haven't found any documentation of this "feature" in Google Chrome (or maybe some other browsers as well, I don't know). Why it works, how it works, how it should work and what to do if it stops working :) Does anyone has any experience with this ? The only way how to "fix" it now is to reload the page. I'd love to solve it ... :)
EDIT 1 : I just did a quick test, it works and bugs the same way in Firefox on Win. It doesn't show any error in dev console or any message, it just doesn't add the file as expected.
I've found it. The previous discussion with deceze pointed me to test the javascripts I have on the page, that do not "interfere" with the input type=file ... they weren't any such scripts, but I've found that after doubleclick on the table (that I'm using for editing) this script is being called
$(document).bind('drop dragover', function (e) {
e.preventDefault();
});
and there wasn't any unbind action when table is saved ... this caused the drag and drop everywhere on the page to stop working after the edit.

chrome://newtab loads delta search

I have wasted nearly 4 hours in fixing this.
After Babylon this time it is delta-search which makes my chrome sucks on every new tab. chrome://newtab loads: http://www2.delta-search.com/?babsrc=NT_ss_SU&mntrId=786E00E04C01EE9A&affID=121564&tsp=4987
I am not able to fix this. I have already fixed homepage, search setting and other browsers. Please help me to fix this new tab issue. I want "Most visited tab" to be there when I press new tab button.
A real solution is to reset some fields in "chrome://flags". This was the way I did last time in AVG or Babylon. I have solved my problem but I wish if someone could really give exact steps so that next time if a user gets stuck he can find it here.
:p
open google chrome, type chrome://flags/ on address bar and go to hidden configuration setting.
change following part of configuration file to disable by cliking on enable..
Enable Tab Browser Dragging Windows
Enable creating a browser window when dragging tabs. #enable-tab-browser-dragging
Disable

When refreshing a submitted content on Google Chrome, confirmation prompt doesn't get focused

Here is the scenario: whenever I submit a form on Google Chrome, then try to refresh the page, I get prompted by the browser to confirm the re-submition, due to data loss et cetera, as usual. The annoying part is that the confirmation prompt doesn't get the focus (it used to do it).
This is a common task I believe many programmers do:
CTRL+S on code editor;
ALT+TAB to Google Chrome and
CTRL+R (or F5) to refresh the page.
RETURN or SPACE to confirm the re-submition.
The problem is at the 4th step: once the confirmation prompt doesn't get the focus, I have to mouse click the "OK" button.
It's not a big deal, but it really becomes a pain when you have to test multiple times a form submition.
My Chrome version is: 27.0.1453.94 m
Thanks in advance.
I noticed the same behavior in Chrome 27.0.1453.94 m, it's very annoying when developing webpages. The problem persists in version 27.0.1453.110 m.
I've tried 29.0.1529.3 canary, it's refresh behavior is back to normal in that version.
Today i noticed that this behaviour is fixed :-)
Current version: 28.0.1500.71 m