Is it possible to save a web page for one tap access on Apple watch? - watchos

I have a simple web page with a button that turns a light on and off via Raspberry Pi.
On Samsung watch 4 I can save the page as a bookmark and add it as a tile to my watch.
Is there no way to do this on Apple watch? I can text the link and access it on the Apple but cannot figure out how to save it

Related

Speechly PushToTalk Button had a broken image and is not capturing voice

Working with the Speechly Voice API and the PushToTalk Button is displaying a broken mic image and not capturing my voice, It also does not appear to be using the microphone as it doesn't request for microphone permissions when the button is clicked. I've already tried installing the latest version as someone suggested in another post I saw but it still isn't working picture of what the button looks like

Save screenshots on tvOS

The question is very simple, but i haven't found an answer.
How can i take a screenshot on tvOS?
In simulator is straightforward, just File -> Save Screenshot, but on a real device?
I already tried some combination of buttons, but nothing happened.
Let me know. Thank you.
With the Apple TV connected to your development machine via USB.
Steps
In XCode from the menu Window -> Devices
Select the Apple TV on the left representing your device.
On the device, configure the screen the way you want to capture it.
Click the Take Screenshot button.
It will save the screenshot to your development Mac
The new screenshot appears on the desktop.
For reference:
https://developer.apple.com/library/ios/recipes/xcode_help-devices_organizer/articles/capture_screenshots_from_device.html

Accessing the camera instance online

I just want to know, is it possible to open camera instance and take a picture online.
in other words, if i have an app has an access to the internet can i create a button to open the camera and take a picture while i'm being online?
Why not instead just use the toImage() function of all views (including a WebView) that Titanium provides. This will give you a screenshot.

Overlay over multiple pages on Windows Phone 8

I trying to build a Windows Phone 8 Application which is able to sync data from a webservice.
While I'm syncing the data I want to display a little Popup / overlay / flyout but I still want to be able to navigate between my pages while my overlay persists between this pages.
I did this successfully with a Windows RT App: I simply added a Frame-Control on a RootPage which also display the flyout. I navigated then within this frame and the flyout was always there.
How can I achieve this goal within a Windows Phone 8 Application?
You can do it as you did on Windows8 which is to restyle the ``RootApplicationFrame to add your indicator. For an example see http://www.jeff.wilcox.name/2011/07/creating-a-global-progressindicator-experience-using-the-windows-phone-7-1-sdk-beta-2/
Or you could just use the progress indicator in the system tray of the page to add indication there. This is probably the most common approach taken in apps. See how at http://blog.duc.as/2011/10/08/using-the-system-tray-to-show-progress-in-windows-phone-7-mango/

Screenshot into AIR application

Is there away to copy a screenshot directly into an Adobe Air (2) application?
Kinda like this: User presses the "print screen" button and the screenshot shows up in the app.
Also I'ld like to know if pasting via keyboard or right-click work for that?
I'm new too AIR.
Best, John
Yes, it can be done.
But no, not directly from Air, unless you wish to capture parts of your own AIR UI (which should be no problem as these are within the scope of the AIR Application)
To capture the whole screen you would need to use an ANE (Adobe Native Extension) which can be written
both for iOS and Android devices and used from within AIR via an API.
Introduction to ANE Development:http://help.adobe.com/en_US/air/extensions/air_extensions.pdf
The following post discusses on the way by which an Air ANE can capture a screenshot (which is technical and relevant for developing such an ANE for Android)
How Native Extension take screenshot on Android device?
Other then this you might try a workaround, that is, instructing the user to capture using his own device's capture combination, then simply ask them to select the file from the Gallery, if indeed this is your intention...?