webos

LG WEBOS : Could not connect to the device, please check the device connection

徘徊边缘 提交于 2019-12-11 02:24:33
问题 I've followed everything here step by step : App Testing on webOS TV But I still can't seem to connect using either the webOS CLI or the webOS IDE. I get the following error: Via the IDE : Could not connect to the device "name", please check the device connection. Via webOs CLI : ares-install ERR! ares-install: Error: Please check the device IP address or port. I see the device listed : ares-setup-device --list emulator developer@127.0.0.1:6622 ssh tv lgtv_ prisoner@10.188.20.165:9922 ssh tv

Javascript Binding SQL results to a function

别来无恙 提交于 2019-12-11 01:40:41
问题 All, I am working with WebOS enyo, but having a really senior moment.... Basically the fact its enyo has no relation to my question however... I have a method: clickPopulate: function(){ // Do some SQL }; I am using a database class to handle my SQL lite Db connection, the interface for the method i am using is: * Execute an arbitrary SQL command on the database. * * If you need to execute multiple commands in a transaction, use queries() * * Parameters: * - sql (string or query object,

How to use jquery in palm mojo?

最后都变了- 提交于 2019-12-08 03:22:26
问题 How do I do to be able to use jquery in my palm mojo application? 回答1: Check out this question, especially the comments. Edit in response to the comments: I don't know about Palm development so I can't help you out in detail. Mojo however is based on Prototype. Prototype and JQuery crash because they have identical function names. That's where the noConflict plugin comes in. You can read up on it here and get it here. That's about all I can tell you about it - maybe somebody else can take you

Palm Pre frameworks

 ̄綄美尐妖づ 提交于 2019-12-07 06:19:44
问题 I have some measure of web development experience (not my main skill, but I am pretty good with the basics) What I'm sorely lacking is knowledge of and experience with modern JS frameworks (Prototype, jQuery, YUI, whatnot). I'd like to play with them (all eventually but need to start with one). Here's the problem: I'm very interested in trying out my skills on Palm Pre eventually. To the extent that the main criteria for choosing which JS framework to learn first for me is this: Which

How to use jquery in palm mojo?

穿精又带淫゛_ 提交于 2019-12-06 09:38:56
How do I do to be able to use jquery in my palm mojo application? Pekka supports GoFundMonica Check out this question , especially the comments. Edit in response to the comments: I don't know about Palm development so I can't help you out in detail. Mojo however is based on Prototype. Prototype and JQuery crash because they have identical function names. That's where the noConflict plugin comes in. You can read up on it here and get it here . That's about all I can tell you about it - maybe somebody else can take you through the process step by step. Import Mojo Import jQuery Create a Script

Palm Pre frameworks

依然范特西╮ 提交于 2019-12-05 11:44:17
I have some measure of web development experience (not my main skill, but I am pretty good with the basics) What I'm sorely lacking is knowledge of and experience with modern JS frameworks (Prototype, jQuery, YUI, whatnot). I'd like to play with them (all eventually but need to start with one). Here's the problem: I'm very interested in trying out my skills on Palm Pre eventually. To the extent that the main criteria for choosing which JS framework to learn first for me is this: Which mainstream modern JS framework is the most useful to learn if the main criteria is "knowing this will help me

Can YouTube be embedded in Android Applications? How about WebOS or Blackberry?

↘锁芯ラ 提交于 2019-12-05 05:35:34
问题 Can YouTube videos be played from within an AndroidOS without launching the separate YouTube player? How about WebOS or Blackberry? On the iPhone I can do this with a WebView and the embedded YouTube code and I'm weighing the possibility of porting my app to other mobile platforms. Thanks 回答1: Yes. webview.setPluginsEnabled(true); 回答2: You can launch the webOS YouTube player from your app in a separate card using code like: launchYouTube: function(mediaURL) { var params = { target: mediaURL,

How to take a picture using command line on webOS on HP touchpad?

女生的网名这么多〃 提交于 2019-12-04 11:58:01
on webos, I have openssh running and would like to take a picture using the command line script. I suspect this is going to include some luna-send command, or alternatively a gst-launch But I am not having any luck with the docs. webos doesn't have any of the expected capture tools, but I can access the /dev/video0 device. Edit: i noticed that the touchpad has the ffmpeg utility installed, but it doesn't recognise the video4linux2 format So far, I am trying Gopherkhan's suggestions with the following code; luna-send -n 1 palm://com.palm.mediad.MediaCapture/startImageCapture \ '{"path":"/media

Enable developer mode on LG WebOS tv

廉价感情. 提交于 2019-12-04 08:29:59
I'm developing a simple app on a LG webOS smart TV. Since I had no luck running my app from the usb drive, I'm trying to use the developer mode from Eclipse IDE. The thing is: I've added a new target configuration, pointing to the physical TV ip. When I try to connect, a passphrase is required. I've tried something like 123456 A pop up appears: "Please verify the properties on the target and also make sure the key server in Developer mode app is ON in TV" How do I enable Developer Mode on these TV? dbexec With webOS 2 only some specific TVs where enable to debug and run apps on 22 January 2016

Can YouTube be embedded in Android Applications? How about WebOS or Blackberry?

痴心易碎 提交于 2019-12-03 21:19:52
Can YouTube videos be played from within an AndroidOS without launching the separate YouTube player? How about WebOS or Blackberry? On the iPhone I can do this with a WebView and the embedded YouTube code and I'm weighing the possibility of porting my app to other mobile platforms. Thanks Yes. webview.setPluginsEnabled(true); You can launch the webOS YouTube player from your app in a separate card using code like: launchYouTube: function(mediaURL) { var params = { target: mediaURL, direct: true }; this.controller.serviceRequest('palm://com.palm.applicationManager', { method:'launch',