Configure a startup URL for an Apple TV - apple-tv

I would like to configure an Apple TV so that every time it starts it should open a browser with a specific URL.
The usecase would be something like: If the TV is on but not used it should display some company information web page.
Is this possible and if it is can anyone please explain how?
I would like to do this without the need to develop an application or do any programing, just by using the existing features of an Apple TV.
Thanks,
Mihai

I also asked this on the Apple community forums and got the response there
https://discussions.apple.com/message/31634122?ac_cid=op123456#31634122
Indeed it is not possible with Apple TV 4.

Related

Create Samsung Smart TV Offline Application

I've been asked to create a Samsung Smart TV offline App but I really don't know what it means to Offline Application.
The client said me
The app has no GUI. It's not like a regular app. The TV will be
pointed to a URL. That URL has specific Samsung TV instructions to
download the files and when the TV has it, it will open the zip and
display the content as required.
I've setup the development environment and have studied about Samsung AppsFramework and learned how to start an application but really confusing about the offline Application.
Could anybody please make me understand that what the client does exactly want?
Thanks
What the client wants in my opinion is an app that can work on the smart TV without having to connect to the internet.
It would obviously need to connect to obtain the download files, but once the app is installed it will have offline functionality and not need to connect to the internet to run.
Have a look at http://electron.atom.io/ to build cross platform applications like this.
It is really difficult to say what they mean by offline as we dont have a brief. But offline generally refers to an app that has everything in the initial download. Example, a dictionary app will have all of the words and definitions in the download so they are always available even if the device is not connected.
Hope this helps
Samsung API provides interface for reading and writing files so you can download and store something for later offline use.
Alternatively you can use localStorage API.
The app has no GUI
This part is strange. Launched app occupy whole screen. You need some use-case description from client. Find out what problem is your client want to solve with this app.

How To Promote Google TV Only Application

I would like to know after I built an application for Google TV, how can I get the app listed under http://www.google.com/tv/apps.html, or does Google do anything to help promoting Google TV Only Apps? Since it takes a separate effort to design TV friendly UI and Navigation system, what can we do to make it more visible to Google TV users? Right now the Play Store is very messy and unorganized in a way or it might only because the country I am located.
You should contact the Google TV developer advocates. In particular, Les Vogel, or Krispy. In the past they have looked at apps and provided feedback. They have also helped to get interesting apps into the featured section of the Play Store on Google TV.
You might also consider joining the Sony Developer Network, which allows you to upload your app and have them test it on their Google TV devices. They provide a test report which will help to make your app better for the TV experience. If they like your app, they can also add it to their own featured app section of the Play Store on their Google TV devices.
There is a Google TV community on G+ where you can post about your app to get some feedback from users. Do a Google search and you will also find other forums that deal with Google TV and will help to get the word out about your app.
The best marketing tool is to have a web site for you app and provide a blog to tell users about updates and plans you have for the app. You should also create a YouTube video to show your app in action. Create pages on the various social networks so that users can follow your progress.
Nothing, featured apps are either apps for GTV that are very successful or apps that Google has picked. Currently there is no way of doing anything against that. But I guess Google will work on that if they will continue GTV.

Twitter / Facebook integration

I am on a mid way of porting an iPhone application to Windows Phone 7. In that iPhone application it is providing provision for submitting score details through Facebook / Twitter mail etc. So I need to implement the same functionality in WP7, too. How can I implement this functionality in my Windows Phone project?
While searching I found some methods with the help of web browser. But that is not useful in my case. In my app I need to log in through the the designed page and need to update the score status to the social networks through my own view.
Please help me to achieve the functionality in my app. (If anybody has sample apps or links please attach that information, too.)
You can use the ShareStatusTask to post to facebook, twitter msn etc.
ShareStatusTask shareStatusTask = new ShareStatusTask();
shareStatusTask.Status = "My Score: xxxx";
shareStatusTask.Show();
I don't know if it's exactly what you're looking for, but ScoreLoop provides a free high score system as well as social network integration for Windows Phone games. I'm currently migrating my homegrown scores systems to ScoreLoop, looks good so far.

Can't find iOS FaceTime protocol documentation

As per the title. I searched all through the Apple website, and cannot find anything about it. I am not an iPhone developer member (yet) so don't have access to that stuff. I just want to develop an Android application that can talk with the FaceTime protocol.
It would be a bit silly if we all had to pay Apple just to view the FaceTime documentation to implement the protocol in our non-iOS applications.
The docs for facetime are not yet available. You're not missing anything.
Apple has been unable to release it as an open standard because of the patent battle it lost.
There is community documentation of the protocol, including this series of blog posts:
Special Look: Face Time
part 1: Introduction
part 2: SIP and Data Streams
part 3: Call Connection Initialization
At least to get started, take a look at this for the list of IETF standards used by Facetime: http://blog.imtc.org/index.php/2010/06/09/the-technology-behind-apples-facetime-standards/
Additionally, Apple has said it will be submitting Facetime as an open standard - so there should be more documentation on how all these standards glue together in Facetime. . anyone know when this will come out?
Update
You don't have to pay to test on devices as of 2015. Payment is required to deploy on the app store, get beta access and sundry other stuff as per Apple's page
Original
You don't have to pay to get the SDK, just to be able to test on devices

iPhone-SDK: How to make iPhone format website?

Is it possible to make my own website as iPhone friendly format when user launches my website in an iPhone browser?
Currently if i launch my website in iPhone, it doesn't look more readable and i need to zoom it to see clearly. If i want to provide my website link will be more clear and readable with bold fonts and buttons ( moreover it is like iPhone friendly format) in the first launch itself in iPhone browser, how to make it success? I could able to see some third party websites like http://tringapps.com and all provide the same logic. How to achieve this and what should i do for that? Where to code?
Clave/
You'll need to make a separate version, or at the very least an extreme re-CSSing of your existing site.
Apple has some good tips on getting started here.
There are several toolkits to assist in developing the web apps as well, like this and even this.
There is a good book to get started. Building Applications for Mobile Safari
There are many PDFs available from Apple.