samsung-smart-tv

Google analytics for samsung smart tv app

对着背影说爱祢 提交于 2019-12-04 07:45:37
I have googling around for a day and found no proper solution to apply google analytics for smart tv app. I have tried these links but had no luck to crack the issue. Google Analytics and Samsung Smart TV Apps I dont want an iframe solution since it can be only used for pageviews not events. Currently iam working on 2011 and 2013 Tv and document.domain gives me "localhost" in 2011 and "" for 2013. Is there any proper way to implement google analytics without using iframe ? Thanks in advance. Okay thanks to @DamTo for a chat discussion that solved me my day. Manually sending GET/POST request

Samsung smart tv unique device identifier

十年热恋 提交于 2019-12-03 15:24:36
I'm trying to programmatically obtain some kind of unique device identifier from Samsung smart TV device. The closest thing i found in documentation is GetDUID function on SAMSUNG-INFOLINK-NNAVI object, but it requires to provide mac address which confuses me as to what purpose of this function really is. My question: how to obtain for example device serial number or other information that uniquely identifies it. Rui Posse Accordingly to SamsungDForum the way to get the DUID ("Device Unique ID") is: In index.html add: <object id='pluginNetwork' border=0 classid='clsid:SAMSUNG-INFOLINK-NETWORK'

Creating a single SmartTV app for multiple platforms?

你离开我真会死。 提交于 2019-12-02 19:39:44
I want to develop a SmartTV application for the GoogleTV platform and i've been browsing trough the GoogleTV Guidelines ( https://developers.google.com/tv/android/ ). However, i don't want GoogleTV to be my only platform. I also want the same app to work on devices like Samsung SmartTV and/or LG SmartTV. But do the guidelines from Google conflict with Samsung guidelines and does the code of my application need a lot of rework to work on other devices? I'm editing my answer. I just checked the Samsung website and, I'm happy to say, they threw out all the junk. They use to have a number of

Not getting proper logs in Samsung Tizen TV emulator

余生颓废 提交于 2019-12-02 05:51:11
I am using tizen IDE 2.4.0_Rev5 for development and running my apps on the Tizen TV emulator. The problem I am facing is that many of logs which have been put in the javascript file( using console.log('xyz') ) do not appear in the console while running the app or even if I launch the debugger, however some logs do come. For instance, I took the sample App for AV Player from here: https://github.com/Samsung/TizenTVApps/tree/master/TVDemoAvPlayer When I run the app, I and press play button, I get only the following logs: js/main.js (218) :Buffering Complete, Can play now! js/main.js (66)

Google Analytics and Samsung Smart TV Apps

╄→尐↘猪︶ㄣ 提交于 2019-11-30 14:11:54
I'm trying to integrate Google Analytics in my Smart TV Application. It is a Javascript based application, and I have tried all the solutions available on the SamsungDForum, but no one works. In the part of the main index.html file, I load Google Analytics: <script type='text/javascript' async='true' src='https://ssl.google-analytics.com/ga.js'></script> Then, I am tracking the page entrance: <script type='text/javascript'> var _gaq = _gaq || []; _gaq.push([ '_setAccount', 'UA-XXXXXXXX-X' ]); _gaq.push([ '_setCustomVar', 1, 'Device Information', 'Samsung Smart TV' ]); _gaq.push([ '

Samsung SmartTV ovelray (news ticker) application

浪尽此生 提交于 2019-11-30 07:58:40
Is there any way the application can run as an overlay (ticker) over the DVB program (i.e. live broadcast)? Currently the only working solution to display application as an overlay over part of the screen, we are aware of, is to start the application from TV SmartHub menu and display the overlay over the IP (usually HLS) stream. See for example here (http://en.wikipedia.org/wiki/File:CNBC_Closing_Bell.jpg) the CNBS ticker. We would like to develop the application like this... to display additional info over the DVB (or other) broadcast. Regards, STeN If you want to run application in a

Compile for Flash 10.1 in Flash Professional CS6

强颜欢笑 提交于 2019-11-30 07:01:58
I'm currently working on a project for a Samsung Smart TV. This project will require Flash, and the specifications state to compile for Flash 10.1 if I want to use it on the TV. However, I'm looking at the publishing options in Flash Professional CS6, and I'm only given the option for 10.3, instead of 10, 10.1, or whatever other subversions of Flash 10. (I'm given the options for Flash 9, 8, 11, and more, though). Is there any way to force CS6 to compile for Flash 10.1? Let me preface this by stating I don't have CS6; however, I assume it'd be the same as overlaying a player in previous

Compile for Flash 10.1 in Flash Professional CS6

故事扮演 提交于 2019-11-29 08:22:57
问题 I'm currently working on a project for a Samsung Smart TV. This project will require Flash, and the specifications state to compile for Flash 10.1 if I want to use it on the TV. However, I'm looking at the publishing options in Flash Professional CS6, and I'm only given the option for 10.3, instead of 10, 10.1, or whatever other subversions of Flash 10. (I'm given the options for Flash 9, 8, 11, and more, though). Is there any way to force CS6 to compile for Flash 10.1? 回答1: Let me preface

How to build & deploy a Samsung SmartTV app without the IDE (e.g: on Linux)

只愿长相守 提交于 2019-11-27 10:36:54
Problem: I'd like to try building a proof-of-concept app using the Samsung SmartTV SDK 2.5 (I have a 2011 model TV - UA55D8000). Unfortunaltely, the SDK comes in two varieties that only seem to work on Microsoft Windows. It's weird because there's no reason it should be the case: the televisions themselves run Linux and applications are written in JavaScript. This presents two problems: As I don't have Microsoft Windows at home, I can't use the build environment (nor the TV emulator) that come with the SDK. (The SDK files themselves are just JavaScript) Even if I had access to Windows, it's

Resetting the opacity of a child element - Maple Browser (Samsung TV App)

ぐ巨炮叔叔 提交于 2019-11-27 06:56:52
I have an issue with creating a transparent element which has a child element. Using this code the child element gets the opacity value from the parent element. I need to reset/set the child's element opacity to an arbitrary value. Browser of reference is Maple Browser (for a Samsung TV Application) . .video-caption { position: absolute; top:50px; width: 180px; height: 55px; background-color: #000; -khtml-opacity:.40; -moz-opacity:.40; -ms-filter:"alpha(opacity=40)"; filter:alpha(opacity=40); filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.4); /*just for testing*/ opacity:.40; }