<?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 &#187; preDevCamp</title>
	<atom:link href="http://www.kyleshiflett.com/palmpre/topics/predevcamp/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>
	</channel>
</rss>

