<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>BlackBerry Developer Blog &#187; blackberry webworks sdk</title>
	<atom:link href="http://devblog.blackberry.com/tag/blackberry-webworks-sdk/feed/" rel="self" type="application/rss+xml" />
	<link>http://devblog.blackberry.com</link>
	<description></description>
	<lastBuildDate>Fri, 17 May 2013 17:47:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='devblog.blackberry.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/9ef0a66c09615fa946c4179662398878?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>BlackBerry Developer Blog &#187; blackberry webworks sdk</title>
		<link>http://devblog.blackberry.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://devblog.blackberry.com/osd.xml" title="BlackBerry Developer Blog" />
	<atom:link rel='hub' href='http://devblog.blackberry.com/?pushpress=hub'/>
		<item>
		<title>WebWorks Ant Build Script</title>
		<link>http://devblog.blackberry.com/2012/11/webworks-ant-build-script/</link>
		<comments>http://devblog.blackberry.com/2012/11/webworks-ant-build-script/#comments</comments>
		<pubDate>Thu, 08 Nov 2012 19:28:49 +0000</pubDate>
		<dc:creator>Tim W.</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WebWorks]]></category>
		<category><![CDATA[ant]]></category>
		<category><![CDATA[BlackBerry Open Source]]></category>
		<category><![CDATA[blackberry webworks sdk]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[webworks]]></category>

		<guid isPermaLink="false">http://devblog.blackberry.com/?p=11942</guid>
		<description><![CDATA[There are many ways to build BlackBerry WebWorks applications, like the Ripple Emulator, the BlackBerry Graphical Aid, or the command line. Each one has some good use cases, and yet I think there’s room for one more: an Ant build script that can include some pre-processing and will work well with automated builds. Ant has [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=11942&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>There are many ways to build BlackBerry WebWorks applications, like the <a href="https://developer.blackberry.com/html5/download/ripple">Ripple Emulator</a>, the <a href="http://supportforums.blackberry.com/t5/Testing-and-Deployment/BlackBerry-Tablet-OS-Graphical-Aid/ta-p/1207067">BlackBerry Graphical Aid</a>, or the <a href="https://developer.blackberry.com/html5/documentation/ww_developing/Compiling_Packaging_your_WW_app_1866977_11.html">command line</a>. Each one has some good use cases, and yet I think there’s room for one more: an Ant build script that can include some pre-processing and will work well with automated builds.</p>
<p style="text-align:center;"><a href="http://rimdevblog.files.wordpress.com/2012/11/timw1.png"><img class="aligncenter  wp-image-11943" title="Figure 1" alt="" src="http://rimdevblog.files.wordpress.com/2012/11/timw1.png?w=614&#038;h=242" height="242" width="614" /></a></p>
<p>Ant has been around a long time so it really needs no introduction. Inspiration for this build script came initially from <a href="http://addyosmani.com/blog/client-side-build-process/">Addy Osmani’s blog</a> on creating a build script for web applications, and later from reviewing the <a href="https://github.com/h5bp/ant-build-script">HTML5 Boilerplate’s Ant-Build-Script</a> project. This script is much more specific to BlackBerry WebWorks development and should serve as a great starting point for any developer wanting to introduce a build script to their WebWorks development cycle.</p>
<p>Ant scripts are great for a lot of reasons. Designed for build systems, with simple XML syntax, it&#8217;s been around long enough to get a lot of support from IDE&#8217;s and to have extensions and tutorials written for it. While there are newer build script tools available, Ant is a good, reliable tool. The IDE integration will be popular with many developers as well, since Eclipse and it&#8217;s variants work well with Ant. My current favorite is Sublime Text 2 which has superb build script integration: when set to Ant, pressing ctrl-b will run the default build in the current file’s directory. Besides working with your IDE, build scripts can do all sorts of repeatable operations for you, which can automate routine steps, saving time and maintaining consistency between builds. An obvious requirement for teams, but still a real time saver when working solo.</p>
<p style="text-align:center;"><a href="http://rimdevblog.files.wordpress.com/2012/11/timw2.png"><img class="aligncenter  wp-image-11944" title="Figure 2" alt="" src="http://rimdevblog.files.wordpress.com/2012/11/timw2.png?w=614&#038;h=438" height="438" width="614" /></a></p>
<p>When I set out to create this script, I wanted something with a wide range of flexibility but also something simple that I could just drop into a project and have it build. I also wanted to be able to update some settings in one place when something changed but support project specific build targets. Lastly, I thought it would be pretty cool to do some Lint checking and code compression at the same time. The result is up here on <a href="https://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/Ant-Build-Script" target="_blank">Github</a> and takes a two part approach. There is a main set of targets and associated tools that goes in one spot and a build.xml file that can be dropped into a WebWorks project. The main file you will setup once and only change when new SDKs are installed. The project file you will put a copy in each project and define a few simple properties to customize the build. Full instructions are included in the <a href="https://github.com/blackberry/BB10-WebWorks-Community-Samples/tree/master/Ant-Build-Script/README.md" target="_blank">Github Readme</a>.</p>
<p>Give it a try today and see what you think. Once you’ve done so, I’d really like to see some forks and pull requests that add additional targets. What are the tools that you would like to see included?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimdevblog.wordpress.com/11942/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimdevblog.wordpress.com/11942/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=11942&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devblog.blackberry.com/2012/11/webworks-ant-build-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4af90af66399bef37f445ec81aba64a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">timwin1</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2012/11/timw1.png" medium="image">
			<media:title type="html">Figure 1</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2012/11/timw2.png" medium="image">
			<media:title type="html">Figure 2</media:title>
		</media:content>
	</item>
		<item>
		<title>Ripple renewed: Updates to the Ripple Emulator</title>
		<link>http://devblog.blackberry.com/2012/09/ripple-emulator-updates/</link>
		<comments>http://devblog.blackberry.com/2012/09/ripple-emulator-updates/#comments</comments>
		<pubDate>Tue, 25 Sep 2012 21:40:56 +0000</pubDate>
		<dc:creator>Ken W</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[BlackBerry 10]]></category>
		<category><![CDATA[BlackBerry 10 WebWorks SDK]]></category>
		<category><![CDATA[blackberry webworks sdk]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[native]]></category>
		<category><![CDATA[ripple]]></category>
		<category><![CDATA[Ripple Emulator]]></category>

		<guid isPermaLink="false">http://devblog.blackberry.com/?p=11137</guid>
		<description><![CDATA[Alongside the refresh for the BlackBerry® 10 WebWorks™ SDK, we have also released an update to the Ripple Emulator.  Never to be left out, Ripple gets a big update with emulation support for some of the latest BlackBerry 10 WebWorks APIs.  Let’s get started! We recently added support for the HTML5 File system API in [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=11137&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Alongside the refresh for the <a href="http://devblog.blackberry.com/2012/09/blackberry-10-webworks-sdk-release-update/">BlackBerry® 10 WebWorks™ SDK</a>, we have also released an update to the Ripple Emulator.  Never to be left out, Ripple gets a big update with emulation support for some of the latest BlackBerry 10 WebWorks APIs.  Let’s get started!</p>
<p>We recently added support for the HTML5 File system API in our web rendering engine and BlackBerry WebWorks.  With this release, you can now emulate the file system, both sandboxed and unsandboxed.  Ripple will create an area your application can write to, and mimics the file system layout of the device.</p>
<p>A really cool piece of Ripple is the emulation of geolocation.  We recently added the live map view that allows you to select a new location on a map, and inject the location into your app code.  With this release, we received a great community contribution that really takes geolocation emulation to the next level.  <a href="http://github.com/mdineen" target="_new">Mark Dineen</a> provided a patch that allows you to specify a route to follow by providing a GPX file.  Ripple will read the file and inject location update events into your code based on the route provided! Now you can better emulate end-user navigation and movement.</p>
<p><img class="aligncenter size-full wp-image-11214" title="ripple-1" src="http://rimdevblog.files.wordpress.com/2012/09/ripple-1.jpg?w=313&#038;h=453" alt="TITLE_IMAGE" width="313" height="453" /></p>
<p>To better reflect the relationship between Cordova and PhoneGap &#8211; and due to the fact their core is the same &#8211; they are now both under the same entry in the Platforms window, and are represented by version number.</p>
<p>Quite often an application will wish to know when the virtual keyboard is displayed and closed, so that it can react accordingly.  You can now fire the relevant keyboard events into your application to test out your logic.  In the Events panel when you are emulating the BlackBerry 10 platform, you should now see the blackberry.event.keyboard… events.</p>
<p>HTML5 being inherently cross-platform in nature, there are many applications built using web technologies that are designed to target multiple form factors.  Part of designing a cross-platform application is ensuring that your application appears and lays out in a useful way depending on the capabilities of the target platform.  CSS media queries are a powerful tool in this regard, and Ripple now emulates media queries based on the target platform you have currently chosen to emulate.  Try it out and have some fun with this one.</p>
<p>So, be sure to visit our <a href="http://developer.blackberry.com/html5" target="_new">HTML5 developer site</a> to get all the most recent updates, and particularly the <a href="http://developer.blackberry.com/html5/downloads">downloads </a>page.  Get Ripple, and the latest WebWorks SDK, and start building!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimdevblog.wordpress.com/11137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimdevblog.wordpress.com/11137/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=11137&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devblog.blackberry.com/2012/09/ripple-emulator-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/3b422c1a037b89d4ddf5bef834dbdeef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kjwallis</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2012/09/ripple-1.jpg" medium="image">
			<media:title type="html">ripple-1</media:title>
		</media:content>
	</item>
		<item>
		<title>BlackBerry WebWorks SDK for Tablet OS Version 2.1 Now Available</title>
		<link>http://devblog.blackberry.com/2011/06/blackberry-webworks-sdk-tablet-os-version-2-1/</link>
		<comments>http://devblog.blackberry.com/2011/06/blackberry-webworks-sdk-tablet-os-version-2-1/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 16:36:42 +0000</pubDate>
		<dc:creator>Tim N.</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[blackberry webworks]]></category>
		<category><![CDATA[blackberry webworks sdk]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[tablet os]]></category>

		<guid isPermaLink="false">http://devblog.blackberry.com/?p=6585</guid>
		<description><![CDATA[The newest version of BlackBerry WebWorks SDK for Tablet OS is now available to download.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=6585&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-6594" title="BlackBerry WebWorks" src="http://rimdevblog.files.wordpress.com/2011/06/webworks-delta.jpg?w=600&#038;h=280" alt="BlackBerry WebWorks" width="600" height="280" /></p>
<p>With the release of v2.1 of the BlackBerry® WebWorks™ SDK for Tablet OS, new APIs and application functionality are <a href="http://us.blackberry.com/developers/tablet/webworks.jsp" target="-new">now available for download</a>! For those following the <a href="https://github.com/blackberry" target="_new">project on github</a>, this release has also been known as the “Delta” release outlined on the <a title="BlackBerry WebWorks roadmap" href="https://github.com/blackberry/WebWorks/wiki/Roadmap" target="_new">BlackBerry WebWorks roadmap</a>.</p>
<p>The goals for this release are focused on narrowing the gap between the BlackBerry WebWorks API functionality available on the BlackBerry® Smartphone OS and the APIs available on the Tablet OS, as well as exposing more BlackBerry® PlayBook™ tablet development functionality to web developers.</p>
<p>New capabilities available to BlackBerry WebWorks developers for the BlackBerry® Tablet OS are:</p>
<ul>
<li><a title="In App Payment API" href="http://www.blackberry.com/developers/docs/webworks/api/blackberry.payment.html" target="_new">In App Payment API</a></li>
<li><a title="Camera API" href="http://www.blackberry.com/developers/docs/webworks/api/blackberry.media.camera.html" target="_new">Camera API</a> (take a picture or a video)</li>
<li><a title="Microphone API" href="http://www.blackberry.com/developers/docs/webworks/api/blackberry.media.microphone.html" target="_new">Microphone API</a> (record audio)</li>
<li><a href="http://www.blackberry.com/developers/docs/webworks/api/blackberry.identity.html" target="_new">PIN API</a></li>
<li><a href="http://www.blackberry.com/developers/docs/webworks/api/blackberry.io.file.html" target="_new">File</a> and <a href="http://www.blackberry.com/developers/docs/webworks/api/blackberry.io.dir.html" target="_new">Directory</a> APIs</li>
<li>Configuring security permissions for your application on BlackBerry Tablet OS for features such as GPS and file access</li>
<li>Configuring the home screen category for your application</li>
</ul>
<p>The <a href="http://www.blackberry.com/developers/docs/webworks/api/" target="_new">API reference guide</a> has also been updated with some additional getting-started information on how to configure your app to use the different BlackBerry WebWorks APIs, and improvements around scrollable content.</p>
<p>In addition to the reference guide updates, we have also introduced an additional mechanism to call some of the BlackBerry WebWorks APIs. For those who are more comfortable using a URI or RESTful approach, you can now execute a subset of the BlackBerry WebWorks APIs by <a href="http://www.blackberry.com/developers/docs/webworks/api/blackberry.io.file.html#.copy" target="_new">simply making AJAX calls</a>!</p>
<p>As we continue our frequent releases of the BlackBerry WebWorks SDK for BlackBerry Tablet OS and BlackBerry Smartphone OS, we’ll be expanding the coverage of the URI/RESTful implementation to allow you to choose your preferred approach for interacting with the operating system.</p>
<p><a title="Download BlackBerry WebWorks SDK for Tablet OS" href="http://us.blackberry.com/developers/tablet/webworks.jsp" target="_new">Download the latest BlackBerry WebWorks SDK for Tablet OS to get started today!</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimdevblog.wordpress.com/6585/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimdevblog.wordpress.com/6585/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=6585&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devblog.blackberry.com/2011/06/blackberry-webworks-sdk-tablet-os-version-2-1/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/3939390650b170ba28e9bf3c53d397ad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">timneil1</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2011/06/webworks-delta.jpg" medium="image">
			<media:title type="html">BlackBerry WebWorks</media:title>
		</media:content>
	</item>
		<item>
		<title>BlackBerry WebWorks Bootcamp (VIDEO)</title>
		<link>http://devblog.blackberry.com/2011/02/blackberry-webworks-bootcamp-video/</link>
		<comments>http://devblog.blackberry.com/2011/02/blackberry-webworks-bootcamp-video/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 10:52:21 +0000</pubDate>
		<dc:creator>Douglas Soltys</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[blackberry webworks sdk]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[developer day]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[playbook]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[webworks]]></category>

		<guid isPermaLink="false">http://devblog.blackberry.com/?p=3250</guid>
		<description><![CDATA[BlackBerry WebWorks platform bootcamp overview during BlackBerry Developer Day at Mobile World Congress 2011. Includes links to BlackBerry WebWorks SDK and webinar series with sample code.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=4794&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='560' height='349' src='http://www.youtube.com/embed/clfFZDyelkQ?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;hd=1&#038;wmode=transparent' frameborder='0'></iframe></span>
<p>[ <a href="http://www.youtube.com/watch?v=clfFZDyelkQ">YouTube link for mobile viewing</a> ]</p>
<p>One of the most popular bootcamp sessions during <a href="http://devblog.blackberry.com/2011/02/blackberry-developer-day-mwc/">BlackBerry Developer Day</a> at <a href="http://www.blackberry.com/mwc">Mobile World Congress 2011</a> was the BlackBerry WebWorks platform session. In the video above, I talk with fellow blogger Adam about how BlackBerry WebWorks makes it easy for web developers to make BlackBerry smartphone and BlackBerry PlayBook tablet applications quickly using HTML5 and CSS (as <a href="http://devblog.blackberry.com/2011/02/blackberry-playbook-webworks-demo-video/">The Astonishing Tribe</a> demonstrated earlier in the week). Below are some worthwhile BlackBerry WebWorks related links.</p>
<p><a href="http://us.blackberry.com/developers/tablet/webworks.jsp">BlackBerry WebWorks SDK For BlackBerry Tablet OS</a><br />
<a href="http://webcast.streamlogics.com/audience/index.asp?eventid=49950807">BlackBerry WebWorks Webcast Series (with Sample Code)</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimdevblog.wordpress.com/4794/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimdevblog.wordpress.com/4794/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=4794&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devblog.blackberry.com/2011/02/blackberry-webworks-bootcamp-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/2d037da01c57235fd7d45fc1c591397f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dsoltys</media:title>
		</media:content>
	</item>
		<item>
		<title>BlackBerry PlayBook WebWorks Demo (VIDEO)</title>
		<link>http://devblog.blackberry.com/2011/02/blackberry-playbook-webworks-demo-video/</link>
		<comments>http://devblog.blackberry.com/2011/02/blackberry-playbook-webworks-demo-video/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 09:15:04 +0000</pubDate>
		<dc:creator>Douglas Soltys</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[blackberry playbook]]></category>
		<category><![CDATA[blackberry webworks sdk]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html 5]]></category>
		<category><![CDATA[tat]]></category>
		<category><![CDATA[webworks]]></category>

		<guid isPermaLink="false">http://devblog.blackberry.com/?p=3203</guid>
		<description><![CDATA[Hands on demo of the "aura" BlackBerry WebWorks app built by The Astonishing Tribe, at Mobile World Congress 2011.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=4789&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='560' height='349' src='http://www.youtube.com/embed/uH7NKhNyygw?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;hd=1&#038;wmode=transparent' frameborder='0'></iframe></span>
<p>[ <a href="http://www.youtube.com/watch?v=uH7NKhNyygw">YouTube link for mobile viewing</a> ]</p>
<p>Following the <a href="http://devblog.blackberry.com/2011/02/blackberry-developer-day-mwc/">BlackBerry Developer Day App Circus</a> at <a href="http://www.blackberry.com/mwc11">Mobile World Congress 2011</a>, Director of Developer Relations, Mike Kirkup, was able to give me a brief look at a BlackBerry PlayBook application developed by <a href="http://blogs.blackberry.com/2010/12/rim-welcomes-tat/">The Astonishing Tribe</a> that demonstrates the power and flexibility of BlackBerry WebWorks platform.</p>
<p>The “aura” application shown in the video above demonstrates rich graphics and physics engine similar to <a href="http://blogs.blackberry.com/2011/02/blackberry-playbook-scrapbook-app-demo-video/">TAT’s “scrapbook” demo</a>, but was built entirely with web technologies like HTML5 and CSS. Built in a week, “aura” demonstrates how web developers can leverage the professional grade performance of the BlackBerry PlayBook platform just like Adobe AIR and <a href="http://blogs.blackberry.com/2011/02/blackberry-playbook-need-for-speed-demo-video/">native application developers</a>.</p>
<p>This is a perfect example of why developers packed the BlackBerry Developer Day WebWorks bootcamp sessions yesterday. Click the link below to download the BlackBerry WebWorks SDK and start building your own BlackBerry PlayBook Application!</p>
<p><strong><a href="http://us.blackberry.com/developers/tablet/webworks.jsp">BlackBerry WebWorks SDK For BlackBerry Tablet OS</a></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimdevblog.wordpress.com/4789/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimdevblog.wordpress.com/4789/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=4789&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devblog.blackberry.com/2011/02/blackberry-playbook-webworks-demo-video/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/2d037da01c57235fd7d45fc1c591397f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dsoltys</media:title>
		</media:content>
	</item>
		<item>
		<title>Introducing the BlackBerry WebWorks SDK!</title>
		<link>http://devblog.blackberry.com/2011/01/blackberry-webworks-sdk/</link>
		<comments>http://devblog.blackberry.com/2011/01/blackberry-webworks-sdk/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 19:25:08 +0000</pubDate>
		<dc:creator>Adam A.</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[BlackBerry PlayBook apps]]></category>
		<category><![CDATA[blackberry webworks sdk]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[webworks]]></category>

		<guid isPermaLink="false">http://devblog.blackberry.com/?p=2987</guid>
		<description><![CDATA[An early access version of the BlackBerry® WebWorks™ SDK has just been released  - the second BlackBerry® PlayBook™ tablet development environment to be released.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=3996&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Here we go, folks &#8211; the second BlackBerry® PlayBook™ tablet development environment to be released: the BlackBerry® WebWorks platform.  Today, we’re releasing an early access version of the <a title="BlackBerry® WebWorks™ SDK" href="http://www.blackberry.com/developers/tabletos/webworks?IID=DEVWEB01122011" target="_new">BlackBerry® WebWorks™ SDK</a>.  The SDK provides web and mobile web developers with a framework, API’s and tooling to develop web applications for the BlackBerry PlayBook tablet.</p>
<p>If your background and skills are in using web technologies like HTML5, CSS and JavaScript®, then this is the platform for you!  The platform extends some of the native device capabilities like system utilities, dialogs, and invoking other apps on the device and makes them available for you to use in your applications – helping them to become Super Apps!</p>
<p>Remember: this is still early access and the product team will be adding more and more capabilities from now until the launch of the device.   The design and architectural principles for the BlackBerry WebWorks platform on the BlackBerry PlayBook tablet were to keep as much in common as possible with the BlackBerry WebWorks platform on BlackBerry® smartphones.  This means that apps written on one will work on the other; however some modification might be needed depending on the underlying device capabilities.  For example the tablet may have characteristics like bringing up a native dialog box including various options like the size and appearance of the dialog on the PlayBook’s screen that aren’t on the smartphones.  However, all of your HTML5, CSS and JavaScript code should all be compatible.</p>
<p>Also, we’ve released <a href="http://www.github.com/blackberry" target="_new">the source code to the BlackBerry WebWorks SDK</a> on the BlackBerry PlayBook tablet &#8211; please check it out and join the open source project.  This is an opportunity for the larger developer community to get involved in shaping the future of this platform and tooling.  So get involved!</p>
<p>And lastly, all BlackBerry PlayBook WebWorks applications that are submitted to BlackBerry App World™ are eligible for a FREE BlackBerry PlayBook tablet!  To submit your apps, please go <a href="http://us.blackberry.com/developers/tablet/playbook_offer.jsp?IID=DEVPOF01122011" target="_new">here</a>, and see <a href="http://us.blackberry.com/developers/tablet/terms_conditions.jsp?IID=DEVPTC01122011" target="_new">the terms and conditions here</a>. To keep in touch with all the announcements and release information related to the BlackBerry PlayBook tablet, please enter your information <a href="https://www.blackberry.com/profile/?eventId=5005&amp;choice=tablet" target="_new">here</a>.</p>
<p>Thanks for your support!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimdevblog.wordpress.com/3996/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimdevblog.wordpress.com/3996/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=3996&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devblog.blackberry.com/2011/01/blackberry-webworks-sdk/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0a3536d49a52e548ce94033319a7e544?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Adam A.</media:title>
		</media:content>
	</item>
	</channel>
</rss>
