Post not yet marked as solved
Hi Team, I used below code to get active window details. but unable to find title of it. Can you please help me on it.
C# based code in Mac
var foreground_app = NSWorkspace.SharedWorkspace.FrontmostApplication;
foreground_app contains active application details. but i am not able to identify active window details
. guide me which property or function i need to use to get active window title details
EX: i opened Numbers, below condition will trigger
if(foreground_app.LocalizedName.ToLower().Contains("numbers"))
{
///
}
Post not yet marked as solved
Before upgrading to iOS 15 I was able with the paid developer account to sign and install 3rd party applications such as MAME and play them on my iPhone, but now I am not. Why?
Post not yet marked as solved
I'm using Wine for running Windows app/games on MacOS, and testing if input method working well in Wine apps.
When trying to type word with SCIM and Wine, candidate list can't be displayed, instead, I get error message in Console from SCIM_Extension as below:
warning: attempt to begin free window rendezvous for <IMKUIPanel: 0x7fd166f52890> failed due to Error Domain=com.apple.ViewBridge Code=23 "(null)" UserInfo={com.apple.ViewBridge.error.hint=description not found, com.apple.ViewBridge.error.description=NSViewBridgeHostAbsentError}
It seems only a display-related problem, for candidate navigation and submission working well even if it can't be seen.
This problem is permanent in MacOS native input methods using CoreChineseEngine framework of Big Sur 11.6 and Monterey 12.1, but not seen in 3rd-party input methods using InputMethodKit such as hallelujahIM and squirrel.
I believe bug lies in Wine implementation of NSPanel or NSApplicationDelegate. But I need some clarification from someone in Apple, about the cause of NSViewBridgeHostAbsentError, and advices for next step troubleshooting, if possible.
Many thanks.
Post not yet marked as solved
Hello,
Is there a way programmatically(using c++ or other language) to extract IMEI through USB
We need it instead of typing the IMEI number manually
Thanks in advanced
Post not yet marked as solved
Hello,
In Short: add a way to use the text prediction from the Accessibility Keyboard using the regular keyboard. (for example: remap the row number keys.)
Explanation: mac's on-screen keyboard has some great features for people with accessibility needs: it is static on the screen, present the typed text in a big font and suggest words. The problem is that the physical keyboard can't use the word suggestion. some of us (accessibility users) can benefit from text prediction using a keyboard, like in any IDE (for programmers) or iPhone keyboard. We are more comfortable using a keyboard than a mouse.
By the way: Microsoft Windows's implementation is lacking, as it requires the use of the "up arrow+enter" which is small and far from the center of the keyboard, therefore hard to reach while typing fast, but at least there is something :-)
in that case a keyboard macro can help to remap the row number into "up+up...+enter".
I have tried to develop it without success. my problem is that I can't find a way to interact with the accessibility keyboard. remapping keys to run a script is the easier part.
Thank you for helping make Apple more accessible.