palm-pre

Palm Pre frameworks

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 i...

Palm Pre not picking up embedded YouTube videos

I've embedded a YouTube video onto a site (built in drupal) using the embed code from the video's YouTube page. If I visit that page on an iPhone, it picks up the fact that there is a YouTube video and displays the icon that you click to pop open the video and watch it. If I visit the same page on a Palm Pre it just displays a blank ...

podcast for WebOS development?

Are there any podcasts for WebOS (Palm Mojo) development? ...

Is O'Reilly's WebOS book out of date?

The book Palm webOS -- The Insider's Guide to Developing Applications in JavaScript using the Palm Mojo Framework by O'Reilly was published in July, well before the Palm Pre was released, meaning that the authors used an early pre-release version of the OS. This leads me to wonder if the information is current enough. Does anyone have ...

Debugging web app on the palm pre?

I have a web app that works fine on desktop browsers, but struggles on the palm pre browser (via the emulator). How do I debug the app on the palm pre browser? There doesn't seem to be any error console, dom inspector, etc... I'd expect such tools from a web-app oriented phone. ...

how to play audio object in webOS

When I press a button I want to play audio object. Would you be able to give me some advice how to achieve that ? ...

Disable webOS Phone Links

I once had a problem where Safari for iPhone would add phone links to my HTML. This would break my code because it depended on the text value of <div id="DontTouchMyHTML">. Before: <div id="DontTouchMyHTML">8211812</div> After: <div id="DontTouchMyHTML"><a href="tel:8211812">8211812</a></div> So i added the magical meta fix for IE...

Opening photo application and rediret user to a scene while taping on particular image in palm webos

Hello, I need to open Photo Application in my own application means on the same Stage (Means If I press Esc key on the photo application then it should not minimized, my application should appear). Now after going to photo application, if I tap on an image then it should redirect me on a scene having image name or image reference. How to...

how to call web service by supplying credentials in Palm WebOS

Hello, I am able to call a web service that doesn't require server credentials. But I need to call a web service which require server credentials(username and password) for authentication. How to call this type of web services by supplying appropriate credentials using Ajax.Request or any other method in Palm WebOS. Any help would be hig...

how to convert image into bytes (like byte array in .Net) using javascript in Palm WebOS

Hello, In Palm WebOs I need to convert an image into bytes (like byte array in .Net) to pass it as a parameter to a web service, where I can convert back this bytes data to image and save on server. Please help me to convert image into string variable or any other format to send it to the web service using javascript or jquery in palm we...

Using palm mojo on web pages?

I want to customize my web page for Palm pre. Is the a way to use Mojo in web pages for palm pre? Can I for example use a Mojo picker or a scroll tag? ...

How to use jquery in palm mojo?

How do I do to be able to use jquery in my palm mojo application? ...

How to set default language in WebOs

How can I set the dault language of an WebOs project? The standard way of adding internationalization in WebOS is to use the $L() function, where I can set a key to the translated string. But if the current language ist not specified in the project WebOS displays the key to the user. How can I stopp this behaviour and set a default langu...

How to view console.log output when running javascript app in Palm Pre browser

I'm trying to debug a javascript-heavy webapp running on the Palm Pre browser. There are various useful debugging messages that the app will output to console.log(). This app was not built specifically for the Palm Pre but runs great on other Webkit-based browsers such as Safari. How can I view the output of console.log from the Web a...

Orientation Questions - palm pre webos

Just a couple of quick questions...not too hard to answer hopefully! How do I set the allowed orientation from scene to scene? I can set it for the entire stage with: this.controller.setWindowOrientation("free"); but I want to be able to set it for each scene, some of which I don't want any rotation... Any ideas? Also, is there any...

Palm Pre window.scrollY property in Javascript?

Is it possible to get the window.scrollY property in Javascript on the Palm Pre? Doesn't seem to be but maybe there is a secret Palm-ish way? I've tried: var y = window.scrollY; var y = jQuery(window).scrollTop(); Neither seem to work. Anyone know the answer? ...

Fine-Grain Timing in WebOS

I'm looking to build a program that works within soft real-time schedules; to do this, I need to generate a timing event at an interval significantly less than a second. Is there an API that exposes fine-grain timers in WebOS? ...

When will palm's push notification go live? What are the alternatives right now?

When will palm's push notification go live? What are the alternatives right now? We are in development of an app that needs push notification to function otherwise it will just not work. What should we do? ...

Can any Palm Pre be used for development?

We're about to start developing software for the Palm, using WebOS. Though an emulator is available for testing, I always feel more confident seeing it run on a physical device as well. I can't find anywhere on Palm's website that tells me whether I can just buy an off-the-shelf Palm Pre and run my app on it, or if I have to buy one wi...

How to specify which app I want from a list of apps in the Palm pre Launcher

This would obviously begin with the applicationManager, as in the example represented, "palm://com.palm.applicationManager/listLaunchPoints". The listLaunchPoints is the method used to get all apps listed in the Launcher as I understand. What I really need to know is how to specify a particular appllication from the list and access it fo...