I am getting CLS poor value - core-web-vitals

I am getting CLS issues and i dont know why
If you watch this picture you will can see i have reserved space to all elements that after are loaded
Then, why CLS is poor?
How is this possible?
Help me please

Related

Possible for VBS to sendkeys while a full screen application is above it?

Sorry if this seems like a dumb question but im curious to see if this would work?
So my plan was to create a .vbs script to send keys to go to a website, but my plan was to have a blank black screen over top of it so you couldnt see the process. Obviously it would not be hard to make the full black screen (it would be done in a different language, most likely an exe file) but then I completely forgot... would it even be possible? I tested it out with other full screen programs and obviously it sent the "sendkeys" command to the program that was in front.
Still confused? Here is an example
Set WshShell = CreateObject("WScript.shell") for i = 0 to 50 WshShell.SendKeys(chr(175)) next Process.Start("CMD", "/C start chrome.exe http://www.bing.com")
WScript.Sleep 2000
WshShell.SendKeys "this is an example of text being put into the search bar"
So my question is, would it be possible to have a fullscreen application open while this command runs in the background? it could be any fullscreen application, just anything to "hide" or cover this process.
Or would it even be possible to create a fullscreen program specifically to cover this?
Thank you for reading!

vbs Msgbox parameter 262144

In the following example a message box will pop up with an icon to the left. and keep it on top of other windows.
msgbox("Text",vbSystemModal,"Title")
However the following will remove the icon and still keep it on top of the other windows like vbSystemModal.
msgbox("Text",262144,"Title")
Why is this? I can't find any documentation on this number or if it even has a name to it. Can anyone explain what exactly this number is doing?
When you are in doubt see the documentation here for MsgBox

set multiple MMCloseDrawerGestureMode gestures

I am using MMDrawerController and I wish to set multiple closing gestures, anyone know if this is possible? If so how do I accomplish this?
Currently I am doing this:
[destinationViewController setCloseDrawerGestureModeMask:MMCloseDrawerGestureModePanningCenterView];
Don't know if you still need help with this, but to set multiple closing gestures:
[destinationViewController setCloseDrawerGestureModeMask:MMCloseDrawerGestureModePanningCenterView | MMCloseDrawerGestureModeTapCenterView];
Add however many you wish

set display performance for document

If I set my display performance and run a basil.js script then basil seems to override my display performance settings.
What I would like at the end of the script is set the display performance settings to fast display.
Is this possible?
I think you are out of luck as app.displayPerformancePreferences seems to be readonly
(ViewDisplaySettings.HIGH_QUALITY, ViewDisplaySettings.TYPICAL or ViewDisplaySettings.OPTIMIZED). See http://jongware.mit.edu/idcs6js/pc_Application.html and search for "displayPerformancePreferences".

vbs start application(hh.exe) with specific window size

I want to start an application (hh.exe) (Windows Help) in VBScript but I want to give that app a specific window size anb possibly a position where to open
to start the app I use this code :
Set hh = CreateObject( "WScript.Shell" )
hh.Run("hh.exe -800 C:\Users\me\Desktop\HELP_I_CREATED.CHM")
This works but I can't find a way to give that application a size. If anybody has an idea it would be very apreciated.
Thank you
Here is the spec for this function:
http://msdn.microsoft.com/en-us/library/d5fk67ky(v=vs.84).aspx
You can see from the list of options that there is no way to specify a specific window size other than "minimized", "maximized", "original", "most recent".

Resources