<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kyle Shiflett: Palm Pre Apps</title>
	<atom:link href="http://www.kyleshiflett.com/palmpre/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kyleshiflett.com/palmpre</link>
	<description>Apps for the Palm Pre smartphone</description>
	<lastBuildDate>Sat, 08 Aug 2009 03:17:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>preDevCamp: Intro To Developing for WebOS: Code 4</title>
		<link>http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-4</link>
		<comments>http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-4#comments</comments>
		<pubDate>Sat, 08 Aug 2009 02:58:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[preDevCamp]]></category>

		<guid isPermaLink="false">http://www.kyleshiflett.com/palmpre/?p=63</guid>
		<description><![CDATA[HelloAssistant.prototype.setup = function() {

// set the initial total and display it
 this.total=0;
 this.controller.get('count').update(this.total);

// a local object for button attributes
 this.buttonAttributes = {};

// a local object for button model
 this.buttonModel = {
 buttonLabel : 'TAP HERE',
 buttonClass : '',
 disabled : false
 };

// set up the button
 this.controller.setupWidget("MyButton", this.buttonAttributes, this.buttonModel);
// bind the button to its handler
 [...]]]></description>
			<content:encoded><![CDATA[<pre>HelloAssistant.prototype.setup = function() {

// set the initial total and display it
 this.total=0;
 this.controller.get('count').update(this.total);

// a local object for button attributes
 this.buttonAttributes = {};

// a local object for button model
 this.buttonModel = {
 buttonLabel : 'TAP HERE',
 buttonClass : '',
 disabled : false
 };

// set up the button
 this.controller.setupWidget("MyButton", this.buttonAttributes, this.buttonModel);
// bind the button to its handler
 Mojo.Event.listen(this.controller.get('MyButton'), Mojo.Event.tap, this.handleButtonPress.bind(this));
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>preDevCamp: Intro To Developing for WebOS: Code 3</title>
		<link>http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-3</link>
		<comments>http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-3#comments</comments>
		<pubDate>Sat, 08 Aug 2009 02:50:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[preDevCamp]]></category>

		<guid isPermaLink="false">http://www.kyleshiflett.com/palmpre/?p=45</guid>
		<description><![CDATA[HelloAssistant.prototype.handleButtonPress = function(event){
// increment the total and update the display
 this.total++;
 this.controller.get('count').update(this.total);
}
]]></description>
			<content:encoded><![CDATA[<pre>HelloAssistant.prototype.handleButtonPress = function(event){
// increment the total and update the display
 this.total++;
 this.controller.get('count').update(this.total);
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>preDevCamp: Intro To Developing for WebOS: Code 2</title>
		<link>http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-2</link>
		<comments>http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-2#comments</comments>
		<pubDate>Sat, 08 Aug 2009 02:48:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[preDevCamp]]></category>

		<guid isPermaLink="false">http://www.kyleshiflett.com/palmpre/?p=43</guid>
		<description><![CDATA[this.controller.pushScene('first');
]]></description>
			<content:encoded><![CDATA[<pre>this.controller.pushScene('first');</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>preDevCamp: Intro to Developing for WebOS</title>
		<link>http://www.kyleshiflett.com/palmpre/articles/predevcamp-intro-to-webos</link>
		<comments>http://www.kyleshiflett.com/palmpre/articles/predevcamp-intro-to-webos#comments</comments>
		<pubDate>Sat, 08 Aug 2009 02:45:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[preDevCamp]]></category>

		<guid isPermaLink="false">http://www.kyleshiflett.com/palmpre/?p=30</guid>
		<description><![CDATA[Here are the commands for the presentation:
palm-generate -p "{title:'Hello Atlanta', id:org.predevcamp.atlanta.hello, version:'1.0.0'}" HelloAtlanta

palm-package HelloAtlanta

palm-install org.predevcamp.atlanta.hello_1.0.0_all.ipk

palm-generate -t new_scene -p "name:Hello" HelloAtlanta
Here are the code snippits for the presentation:
Code Snippit 1 (hello-scene.html)
Code Snippit 2 (stage-assistant.js)
Code Snippit 3 (hello-assistant.js)
Code Snippit 4 (hello-assistant.js)
]]></description>
			<content:encoded><![CDATA[<p>Here are the commands for the presentation:</p>
<pre>palm-generate -p "{title:'Hello Atlanta', id:org.predevcamp.atlanta.hello, version:'1.0.0'}" HelloAtlanta

palm-package HelloAtlanta

palm-install org.predevcamp.atlanta.hello_1.0.0_all.ipk

palm-generate -t new_scene -p "name:Hello" HelloAtlanta</pre>
<p>Here are the code snippits for the presentation:</p>
<p><a href="http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-1" target="_self">Code Snippit 1</a> (hello-scene.html)</p>
<p><a href="http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-2" target="_self">Code Snippit 2</a> (stage-assistant.js)</p>
<p><a href="http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-3" target="_self">Code Snippit 3</a> (hello-assistant.js)</p>
<p><a href="../articles/predevcamp-webos-code-4" target="_self">Code Snippit 4</a> (hello-assistant.js)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kyleshiflett.com/palmpre/articles/predevcamp-intro-to-webos/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>preDevCamp: Intro To Developing for WebOS: Code 1</title>
		<link>http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-1</link>
		<comments>http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-1#comments</comments>
		<pubDate>Sat, 08 Aug 2009 02:43:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[preDevCamp]]></category>

		<guid isPermaLink="false">http://www.kyleshiflett.com/palmpre/?p=37</guid>
		<description><![CDATA[&#60;div id="main"&#62;
 &#60;div&#62;Header&#60;/div&#62;
 &#60;div id="count"&#62;0&#60;/div&#62;
 &#60;div id="MyButton" name="MyButton1" x-mojo-element="Button"&#62;&#60;/div&#62;
&#60;/div&#62;
]]></description>
			<content:encoded><![CDATA[<pre>&lt;div id="main"&gt;
 &lt;div&gt;Header&lt;/div&gt;
 &lt;div id="count"&gt;0&lt;/div&gt;
 &lt;div id="MyButton" name="MyButton1" x-mojo-element="Button"&gt;&lt;/div&gt;
&lt;/div&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.kyleshiflett.com/palmpre/articles/predevcamp-webos-code-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>easyShop Help</title>
		<link>http://www.kyleshiflett.com/palmpre/articles/easyshop-help</link>
		<comments>http://www.kyleshiflett.com/palmpre/articles/easyshop-help#comments</comments>
		<pubDate>Sun, 26 Jul 2009 21:34:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[easyShop Help]]></category>
		<category><![CDATA[easyShop]]></category>
		<category><![CDATA[palm]]></category>
		<category><![CDATA[palmpre]]></category>
		<category><![CDATA[pre]]></category>

		<guid isPermaLink="false">http://www.kyleshiflett.com/palmpre/?p=21</guid>
		<description><![CDATA[easyShop has a 3 primary screens.

Stores
Items
Shopping List

To set up the stores where you shop, tap the &#8220;Stores&#8221; button at the bottom of the screen. To add a new store, tap the &#8220;add&#8221; (+) icon in the bottom left corner of the screen.
Stores
To set up the stores where you shop, tap the &#8220;Stores&#8221; button at the [...]]]></description>
			<content:encoded><![CDATA[<p>easyShop has a 3 primary screens.</p>
<ul>
<li>Stores</li>
<li>Items</li>
<li>Shopping List</li>
</ul>
<p>To set up the stores where you shop, tap the &#8220;Stores&#8221; button at the bottom of the screen. To add a new store, tap the &#8220;add&#8221; (+) icon in the bottom left corner of the screen.</p>
<h1>Stores</h1>
<p>To set up the stores where you shop, tap the &#8220;Stores&#8221; button at the bottom of the screen. To add a new store, tap the &#8220;add&#8221; (+) icon in the bottom left corner of the screen.</p>
<h1>Stores: Editing</h1>
<p>To edit an existing store&#8217;s name or aisles, tap the store name in the stores list. From the &#8220;Edit Store&#8221; screen, tap and hold the store name until the editing cursor appears to rename a store.</p>
<h1>Stores: Adding Aisles</h1>
<p>To add a new aisle, tap the &#8220;add&#8221; (+) icon in the bottom left corner of the &#8220;Edit Store&#8221; screen. To edit an existing aisle, tap the aisle name in the aisle list.</p>
<p class="helpNote">Aisles may be used for store aisles or store areas. Using store areas is particularly useful for smaller stores or areas of a store such as &#8220;Produce&#8221; that may not have numbered or named aisles.</p>
<h1>Stores: Reordering Aisles</h1>
<p>To order your aisles, tap and hold an aisle name in the aisle list until the aisle is highlighted. Drag the item up or down in the aisle list and drop it in the desired location.</p>
<p>When finished editing a store and associated aisles, use the back gesture to return to the &#8220;Stores&#8221; screen.</p>
<h1>Items</h1>
<p>To add items, tap the &#8220;Items&#8221; button at the bottom of the screen. To add a new item, tap the &#8220;add&#8221; (+) icon in the bottom left corner of the screen.&gt;/p&gt;</p>
<p class="helpNote">To quickly add an existing item to your shopping list, tap the checkbox next to the item on the &#8220;Items&#8221; screen.</p>
<h1>Items: Editing</h1>
<p>To edit an existing item, tap the item name in the stores list. To rename an item, tap and hold the item name on the &#8220;Edit Item&#8221; screen until the editing cursor appears.</p>
<h1>Items: Assigning an Aisle</h1>
<p>To assign an aisle to an item, tap the Aisle label on the &#8220;Stores&#8221; list on the &#8220;Edit Item&#8221; screen.</p>
<p class="helpNote">To use aisles to organize your shopping trips, first add aisles to your store by editing the store.</p>
<h1>Shopping</h1>
<p>To shop, tap the &#8220;Shop!&#8221; button at the bottom of the screen. As you pick up your items, tap the checkbox beside the item to remove it from your list.</p>
<h1>Shopping: View a Single Store</h1>
<p>To limit the Shopping List to a single store, tap the header and select a store from the panel that appears.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kyleshiflett.com/palmpre/articles/easyshop-help/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
