citrix receiver connection bar - windows

I started a Citrix Published App on my IPad and get a citrix receiver toolbar which contains the Icons home, Active keys, ... Pointer, Magnifier on top of the screen.
On my Windows 10 tablet device, after setting ConnectionBar=1 in ica file, I also get a toolbar, but it contains different Icons. It does not contain the icons Pointer and Magnifier, which I need. Some Icons are contained in both OS's, e.g. home.
--> Is there a general difference between Windows and Mac Citrix Receiver or can I set this Icons to be displayed anyhow?
Best regards

Pointer and Magnifier have been introduced for the “new” iPad to deal with higher resolution screens - so yes, they're specific gestures of Citrix Receiver for iOS, as per Citrix documentation.
More generally speaking, in Windows 10 Magnifier is yet another of the Windows Ease of Access features (whilst in Desktop with a keyboard you could quickly open it by using the keyboard shortcut Windows key with the plus sign (+) to zoom, as suggested in windowscentral and in microsoft links, notice the "Use Magnifier with a touchscreen" paragraph in the latter).
In case of tablet and Citrix Receiver for HTML5, please refer to the recent Citrix blog: this release adds support for mobile gestures and multi-touch. Now, you can pinch and zoom, etc...

Related

Can we add keyboard shortcuts in ARC app

How can we add keyboard shortcuts in Google Chrome ARC app? As ARC apps now work on desktop Chrome browser, it is a must to have for desktop clients.
Try using android's KeyListener to catch KeyEvents, or https://developer.android.com/training/keyboard-input/commands.html as a reference.
If you want to handle keyboard events outside of a editable control then using a KeyEvent.callback is recommended.
I have not verified this ability, but merely assuming that ARC apps interact with the keyboard just like android apps do.

How to unhide the cursor without changing the application

I need to do a pre-purchase evaluation of a Flash application that is intended for a touch screen.
Since I still don't have the touchscreen now, I need to run the application on my desktop computer and the application is unusable without a visible cursor.
I am using Windows.
Is there a way to unhide the cursor without asking the developers to change the application?
I've previously used remote access software (such as Windows Remote Desktop or TeamViewer) for this purpose. Another option is a virtual machine - in both cases you'll be able to see the cursor on the local/host machine.
If you happen to be on a Windows 8 machine, you might give a try to the Windows Simulator (http://blogs.msdn.com/b/visualstudio/archive/2011/09/29/first-look-at-windows-simulator.aspx, available for free with Visual Studio Express) that additionally simulates multitouch gestures such as pinch/rotate with only a mouse.
A few other ideas:
1) You can try using the "Show location of pointer when I press the CTRL key" mouse visibility property (Control Panel - Hardware and Sound - Devices and Printers - Mouse - Pointer options). Although not entirely convenient, it might help you if the application doesn't require quick response times.
2) If the application is distributed as a .swf file and the right button hasn't been disabled, sometimes right-clicking (anywhere in the application) to bring up the context menu will cause the cursor to show up and remain visible.

Tailoring Windows store app for Fair

I'm developing a app that will be available at a regional fair and the public will use it to quickly download "perks" to theirs pen-drives. BUT when you move your mouse to the top-right corner of the screen a "menu" appears (there's a similar thing on tablets) and it enables the user to quit/switch-out-of my app, and that I can't allow! How do I block that?
You have to wait for Windows 8.1 i.e. 18th October. 8.1 offers such thing to manage. Moreover it also offers kiosk mode. Through which you can allow only one app to be open on top most.
Source
This is not under the control of your application, it's a feature of the operating system. And as far as I know, there's no way to block it. Typically such changes would be done through group policy settings, but at least in Windows 8, there's no such control available. I'm not sure about Windows 8.1, although I haven't stumbled upon any mention of such features there, either.
Also, this is not the only way for the user to switch out of your application. He could also drag the app down from the top and close it or go to the lower bottom corner to open the start screen, if he's using the mouse. The keyboard would give him even more options, of course.

Mac SDK Fullscreen with numerous windows

I am making an app that has fullscreen support (enabled via interface builder). The app has another NSWindow that appears from time to time as a sort of 'inspector' like in pages and such. However when the primary window goes fullscreen, the secondary one does not accompany it, and I have to go back to my desktop to see it.
Is there a way of fixing this? i.e. when Safari is fullscreen, you can open the activity window and it accompanies safari in fullscreen mode. Thanks a lot!
If you've actually built an inspector-style panel window (e.g., by dragging a Panel or HUD Window from the Xcode object library into your nib), it will automatically accompany the primary window in fullscreen.
I believe the minimum requirements are that:
collectionBehavior includes NSWindowCollectionBehaviorFullScreenAuxiliary
collectionBehavior does not include NSWindowCollectionBehaviorFullScreenPrimary
either collectionBehavior includes NSWindowCollectionBehaviorTransient or level >= NSFloatingWindowLevel
If you read the documentation on full-screen mode, most of this is explained, although a few details (e.g., when these values are checked…) need to be discovered through trial and error.

Mac OS X vs. Windows mouse wheel scrolling

Mac OS X determines what area to scroll by the mouse position. Windows does this by what application is active.
So I thought anyway. If Notepad++ is the active application in Windows, I can scroll underlying applications by placing the mouse pointer on them. But this seems like the only application with this behaviour. Windows Explorer (Win7) doesn't even allow scrolling in the side pane if the pane is not active.
My question is, can this be controlled by developers, and why is Windows behaving like this? I am not about to make a Windows application, but as a developer this makes me curious (and annoyed).
There are a number of applications that do the focus-window-under-mouse, but I like Alt-Drag: http://code.google.com/p/altdrag/
Since the code is Open Source, you may find something reusable there.

Resources