Show wifi selection box on iOS - c++

I'm sure this is simple and covered before, but I'm clearly not looking for the right thing. When you open some apps, like Safari, iOS pops up a box asking you to select a wifi connection if you're not on wifi. I just want to do that.

It should pop up if you set the UIRequiresPersistentWifi key, and the user has Wifi enabled globally.

Related

Changing a connection password in Waton Studio Desktop V1.1

I need to change a DB2 for Z/OS connection password in my local windows Watson Studio Desktop (v1.1)
But it seems in Edit Connections, password field is greyed out and red circle bar displays when hovered over. What's the process to change the password? It's not in the documentation
The edit connection currently only allows modifying the connection name or description. This is tracked as an issue and will be addressed in the future. In order to 'change' the password you will need to delete and recreate the connection.

Debugging of Chromecast

I have implemented an Android application, which is for playing movies via GoogleCast. Everything works fine, but I need to enable a Chrome Remote Debugger.
I found an article here. I proceeded step by step according to instructions in this article, but I can see nothing in console.
IP address of my Chromecast is 10.0.0.36. In Chrome, I go to http://10.0.0.36:9222. The page is displayed and it looks like this:
I click on link Remote Debugging (AppEngine) and then I see the console. I type cast.receiver.logger.setLevelValue(cast.receiver.LoggerLevel.DEBUG); to this console.
According to instructions in article mentioned above, that's all and now it should work, but I can see anything in console.
Could you tell me, please, what I am doing wrong? Thank you.
In your URL bar, there should be a shield icon towards the right side. Click on that and enable scripts.

Google Glass GDK Voice Input doesn't work anymore since update to XE22

Since the last update of Google Glass I have a problem with voice commands. My app worked very well before the software update, but since it updated to XE22 the "ok glass" doesn't work anymore.
When I start the Glass and come to "ok Glass" screen, I can say "ok Glass" and the List of commads (Take a picture, Google, Make a call to, etc.) open. But then the voice input seems to freeze, when my applications are in this list too. The Glass doesn't react on "ok Glass" anymore. But this don't happen with all of my apps. Some of my apps are excepted, although I use the same way to define the keyword (e.g. like this: <trigger keyword="Open my Application" />).
The same problem occurs in the contextual menu. When I use only 3 contextual menu items, it works very well. But when I use more then 3 menu items the voice input freezes, too. Glass doesn't react on voice commands anymore and I need to restart Google Glass.
Before the update everything worked without any problems. I could start my apps in "ok Glass", as well as use contextual voice commands, which I have created exactly like here (https://developers.google.com/glass/develop/gdk/voice#using_unlisted_main_voice_commands).
Have anyone the same problem with the new software update, or does anyone know what to do? Did anything change in defining voice commands? I searched very long, but I didn't find anything.

Spotify Play button issues since Web Player introduction

Our website has been having some issues with the Spotify Play button since the Spotify Web player has come into existence.
There are 3 issues that I have noticed so far:
1) Have to click twice to get the track to play
Clicking the play button (when the Web player didn't exist) used to start the song playback in the background. Now on clicking the button, it first launches the web player (which is fine) but doesn't automatically start playing the music. It imports the playlist but that's all it does. It works only if the user manually presses play on the Web Player/ Clicks on the button the second time (bad from a usability perspective - left our users confused). Along with this, to confuse users further, The Play Button shows "The Track Cannot be played" when this happens. However, if you press on that track again (either from the play button or the actual web player), it works fine and the message goes away.
Tested on Chrome (OSX and Windows 7) , Safari (OSX)
Can be replicated here: http://partysen.se/event/5/tanmays-awesome-party/
2) Invalid OAuth Token
A possibly connected problem seen since the launch of the web player is the play button saying "Invalid OAuth Token" when trying to play something. I do not have much more information to replicate it, other than the fact that it started happening on Mac OSX once the web player was launched and I also installed the mac spotify app.
Tested on Chrome (OSX and Windows 7) , Safari (OSX)
3) Button asks for App Installation
Another issue : On clicking the play button a spotify web page asks for installation of the app. Also discussed here:
https://stackoverflow.com/questions/16348049/spotify-play-button-not-working-in-google-chrome
Noticed this only in Chrome in Mac OSX.
Questions
Is it possible to fix if the button uses the Desktop apps or the Web Player in the mean time ?
Can we get any more information regarding the OAuth Error described above?

Using a web site button control via C/++

I use www.jango.com as PC music player and want to steer it remotly via my smartphone. I have a server program for controling the PC and an app as client.
I want to use the server program for example to press the play/pause or fast forward button in jango.com running inside the chrome webbrowser.
A simple way would be to simulate a windows mouse click at a specified position within the chrome window. But it would have the disadvantage that it would only work if the jango tab is active and will of course fail if the site changes it's layout and probably due to a lot other reasons.
So I'm thinking about generating kind of the same http request as the browser does if one clicks the button for real. Or somehow accessing the html elemnt
Please consider thatm while having a C/++ background, I lack any web/JS programming skills and would be in favor keeping it this way as much as possible.
Thank you for any suggestions!
The solution is to use an user script for the musik player web site which is able to trigger the buttons in question. Than websockets can be used to communicate between the user script and the c++ server program.