MDM Zinc - Run desktop app in fullscreen - fullscreen

Is there an option to allow desktop apps build with Zinc 3.0 (Windows XP) to go into fullscreen? (In Flash itself it works but not in the compiled Zinc desktop app)

Set the Window State to "Maximized" in the Window Properties Pane.
Alternatively, you can set the Size Type to "Relative" and set the Width and Height to "100%"

Related

Can I use same software after switching Window Manager or Desktop Environment in Linux

Suppose I am using Kubuntu.
So I have Kwin as Window Manager and
KDE as Desktop Environment.
I use VSCode and other software.
I am switching to other Desktop Environment and Window Manager alongside Kwin and KDE.
Note: This means I will have both KDE and other Desktop Environments installed on my computer and I will switch between these from login screen. [Same for window manager]
Now, If I switch to Cinnamon Desktop Environment or GNOME Desktop Environment or any other Desktop Environment.
or if I switch to i3, bspwm, dwm Tiling Window Manager or Fluxbox, Openbox Stacking/Floating Window Manager.
or switched both Desktop Environment and Window Manager.
Now can I use the same VSCode and other softwares on these different Desktop Environment and Window Manager? or do I need to install same software for each of these Desktop Environments and Window Managers?
All your self installed programs will work fine in whatever environment you choose.
For maximum compatibility, you should still prefer x11 over Wayland as display server - for example screen sharing in ms teams needs x11, last time I checked. This depends on your personal needs.
Although you can always start any program from a terminal, we usually like to have a graphical menu of some kind that lists all available GUI apps. Desktop environments all contain their own menu.
If you go down the window manager route, you are expected to install a launcher yourself (such as dmenu or rofi), and configure keyboard shortcuts to launch each one of your favorite apps.
I recommend watching DistroTube on YouTube for lots of good info about tiling window managers and Linux in general.

Windows 10: pin window only to a specific taskbar

I'm using multiple virtual desktops on Windows 10. Now I'd like to pin for example firefox to the taskbar on desktop 2. But the app icon is then visible on every desktop.
Is it possible to just show it on a specific desktop instead of every desktop?
It is impossible as of Windows 10 version 1909. Virtual desktops are a game of DWM cloaking, and there is no separate preferences/settings for different virtual desktops. See this.

x2go resolution from windows client

I'm happily using x2go to connect to a remote Ubuntu Server 16.04 with XFCE installed from my local pc with a local resolution of 1920x1080 on a HiDPI screen (13''). If I run the x2go client from a virtualized Linux (Linux Mint 18.03 with XFCE), everything works well and I can see a really sharp image of the remote desktop. Problem is, when I try to connect directly from Windows 10 the image is blurred and the resolution is wrong. I tried to play around with the x2go client settings but no way, the image is always terrible. I also tried to use PyHoca and different X-servers but the result is the same.
Is it a well-known problem? Any suggestion on how to fix it?
Thanks in advance.
I had a very similar problem: A Dell laptop with an Nvidia graphics card, having a resolution of the built-in flat panel of 1280x800. I connected this to an external screen with HDMI with a resolution of 1920x1080. However, X2Go seemed to pick up the resolution of the built-in screen instead of the actual screen, making everything seem blurry (interpolating 1280x800 to 1920x1080).
This is what fixed it for me: Navigate to the C:\Program Files (x86)\X2GoClient\VcXSrv\ directory in Explorer. Select the vcxsrv.exe file and right-click it, choosing Properties from the popup menu. Go to the Compatibility tab, and in the Settings section there, select the option "Override high DPI scaling behavior. Scaling performed by:" and then select "Application" in the combo-box below.
Restart the X2Go Client to have its X server start with this new setting.
This fix also solved X2Go Windows Client crashes in my setup.
I have basically the same scenario: connecting from a high DPI Windows laptop to KDE on Debian, in my case for Desktop Sharing. The client would connect okay, but display only a portion of the remote host's screen.
Keyboard shortcuts would not scroll the client window.
Any attempt to show more (maximize, go full screen, click-and-drag client window border) would seem to work for a second, then crash.
The Compatibility scaling change fixed the instability - no more crashes, yay! - but did lead to slow repaints as noted by Algeboy.
Upgrading to a newer version of VcXsrv also did not resolve the crashes - Compatibility change still required, but screen repaints are quicker.
To upgrade, download and install the latest VcXsrv in its own directory. Using Explorer or whathaveyou, apply the HiDPI setting to vcxsrv,exe.
Start x2go client but don't start a session. Click Options, Settings, then X.Org Server settings tab. Select "use custom x server". Point to the newly installed vcxsrv.exe and click okay. Restart the x2go client.
This apparently takes the version from 1.20.6.0 supplied by x2go to 1.20.14.0 (2022-04).
Screen refreshes are quicker if I minimize all applications on the host, allowing it to repaint the desktop, then restore whatever I want to work on.

can't run the emulator in android studio 2.0

I wan't to use the camera in my application but when I ran the emulator it shows this:
And this is my setting:
Try this:
Right-click on the Desktop and click Nvidia Control Panel. Click
Manage 3D settings. Click Program Settings. Select SketchUp from the
drop-down list. There are five settings that you need to configure:
Anisotropic Filtering set to Application Controlled.
Antialiasing FxAA set to On.
Antialiasing Gamma set to On.
Antialiasing Mode set to Application Controlled.
Open GL set to the name of the video card that you have.
This might remedy the situation where you have incorrect OpenGL settings. However if you have an old card with a small amount of VRAM you might unfortunately be unable to run the emulator of that system.

App Bar in Windows Phone Universal App

I was trying to add App Bar in my Windows Phone Universal app. Here is the code that I have written on my Project:
<Page.BottomAppBar>
<CommandBar>
<AppBarButton Icon="Accept" Label="AppBarButton"/>
<AppBarButton Icon="Cancel" Label="AppBarButton"/>
</CommandBar>
</Page.BottomAppBar>
The App bar is showing properly in my Windows Phone and Windows Phone Emulator. But the problem that I faced is when I deployed the Windows version to the Local Machine and Simulator, there was no App Bar visible.
I have also tried the TopAppBar. The result was the same. Is there any way to add the App Bar which will work for both the Windows Phone and Local Machine?
Thanks in advance. :)
In Windows Store App, the BottomAppBar and TopAppBar are hidden by default. When you Right-Click your mouse, or Swipe from bottom or top edge on your screen. The BottomAppBar or TopAppBar will appear.
You can see it in Adding app bars (XAML) MSDN
You can set IsOpen property as True to show the app bar when the page loads.
<Page.BottomAppBar>
<CommandBar IsOpen="True">
<AppBarButton Icon="Accept" Label="AppBarButton"/>
<AppBarButton Icon="Cancel" Label="AppBarButton"/>
</CommandBar>
</Page.BottomAppBar>

Resources