Display Touch Screen Keyboard in Windows Tablet through Unity 3D - windows-8

I am creating a registration page in my game in Unity. Data related features are working fine, but I am not getting the keyboard to Pop Up automatically/programatically when TextField is clicked.
Is touch screen keyboard support available in Unity for Windows 8 Tablet? I have searched a lot of forums but did not get the solution. All say that this feature is not provided for Windows yet.
I read a solution on Unity's Documentation for Android and IOS, but nothing is available for Windows.
I tried:
Keyboard = TouchScreenKeyboard.Open("",TouchScreenKeyboardType.Default,false,false,true);
But this is not allowing me to create a build for Windows Store. Shows me an error:
Assets\Script\RegiPage.cs(15,10): error CS0246: The type or namespace name 'TouchScreenKeyboard' could not be found (are you missing a using directive or an assembly reference?)
Please help. Thanks in Advance

Currently, you cannot do the function you are looking for .
http://forum.unity3d.com/threads/186697-No-Keyboard-on-Windows-8

Related

Compose Desktop: How to Access Extended Material Icon Set?

I am making an app using Compose for Desktop. I am trying to include a simple file download Icon that I know is included in the lengthy set of Material Icons, however it is not available under Icons.Filled. Some of the icons included, in my opinion, are nowhere near as commonly used as download... go figure.
I know that Compose for Android has a dependency for an extended set of Material Icons. I tried adding that dependency to my Desktop app, but it threw errors at me.
For now I have added a Feather Icons set courtesy of DevSrSouza, but I would like to know if there is a way to access the Material Icons extension in Compose for Desktop? Thanks.
I guess you have already found the answer but I also had this problem for long time, so here is a right dependency for compose desktop: "org.jetbrains.compose.material:material-icons-extended-desktop:$compose_version"

How to solve _OBJC_CLASS_$ reference error

We have a standalone video playback app, in which we have Chromecast working fine. Now we are trying to convert this app as a framework and add it in the parent app.
While building framework, reference error pops up. If I comment out the code in RNGoogleCast.m, where these classes [see attached image] are referenced then the framework builds successfully and works fine with parent app. With commented code, I don't see the chromecast button while playing video.
In Build Setting of Framework, other linker flags set to -ObjC. If I remove it or keep the same value as an app, then frameworks build successfully but don't work with the parent app.
Please let me know if you need more information from the app or framework.
Can someone help me to get rid of these errors and get the chromecast button enabled while playing video?
Also, raised issue here: https://github.com/react-native-google-cast/react-native-google-cast/issues/126
Linker errors come when you're trying to use certain classes and the linker doesn't know where they come from. Chances are, you imported the correct header files, but you have not added linked frameworks/libraries that contain the GCK* classes.
To fix this issue, you should go to your project settings, then build phases. Open the dropdown menu "Link Binary With Libraries", and from here you can click the plus to add the framework/library. In your case, I believe it's GoogleCast.framework. With Cast, there are a few extra steps listed here: https://developers.google.com/cast/docs/ios_sender

Worklight v6.0 Mobile view issue

When i use the Rich Page Editor with an existing project migrated from v5.0.6 workspace, i can't see any view in the "Mobile View" panel. Furthermore, i can't add any new views...
When i click on a list item of my app in the WYSIWYG Panel, i got an error:
An error has occurred. See error log for more details.
com.ibm.etools.rpe.jquery.internal.mobilenavigation.JQueryMobilePanel cannot be cast to com.ibm.etools.rpe.jquery.internal.mobilenavigation.JQueryMobilePage
sometimes and randomly, others of my apps are working well.
What can block the generation of the mobile view generation?
Is your project using JQuery at all? Or it is just Dojo?
Could you give a sample of a page where you see this error?

How to know when an input field is focused from a QML Webview in Qt5

I'm working on an UI in QML for an embedded linux (for now raspberry pi/raspbian, but the HW will change pretty soon). I'm using Qt 5.0.2
I integrated a QWebKit browser using the QML WebView.
I want to be able to know when an input field is focused, I found some solutions using JS (using addJavaScriptObject or evaluateJavaScript) but all of them are working for Qt4.7/4.8 and Qt5 seems to have drastically cut the number of usable methods for the QML WebView.
Do you know a way to get this information? can we do it directly in the QML files?
Thx,
Arthur

"VerifyError: Error #1014: Class flash.data::SQLConnection could not be found" after adding SQLite code

I'm working on a mobile AIR app using Flash Pro CS6 and FlashDevelop 4.3.0.
After adding SQLite to my app and trying to use the FlashDevelop debugger, FlashDevelop shows this error in the Output panel:
"VerifyError: Error #1014: Class flash.data::SQLConnection could not be found.".
I guess the problem is that I'm mixing several software products here, but everything worked great until the addition on SQLite code. Any suggestions on how to fix this?