I am calling chrome.notifications.create(msgID, msg), multiple times, each time with different msgID. For example if I have 5 messages to User, I call the chrome.notifications.create(msgID, msg) 5 times. It works perfectly fine on Apple MacBook where it stacks the pop-up windows on one above other. However on Windows 10, it shows just one pop-up window and only after closing the first pop-up it shows second one and so on so forth.
How can I achieve same experience as MacBook on Windows 10?
Related
Is it possible to set/get the position of other windows in node.js in Windows 10/11?
One of my windows keeps moving to my first monitor when Windows goes to sleep / the monitors turn off and it's extremely annoying.
Just want to make a quick script that can get/set a window's position by name.
Example:
Say I want to move the window "Discord" to x: 60, y: 55, how would I accomplish this in node.js?
I use node-window-manager it works pretty well for these tasks. You an also use AutoHotKey from node in a few different packages, which would be useful for "if window then". There are also "real" window managers that keep windows in specific regions, screens, virtual displays, etc.
I have made a web application (for fellow Zazzle storekeepers) that creates webm videos of their designs in the browser. For the last approx 7 seconds of the video there is a "call to action" text. For that last 7 seconds, there is no movement in the video.
I'm on a Mac and those last 7 seconds of the video are included in both Firefox and Chrome. Windows 10 users don't get those last 7 seconds and it seems that they are automatically being trimmed off, possibly because there is no movement.
I don't have access to Windows 10 and want to know if that is a feature of Windows 10 browsers. A user has been kind enough to help me some and has tried it in both Firefox and Chrome in Windows 10 and it happens to videos created in both browsers.
If this is a feature of Windows 10, is there anything I can do about it?
If you want to try this for yourself, follow the link below, put in the storename hightonridley at the prompt and ok it. Once loaded, click the button in the button pane at top left marked "Animate & save video".
Firefox prompts you to download it once made but Chrome goes ahead and downloads it without prompting.
Here's the link: Video maker
I found out that Windows 10 was unhelpfully truncating the recording at the point at which it detected there was no more movement.
The solution was to introduce a change in the last second of the video. Windows 10 truncating from that point forward then didn't matter.
On a client machine, all of the TextFields are displayed with the text cut in half, vertically.
A few fields that display correctly are Formula fields or have a height increased for testing purposes.
This bug started happening without any update of my software, so must be something inside the machine of the user.
It works elsewhere.
The client uses a XP SP3, the only thing that happened (what I can see, using the event viewer) is that a Office 2007 installation failed and after that all reports have this problem.
Since this report works everywhere except this client, it must be some sort of wrong config with in the client machine.
So, I replaced the printer default with another printer and the reports started displaying everything as it should.
So a wrong default printer was the problem.
The program I'm working on has a feature to copy some data from server to client. So I use QSystemTrayIcon::showMessage function to show a notification popup.
Everything works fine on Windows and Mac. On Linux, specifically Ubuntu 14, the notification pops up one by one, with about 3 sec for each. Even when the second notification is shown right after the first one. On Windows and Mac, it would show the second notification and cancel the first one. But on Linux, the second notification has to wait until the first one time out.
So my question is is there any way I can make new notification overwrite the previous one?
My code is simply like:
QString title("foo");
QString detail("bar");
m_pTrayIcon->showMessage(title, detail);
We have an application in Clarion 6 which does not have any mdi windows in it anywhere. These have all been removed and made non-mdi. When this one window is open and other windows are opened off of it (say from a button click), the first window will 'pop out' in front of the other windows when the items are refreshed based on a timer.
How can this be stopped? We do not want this window to get the focus and cover other windows automatically this way. However, the display data does need to refresh every so often.