<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;A04ARHk4fip7ImA9WhJVGUw.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950</id><updated>2012-09-06T01:25:45.736-07:00</updated><category term="learning spanish" /><category term="iphone" /><category term="iPad" /><category term="coronasdk" /><category term="apps" /><category term="kids" /><category term="tutorial" /><title>AdrianEraldo's Tutorials - Corona SDK, LUA, and more...</title><subtitle type="html">I make apps for apple, android, nook and ZX81.</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://adrianeraldo.blogspot.com/" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>17</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/AdrianeraldoIsHere" /><feedburner:info uri="adrianeraldoishere" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;CEENR386cSp7ImA9WhJVFEo.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-3917178008796943845</id><published>2012-08-31T21:05:00.001-07:00</published><updated>2012-08-31T21:11:36.119-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-08-31T21:11:36.119-07:00</app:edited><title>Programming for beginners – part 4</title><content type="html">&lt;p&gt;&lt;a href="http://lh5.ggpht.com/-Y8j1QAYsu7U/UEGJa-OQIDI/AAAAAAAAAQ8/ShaToe9aCQE/s1600-h/programming%252520for%252520beginners%252520-%252520RAM%25255B4%25255D.jpg"&gt;&lt;img style="border-right-width: 0px; margin: 10px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="programming for beginners - RAM" border="0" alt="programming for beginners - RAM" align="left" src="http://lh3.ggpht.com/-klRMpE-AWN0/UEGJbVFU8aI/AAAAAAAAARE/nOCZ4S0vza4/programming%252520for%252520beginners%252520-%252520RAM_thumb%25255B2%25255D.jpg?imgmax=800" width="240" height="191"&gt;&lt;/a&gt; I hope everybody understands my previous posts. If not please let me know what is not clear and I’ll try to clarify.&lt;/p&gt; &lt;p&gt;What you see here is the actual &lt;strong&gt;MEMORY&lt;/strong&gt;. I don’t want to get to technical so I’m just going to say that inside of these little boards resides the information that we are going to work with.&lt;/p&gt; &lt;p&gt;How? we don’t care for now.&lt;/p&gt; &lt;p&gt;Remember last time we were talking about &lt;strong&gt;boxes, and variables&lt;/strong&gt;. So to recap from last week, a &lt;a title="Free app just click to go to App Store" href="http://itunes.apple.com/ca/app/minifono/id446060200?mt=8"&gt;&lt;img style="border-right-width: 0px; margin: 10px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="ScreenshotSmall" border="0" alt="ScreenshotSmall" align="right" src="http://lh4.ggpht.com/-PyKoWJb0jY0/UEGJb_zfSMI/AAAAAAAAARM/XTSsHoMrMeI/ScreenshotSmall%25255B6%25255D.jpg?imgmax=800" width="160" height="240"&gt;&lt;/a&gt;variable is representation of a container, such as a box. It holds information: numbers, names, dates, images, sounds, music, etc. In our case with MINIFONO (or Candy Toy phone) we have a screen where we have all the buttons that represents the numeric pad of a phone. &lt;strong&gt;Each of these button’s has different attributes&lt;/strong&gt;: size, image, location and is tied to a specific functionality, more on that later. For example the number one is a button that has an image attached to it. It also has a position on the screen. A size. So we can say that there are several variables assigned to button number one. &lt;/p&gt; &lt;p&gt;And because there are several of these variables or boxes it’s a good idea to go to the hardware store and buy a bigger box to hold all these variables together. But first let’s define what we know now. And here comes the part were we actually code. In LUA we do it this way.&lt;/p&gt; &lt;p&gt;&lt;font size="3" face="Terminal"&gt;&lt;strong&gt;local buttonOne&lt;/strong&gt;&lt;/font&gt;&amp;nbsp;&amp;nbsp; &amp;lt;—here we name it, we create the box but we don’t assign any value yet&lt;/p&gt; &lt;p&gt;And since we came back from the hardware store with a bigger box we are going to use it for buttonOne. In it we are going to store the image that was created previously. Like this:&lt;/p&gt; &lt;p&gt;&lt;font size="3" face="ter"&gt;&lt;strong&gt;buttonOne = display.newImage(“buttonOne.png”)&lt;/strong&gt;&lt;/font&gt;&amp;nbsp; &amp;lt;—that’s the way you do it in Corona SDK, more later.&lt;/p&gt; &lt;p&gt;buttonOne now has become the bigger box that will from now on contain the other attributes we discussed just now. In the next episode we will assign the size, the location on screen, etc.&lt;/p&gt;  &lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/hU7S5veZq3o" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/3917178008796943845/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2012/08/programming-for-beginners-part-4.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/3917178008796943845?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/3917178008796943845?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/hU7S5veZq3o/programming-for-beginners-part-4.html" title="Programming for beginners – part 4" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh3.ggpht.com/-klRMpE-AWN0/UEGJbVFU8aI/AAAAAAAAARE/nOCZ4S0vza4/s72-c/programming%252520for%252520beginners%252520-%252520RAM_thumb%25255B2%25255D.jpg?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2012/08/programming-for-beginners-part-4.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkADQ347cSp7ImA9WhJWGEo.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-3900416238480558908</id><published>2012-08-24T21:59:00.001-07:00</published><updated>2012-08-24T21:59:32.009-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-08-24T21:59:32.009-07:00</app:edited><title>More programming for beginners – part 3</title><content type="html">&lt;p&gt;Guess who forgot to post! &lt;/p&gt; &lt;p&gt;Anyhow let’s get to this week’s lesson: Variables!&lt;/p&gt; &lt;p&gt;I know it doesn’t sound fun but this is a very important concept. So what is a variable? Is a tag, or a box that contains information in it.&lt;/p&gt; &lt;p&gt;Let’s say we need to add 2 numbers and show the result. So we ask the user for the first number and STORE it in the first box, we call this first box, let me see what could be an original name? How about BOX1, now my brains are melting. &lt;/p&gt; &lt;p&gt;Let’s call the second box BOX2. In box2 we store the second number but wait we still need a third box, in this one we need to store the result of the adding operation. We call this box resultbox. Do you follow me? And then we tell the computer to add, we do it this way:&lt;/p&gt; &lt;p&gt;RESULTBOX = BOX1 + BOX2&lt;/p&gt; &lt;p&gt;Voila! So now we have the result in the variable called RESULTBOX, was that easy or what? &lt;/p&gt; &lt;p&gt;But why is this important? Well we now see a very simple example with 2 numbers and with a simple operation, but what if we had to do different operations? We’ll save that for later. For now we need to understand that a variable is a box that contains data. You need to know something more, this box is a representation of actual computer MEMORY. &lt;/p&gt; &lt;p&gt;I bet you went to the store one day and the guy talked to you about memory and ram and gigabytes, well next time I’ll explain that too!&lt;/p&gt; &lt;p&gt;See ya!&lt;/p&gt;  &lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/Lp0GUQilFS0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/3900416238480558908/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2012/08/more-programming-for-beginners-part-3.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/3900416238480558908?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/3900416238480558908?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/Lp0GUQilFS0/more-programming-for-beginners-part-3.html" title="More programming for beginners – part 3" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2012/08/more-programming-for-beginners-part-3.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0QHQXc8cCp7ImA9WhJWEUs.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-326885152667038131</id><published>2012-08-16T16:55:00.001-07:00</published><updated>2012-08-16T16:55:30.978-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-08-16T16:55:30.978-07:00</app:edited><title>Programming for beginners – part 2</title><content type="html">&lt;p&gt;And here we are again, thanks for coming back!.&lt;/p&gt; &lt;p&gt;I hope everything was clear last time we met, if not please comment and let me know. &lt;a href="http://lh4.ggpht.com/-Jv5H3Q_WQ38/UC2IboxUx3I/AAAAAAAAAPc/dAGpT5ODq0o/s1600-h/minifono-candy-for-ipad-from-totostudios%25255B11%25255D.png"&gt;&lt;img style="border-right-width: 0px; margin: 15px 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="minifono-candy-for-ipad-from-totostudios" border="0" alt="minifono-candy-for-ipad-from-totostudios" align="right" src="http://lh4.ggpht.com/-9Rg1H6Ga1e8/UC2Icbv1BxI/AAAAAAAAAPk/x6O7bp7OgyI/minifono-candy-for-ipad-from-totostudios_thumb%25255B9%25255D.png?imgmax=800" width="181" height="240"&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;Today we are going to learn a few new things. First of all, on the right there’s a picture from my first app. I named it mini fono candy (or minifono for short).&amp;nbsp; My plan is to take you from absolutely no programming knowledge to being able to make an app like &lt;a title="#TotoPublishingStudios" href="http://itunes.apple.com/us/app/minifono/id446060200?ls=1&amp;amp;mt=8" target="_blank"&gt;minifono&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Like I said, let’s go slowly first. When I first started programming there were not many options and I only had access to a very small computer called zx81. It was similar to a programmable calculators we use these days. But it really worked as a teaching tool and because it was so limited it made me think things twice.&lt;/p&gt; &lt;p&gt;My first game, back in 1983, was a horse racing game. It was very rudimentary but it served it’s purpose. There were 10 horses and you could bet on one of them. At the end of the race you could win or loose, easy.&lt;/p&gt; &lt;p&gt;So the first thing I needed to do was to make 1 horse. Remember last time I was talking about the visual representation, the pixel, right?. So first thing was making a horse. Back then I just put 3 squares together, because that’s was all available, period. Today I would do it differently. I would make a horse with a paint software.&lt;/p&gt; &lt;p&gt;So let’s say we have an image of a horse, we now tell the computer to put it on the screen. And then move it to the right. We repeat this step as many times as needed to complete the amount of horses in our race. At the end we check which one wins, if it’s our horse we then increment our reward. That’s fine but what this has to do with programming? Well, years later I went to school and actually learn how to program. There they taught me something very important. &lt;strong&gt;They taught me that I need to understand the problem before I try to solve it.&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;&lt;a title="Get it for free from the App Store" href="http://itunes.apple.com/us/app/minifono/id446060200?ls=1&amp;amp;mt=8" target="_blank"&gt;Minifono&lt;/a&gt; is an app that teaches the numbers from 0 to 9 in English and Spanish. Right, so what’s the problem here? Mmmh.&lt;/p&gt; &lt;p&gt;Let’s say this: every time I touch a button I need to hear the sound of that number. That’s it? Well yes but wait, that’s easy to say but how on earth do we do it?&lt;/p&gt; &lt;p&gt;Let’s isolate the problem a little bit. First of all we need to show the button, then assign an event (touch) and then assign a sound to that event. Do you get it? Ok, so then let’s start with what we call CODE. A code is a language that the computer understand. It’s also known as programming language. So we first need to learn it before we can command the computer to do such things.&lt;/p&gt; &lt;p&gt;For every object that we see on screen we need a referrer, something, like a tag on a t-shirt. We call this tag a variable. And we need it because we need to put some information in it. Put? similar to a TAG, tags have information written on it right? things like price, brand, size, etc, right? I feel illuminated now. So a &lt;strong&gt;variable is a tag&lt;/strong&gt;, a container that has information in it. We need to name those tags, we are going to call button1 to the first tag. So now we have a variable called button1. This variable is not attached to anything right now but it will NEXT WEEK !&lt;/p&gt; &lt;p&gt;So please read this as many times as needed. See you next week!&lt;/p&gt; &lt;p&gt;Oh and if you need to download &lt;a title="The App Store" href="http://itunes.apple.com/us/app/minifono/id446060200?ls=1&amp;amp;mt=8" target="_blank"&gt;minifono&lt;/a&gt; just click on it’s name and it will take you to the App Store it’s &lt;strong&gt;FREE&lt;/strong&gt;, if you don’t have an apple device you can still get it from the &lt;a href="http://www.barnesandnoble.com/w/minifono-candy-toy-phone-adrian-cavalcanti/1112061037" target="_blank"&gt;Barnes and Noble Store&lt;/a&gt;.&lt;/p&gt;  &lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/FJD0rmI2axo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/326885152667038131/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2012/08/programming-for-beginners-part-2.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/326885152667038131?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/326885152667038131?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/FJD0rmI2axo/programming-for-beginners-part-2.html" title="Programming for beginners – part 2" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh4.ggpht.com/-9Rg1H6Ga1e8/UC2Icbv1BxI/AAAAAAAAAPk/x6O7bp7OgyI/s72-c/minifono-candy-for-ipad-from-totostudios_thumb%25255B9%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2012/08/programming-for-beginners-part-2.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkIMRHs7fSp7ImA9WhJXFUs.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-1428402571133686977</id><published>2012-08-09T19:09:00.001-07:00</published><updated>2012-08-09T19:09:45.505-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-08-09T19:09:45.505-07:00</app:edited><title>How to start programming for beginners</title><content type="html">&lt;p&gt;&lt;a href="http://lh6.ggpht.com/-i37g5Fa_820/UCRtZ4ay3jI/AAAAAAAAAPE/ucKQv8EwD5Y/s1600-h/images%25255B4%25255D.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; margin: 10px 0px; display: inline; border-top: 0px; border-right: 0px" title="images" border="0" alt="images" align="left" src="http://lh3.ggpht.com/-pOcpeYwyGAM/UCRtaH4CRVI/AAAAAAAAAPM/MBqI8lKL-BA/images_thumb%25255B2%25255D.jpg?imgmax=800" width="240" height="158"&gt;&lt;/a&gt; I previously made a tutorial about how to make an iPad eBook, but, I received several comments saying that those tutorials are a little too difficult for someone who doesn't have any previous experience; so I decided to start from scratch and make a tutorial for really really beginners. &lt;/p&gt; &lt;p&gt;In other words, if you already programmed then this tutorial is not for you. On the other hand if you don't have any idea but you have a passion and you are willing to study and practice then this is for you. &lt;/p&gt; &lt;p&gt;I used to teach basic computer skills in the 90's and frequently found people who never ever touched a keyboard, so I designed ways to explain programming using some examples and analogies. At that time I used to ask this: What is a programmer? Do you have a washing machine at home? If so then you are a programmer already! Let me explain. A program is a series of steps that a computer has to follow. In this case a washing machine follows a series of steps such as, wash, rinse, etc. If you can see this then you are almost there. &lt;/p&gt; &lt;p&gt;Now you say that's really easy to see but how do I make a game such as Plants Vs Zombies? Whoa, hold on there! You need to start small and gradually get into more complex things. Think about this, what you see on your monitor is just a dot of light. Or should I say millions of them. That's all. You just interact with them via several different ways such as: keyboard, mouse, finger, etc. Those points of light on your screen are called pixels. Order them and you get an image. Presto. Then you can tell the computer to move that image. Or perhaps rotate it, or detect if it collided with another image. You see we start building the concepts little by little.&lt;/p&gt; &lt;p&gt;And this now looks more like an introduction to a book, and who knows maybe in the future it will be. For now let’s just get started.&lt;/p&gt; &lt;p&gt;So, we need to know how are we going to tell the computer what steps she needs to follow. But wait, is there a dial similar to a washing machine one? Nah. If there was one then computers would be very limited. So instead of a dial we have a keyboard. With it we can enter instructions. A set of instructions becomes a program. Easy right?. And a set of programs becomes an application, such as Word or Excell.&lt;/p&gt; &lt;p&gt;What we really need to do now is learn the language the computer uses;&amp;nbsp; what kind of structures we need, what kind of things or commands the computer is capable to perform. For instance, we would like to display a word or a sentence on the screen. How do we tell the computer to do that?&amp;nbsp; This kinds of things we will learn in these tutorials.&lt;/p&gt; &lt;p&gt;So for this first one I will tell you that we are going to learn a language called LUA. And for now that’s all you need to know about it. &lt;/p&gt; &lt;p&gt;To get ready for the next tutorial I want you to grab a notebook (a paper one), a pencil and eraser, that’s all. We need to write down some information before we proceed with the actual programming. Later you’ll have a summary of the commands that you can use.&lt;/p&gt; &lt;p&gt;See you next week!&lt;/p&gt; &lt;p&gt;AdrianEraldo&lt;/p&gt;  &lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/MBHCEb_C9so" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/1428402571133686977/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2012/08/how-to-start-programming-for-beginners.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/1428402571133686977?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/1428402571133686977?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/MBHCEb_C9so/how-to-start-programming-for-beginners.html" title="How to start programming for beginners" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh3.ggpht.com/-pOcpeYwyGAM/UCRtaH4CRVI/AAAAAAAAAPM/MBqI8lKL-BA/s72-c/images_thumb%25255B2%25255D.jpg?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2012/08/how-to-start-programming-for-beginners.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUMGRHc7eSp7ImA9WhJQFEk.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-9174002695083998090</id><published>2012-07-27T20:50:00.001-07:00</published><updated>2012-07-27T20:50:25.901-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-07-27T20:50:25.901-07:00</app:edited><title>What is a Spritesheet? (not a drink)</title><content type="html">&lt;p&gt;I have found this very interesting video and I wanted to share it with you. It’s about spritesheets, wait what? &lt;p&gt;&lt;img style="border-bottom: 0px; border-left: 0px; margin: 10px; display: inline; border-top: 0px; border-right: 0px" title="contents" border="0" alt="contents" align="left" src="http://lh4.ggpht.com/-4bS7hAXWSkc/UBNhgHacfUI/AAAAAAAAAO0/WdgqFwXZORI/contents%25255B6%25255D.png?imgmax=800" width="128" height="128"&gt;Ok, a spritesheet is a big image file that contains smaller images inside. The reason behind this is to avoid having multiple images spread around the project directory and to save memory on the device. But enough introduction, here it is: &lt;p&gt;&lt;a href="http://www.codeandweb.com/what-is-a-sprite-sheet?utm_source=CodeAndWeb+-+All&amp;amp;utm_campaign=6e38dc28fa-SpriteSheets_The_Movie6_21_2012&amp;amp;utm_medium=email"&gt;SpriteSheets video&lt;/a&gt; &lt;p&gt;Thanks Andreas Loew for letting me share this content.   &lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/uY4FWzuETbA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/9174002695083998090/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2012/07/what-is-spritesheet-not-drink.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/9174002695083998090?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/9174002695083998090?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/uY4FWzuETbA/what-is-spritesheet-not-drink.html" title="What is a Spritesheet? (not a drink)" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh4.ggpht.com/-4bS7hAXWSkc/UBNhgHacfUI/AAAAAAAAAO0/WdgqFwXZORI/s72-c/contents%25255B6%25255D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2012/07/what-is-spritesheet-not-drink.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CE8ASXk9eip7ImA9WhJQE0k.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-8018152167112840904</id><published>2012-07-26T15:47:00.001-07:00</published><updated>2012-07-26T15:47:28.762-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-07-26T15:47:28.762-07:00</app:edited><title>P7 - How to make an iPad eBook with CoronaSDK</title><content type="html">&lt;p&gt;In this tutorial I’ll show you a demonstration on how to use a very important module called Director. This module was develop by Ricardo Rauber at his lab in Brazil. He created it to help the developer’s community and certainly he is doing a great job. Right now he is in version 1.4. if you want more information you should go to his page &lt;a href="http://rauberlabs.blogspot.ca"&gt;http://rauberlabs.blogspot.ca&lt;/a&gt; and take a look. The only sad things is that there is not available information for beginners, so that’s why I decided to give Ricardo a hand and try to explain a little more what is it about. I hope I’m doing a good job here, if not please let me know what would you like me to explain further.&lt;/p&gt; &lt;p&gt;But then how did I manage to understand it? Well there are some comments inside the module. And you can also run it and see how it works. So that’s about it. After that you need to implement it with your own code; and that’s how I teach myself.&lt;/p&gt; &lt;p&gt;If you are looking for my work you can visit my page: &lt;a href="http://totostudios.com"&gt;Interactive iPad Books for children&lt;/a&gt; on my other website. And if you are feeling thankful&amp;nbsp; please buy one of my apps.&lt;/p&gt; &lt;p&gt;So let’s get to it.&lt;/p&gt; &lt;div style="padding-bottom: 0px; margin: 0px auto; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:cb8093a1-5a16-488f-a582-e6796c98c53c" class="wlWriterEditableSmartContent"&gt;&lt;div id="1fb8a399-7aa9-4cf1-9553-4e8cc086ed76" style="margin: 0px; padding: 0px; display: inline;"&gt;&lt;div&gt;&lt;a href="http://www.youtube.com/watch?v=UCcCUf65trA&amp;amp;hd=1" target="_new"&gt;&lt;img src="http://lh5.ggpht.com/-0nsnR6qUcGo/UBHI_wqgzQI/AAAAAAAAAOU/NbIWn5IZlSA/video9cc604f74886%25255B4%25255D.jpg?imgmax=800" style="border-style: none" galleryimg="no" onload="var downlevelDiv = document.getElementById('1fb8a399-7aa9-4cf1-9553-4e8cc086ed76'); downlevelDiv.innerHTML = &amp;quot;&amp;lt;div&amp;gt;&amp;lt;object width=\&amp;quot;425\&amp;quot; height=\&amp;quot;355\&amp;quot;&amp;gt;&amp;lt;param name=\&amp;quot;movie\&amp;quot; value=\&amp;quot;http://www.youtube.com/v/UCcCUf65trA&amp;amp;hl=en\&amp;quot;&amp;gt;&amp;lt;\/param&amp;gt;&amp;lt;embed src=\&amp;quot;http://www.youtube.com/v/UCcCUf65trA&amp;amp;hl=en\&amp;quot; type=\&amp;quot;application/x-shockwave-flash\&amp;quot; width=\&amp;quot;425\&amp;quot; height=\&amp;quot;355\&amp;quot;&amp;gt;&amp;lt;\/embed&amp;gt;&amp;lt;\/object&amp;gt;&amp;lt;\/div&amp;gt;&amp;quot;;" alt=""&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;  &lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/ua8YfNfJJac" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/8018152167112840904/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2012/07/p7-how-to-make-ipad-ebook-with-coronasdk.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/8018152167112840904?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/8018152167112840904?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/ua8YfNfJJac/p7-how-to-make-ipad-ebook-with-coronasdk.html" title="P7 - How to make an iPad eBook with CoronaSDK" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2012/07/p7-how-to-make-ipad-ebook-with-coronasdk.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0UCRX8-fyp7ImA9WhJQEks.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-3444068712706525328</id><published>2012-07-25T19:21:00.000-07:00</published><updated>2012-07-25T19:21:04.157-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-07-25T19:21:04.157-07:00</app:edited><title>Nook store nightmares...</title><content type="html">As some of you may know publishing in the NOOK app store could be a nightmare.&lt;br /&gt;
First of all, if are a developer like me, you might want to look into this store since has a few but good features (that in another post).&lt;br /&gt;
So for now I want to warn you that applying is a nightmare. First all the questions, then the taxes even if you are publshing outside the US you still need to apply for an EAN.&lt;br /&gt;
As usual, if everything goes the way it goes in a perfect world then you don't have to worry. But if you live in the same world that I live then you are screwed.&lt;br /&gt;
All I want to say for now is that pay attention to every step. Specially in the tax application because if you misspelled the name of your street then the process is halted. In my case instead of just typing the number of my apartment there was the word UNIT in front. So for that reason my application was put in review mode.&lt;br /&gt;
Ok, that's it for now.&lt;br /&gt;
Cheers!&lt;br /&gt;
&lt;br /&gt;&lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/lNd7AhR0JSk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/3444068712706525328/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2012/07/nook-store-nightmares.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/3444068712706525328?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/3444068712706525328?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/lNd7AhR0JSk/nook-store-nightmares.html" title="Nook store nightmares..." /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2012/07/nook-store-nightmares.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkYBQXw_eCp7ImA9WhJQEUs.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-7546982686995135189</id><published>2012-07-24T13:02:00.001-07:00</published><updated>2012-07-24T13:02:30.240-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-07-24T13:02:30.240-07:00</app:edited><title>Why iBooks Author is a big deal for publishers</title><content type="html">Very interesting blog post about making iPad interactive books -&amp;gt; &lt;br /&gt;
&lt;a href="http://mediaconceptsrg.blogspot.ca/2012/01/why-ibooks-author-is-big-deal-for.html?showComment=1343160063619#c8761158823661919216"&gt;Media Concepts Research Group: Why iBooks Author is a big deal for publishers&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/wbLWZ25j2co" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/7546982686995135189/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2012/07/why-ibooks-author-is-big-deal-for.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/7546982686995135189?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/7546982686995135189?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/wbLWZ25j2co/why-ibooks-author-is-big-deal-for.html" title="Why iBooks Author is a big deal for publishers" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2012/07/why-ibooks-author-is-big-deal-for.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0AHRHwzeyp7ImA9WhJQE04.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-2123555429791768171</id><published>2011-12-09T16:28:00.001-08:00</published><updated>2012-07-26T13:48:55.283-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-07-26T13:48:55.283-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="coronasdk" /><title>Part 6 - How to make an iPad intereactive book app using Corona SDK</title><content type="html">Hello and welcome to another tutorial. This time I'm going to show you how to make an object draggable. So in other words, once you created your object you can add&amp;nbsp; features to it such as physics, etc.&lt;br /&gt;
I recomend going to the other videos first but if you feel you know enough then go ahead.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;object width="320" height="266" class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://i.ytimg.com/vi/wADFtRhNDWo/0.jpg"&gt;&lt;param name="movie" value="http://www.youtube.com/v/wADFtRhNDWo?version=3&amp;f=user_uploads&amp;c=google-webdrive-0&amp;app=youtube_gdata" /&gt;&lt;param name="bgcolor" value="#FFFFFF" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;embed width="320" height="266"  src="http://www.youtube.com/v/wADFtRhNDWo?version=3&amp;f=user_uploads&amp;c=google-webdrive-0&amp;app=youtube_gdata" type="application/x-shockwave-flash" allowfullscreen="true"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;
&lt;br /&gt;
Please visit http://totostudios.com and buy one of my games.&lt;br /&gt;
If you enjoyed this tutorial please share it with your friends.&lt;br /&gt;Tutorial on dragging objects on-screen using CoronaSDK.&lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/YURTP7Ov8w4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/2123555429791768171/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2011/12/corona-sdk-en-espanol-como-hacer-un.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/2123555429791768171?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/2123555429791768171?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/YURTP7Ov8w4/corona-sdk-en-espanol-como-hacer-un.html" title="Part 6 - How to make an iPad intereactive book app using Corona SDK" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2011/12/corona-sdk-en-espanol-como-hacer-un.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0QDQ3g5cSp7ImA9WhJQE04.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-7493788142543162168</id><published>2011-10-10T19:18:00.001-07:00</published><updated>2012-07-26T13:42:52.629-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-07-26T13:42:52.629-07:00</app:edited><title>Part 5 - How to make an iPad interactive book with Corona SDK</title><content type="html">This is part 5 of my tutorial on how to make an iPad interactive book 
for children. In this lesson we’ll see an introduction to the&amp;nbsp;&lt;a href="http://en.wikipedia.org/wiki/Physics_engine" rel="wikipedia" title="Physics engine"&gt;physics engine&lt;/a&gt;&amp;nbsp;that comes with&amp;nbsp;&lt;a href="http://www.anscamobile.com/" rel="homepage" title="Corona (software development kit)"&gt;Corona SDK&lt;/a&gt;.
 What we are going to see here is an explanation of a sample that ships 
with Corona SDK, so in other words if you installed Corona SDK in your 
computer then you have the sample file already. You probably want to 
watch the previous tutorials before you watch this one.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;object width="320" height="266" class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://i.ytimg.com/vi/kpWPXZOgkN4/0.jpg"&gt;&lt;param name="movie" value="http://www.youtube.com/v/kpWPXZOgkN4?version=3&amp;f=user_uploads&amp;c=google-webdrive-0&amp;app=youtube_gdata" /&gt;&lt;param name="bgcolor" value="#FFFFFF" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;embed width="320" height="266"  src="http://www.youtube.com/v/kpWPXZOgkN4?version=3&amp;f=user_uploads&amp;c=google-webdrive-0&amp;app=youtube_gdata" type="application/x-shockwave-flash" allowfullscreen="true"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;a href="http://bit.ly/pNJiGQ"&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/48ZjdZ5QNLo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/7493788142543162168/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2011/10/minifono-has-new-look-to-preview-click.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/7493788142543162168?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/7493788142543162168?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/48ZjdZ5QNLo/minifono-has-new-look-to-preview-click.html" title="Part 5 - How to make an iPad interactive book with Corona SDK" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2011/10/minifono-has-new-look-to-preview-click.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Dk8BRnczfSp7ImA9WhJQE04.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-942896760483384720</id><published>2011-10-03T23:41:00.001-07:00</published><updated>2012-07-26T13:34:17.985-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-07-26T13:34:17.985-07:00</app:edited><title>Part 4 - How to make an interactive iPad book using Gumbo</title><content type="html">Hi everybody! I was on holidays so it took me longer than expected to post this tutorial but here it is at last.&lt;br /&gt;

In this tutorial I’ll show you a web tool called Gumbo. We will use 
it to place images on screen without having to type a single line of 
code! Later I’ll show you how to add sound to an object; when the object
 is touched a sound plays. I hope you like it and please share it!&lt;br /&gt;

Cheers!&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;object width="320" height="266" class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://i.ytimg.com/vi/ClT515l8YRE/0.jpg"&gt;&lt;param name="movie" value="http://www.youtube.com/v/ClT515l8YRE?version=3&amp;f=user_uploads&amp;c=google-webdrive-0&amp;app=youtube_gdata" /&gt;&lt;param name="bgcolor" value="#FFFFFF" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;embed width="320" height="266"  src="http://www.youtube.com/v/ClT515l8YRE?version=3&amp;f=user_uploads&amp;c=google-webdrive-0&amp;app=youtube_gdata" type="application/x-shockwave-flash" allowfullscreen="true"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://bit.ly/oF7iwz"&gt;&lt;/a&gt;&lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/Wb64p9_0s5E" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/942896760483384720/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2011/10/nuevo-video-corona-sdk-en-espanol-ansca.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/942896760483384720?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/942896760483384720?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/Wb64p9_0s5E/nuevo-video-corona-sdk-en-espanol-ansca.html" title="Part 4 - How to make an interactive iPad book using Gumbo" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2011/10/nuevo-video-corona-sdk-en-espanol-ansca.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkMCRnczeip7ImA9WhJQE04.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-6210669540172354136</id><published>2011-08-21T23:56:00.001-07:00</published><updated>2012-07-26T13:27:47.982-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-07-26T13:27:47.982-07:00</app:edited><title>Part 3 – How to make an iPad book tutorial using Corona SDK.</title><content type="html">&lt;br /&gt;&lt;br /&gt;
Ok, part 3 is here. Sorry for the delay, I had a little problem with my screen cast software…&lt;br /&gt;
&lt;br /&gt;
So, in this tutorial we are going to display 3 images on-screen using&amp;nbsp;&lt;a href="http://www.anscamobile.com/" rel="homepage" title="Corona (software development kit)"&gt;Corona SDK&lt;/a&gt;&amp;nbsp;simulator.  It is going to be a really simple tutorial yet powerful. From now on  you could potentially add as many images as you want to your project  after this tutorial.&lt;br /&gt;
Later on we will interact we the images, add sound, narration and GRAVITY!!&lt;br /&gt;
If you are familiar with the pop up books series you know what I’m  talking about. Ok here’s the video, enjoy and don’t forget to comment!!&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;object class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://i.ytimg.com/vi/ruLB1codeV0/0.jpg" height="266" width="320"&gt;&lt;param name="movie" value="http://www.youtube.com/v/ruLB1codeV0?version=3&amp;f=user_uploads&amp;c=google-webdrive-0&amp;app=youtube_gdata" /&gt;&lt;param name="bgcolor" value="#FFFFFF" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;embed width="320" height="266"  src="http://www.youtube.com/v/ruLB1codeV0?version=3&amp;f=user_uploads&amp;c=google-webdrive-0&amp;app=youtube_gdata" type="application/x-shockwave-flash" allowfullscreen="true"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/P1OpY0SMxVM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/6210669540172354136/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2011/08/part-3-how-to-make-ipad-book-tutorial.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/6210669540172354136?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/6210669540172354136?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/P1OpY0SMxVM/part-3-how-to-make-ipad-book-tutorial.html" title="Part 3 – How to make an iPad book tutorial using Corona SDK." /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2011/08/part-3-how-to-make-ipad-book-tutorial.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU8GQng-eip7ImA9WhJQE04.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-3068299817133649605</id><published>2011-08-12T00:34:00.001-07:00</published><updated>2012-07-26T13:17:03.652-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-07-26T13:17:03.652-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="iPad" /><category scheme="http://www.blogger.com/atom/ns#" term="apps" /><category scheme="http://www.blogger.com/atom/ns#" term="tutorial" /><category scheme="http://www.blogger.com/atom/ns#" term="coronasdk" /><title>How to make an iPad ebook tutorial – Part 2</title><content type="html">As I promised here is Part 2 of my tutorial “How to make an iPad ebook” with CoronaSDK fast and easy.&lt;br /&gt;
I hope you already downloaded the necessary files as stated before, if not lucky you! cause I’m explaining how to do it in this video that I just recorded.&lt;br /&gt;
I noticed some outsynch problems, I’m not sure why… I’m using BBFlash to make the videos.&lt;br /&gt;
Next time I’ll try with a different one. FYI I already tested CamStudio and it works fine but it creates huge files. I’ll try it again to see if I can set it right.&lt;br /&gt;
Ok, less talk and more video:&lt;br /&gt;
&lt;iframe allowfullscreen="" frameborder="0" height="349" src="http://www.youtube.com/embed/u-AHlPY_-H0" width="560"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/7lUIeASmmWk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/3068299817133649605/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2011/08/how-to-make-ipad-ebook-tutorial-part-2.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/3068299817133649605?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/3068299817133649605?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/7lUIeASmmWk/how-to-make-ipad-ebook-tutorial-part-2.html" title="How to make an iPad ebook tutorial – Part 2" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://img.youtube.com/vi/u-AHlPY_-H0/default.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2011/08/how-to-make-ipad-ebook-tutorial-part-2.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkQMQ304eip7ImA9WhdQEE4.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-4545369880157294349</id><published>2011-08-10T20:43:00.001-07:00</published><updated>2011-08-10T20:46:22.332-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-10T20:46:22.332-07:00</app:edited><title /><content type="html">Where can I get this wonderful game for my child? I heard it teaches you basic numbers in Spanish!&lt;br /&gt;
&lt;br /&gt;
&lt;iframe width="560" height="349" src="http://www.youtube.com/embed/C-z--eGvjF0" frameborder="0" allowfullscreen&gt;&lt;iframe&gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/HWtQCpmKdlE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/4545369880157294349/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2011/08/where-can-i-get-this-wonderful-game-for.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/4545369880157294349?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/4545369880157294349?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/HWtQCpmKdlE/where-can-i-get-this-wonderful-game-for.html" title="" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://img.youtube.com/vi/C-z--eGvjF0/default.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2011/08/where-can-i-get-this-wonderful-game-for.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0UDR3kzeyp7ImA9WhdRGEo.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-2228324540797350142</id><published>2011-08-08T23:27:00.000-07:00</published><updated>2011-08-08T23:27:56.783-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-08T23:27:56.783-07:00</app:edited><title>Update</title><content type="html">Hey guys!&amp;nbsp; &lt;br /&gt;
I haven't forgotten about the tutorial I promised, I'm working on part 2 and I think I will have to trim it. I know I've said that I was going to teach how to make the drawings in flash but that's not gonna work, it's just too much.&lt;br /&gt;
&lt;br /&gt;
So the new tutorial will be a basic one using Corona SDK.&lt;br /&gt;
I'm currently working on the assets for the tutorial. So when I'm done with that you'll see how easy it is to make an iPad book with Corona SDK. &lt;br /&gt;
&lt;a href="http://lh6.ggpht.com/-9zUaN3ACq68/TkDEoO1t66I/AAAAAAAAAGI/HFSv2XrYikI/s1600-h/CoronaBadge_150x144%25255B2%25255D.png"&gt;&lt;img alt="CoronaBadge_150x144" border="0" height="148" src="http://lh5.ggpht.com/-e-4JukgHx7U/TkDEo8qVo9I/AAAAAAAAAGM/-R6SnqpqjJo/CoronaBadge_150x144_thumb.png?imgmax=800" style="background-image: none; border-bottom: 0px; border-left: 0px; border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-left: 0px; padding-right: 0px; padding-top: 0px;" title="CoronaBadge_150x144" width="154" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I'm going to ask you that, if you are following my tutorial, go to &lt;a href="http://ow.ly/5YpnS%22"&gt;http://ow.ly/5YpnS"&lt;/a&gt; and download the SDK. Don't worry just subscribe, which is totally free, and then download the windows or mac version.Once you do that we are ready to go.&lt;br /&gt;
&lt;br /&gt;
If you already went to the ansca website you probably seen that you need to use coding. That's right but it is really easy and fun. I promise. I'll show you exactly what you need to do and you can copy and paste code, replace the assets and voila!&lt;br /&gt;
I'm positive that you can have the iPad book running the same day. &lt;br /&gt;
Next part will be ready later this week, meaning you will have your book ready to show for this weekend! 100% guaranteed or your time spent reading my post back. Not sure how to fulfill that but I'll try ;)&lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/wq7-DAdT7KM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/2228324540797350142/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2011/08/update.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/2228324540797350142?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/2228324540797350142?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/wq7-DAdT7KM/update.html" title="Update" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/-e-4JukgHx7U/TkDEo8qVo9I/AAAAAAAAAGM/-R6SnqpqjJo/s72-c/CoronaBadge_150x144_thumb.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2011/08/update.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE8HSX49eyp7ImA9WhdRFkQ.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-7858132563197118158</id><published>2011-08-06T23:00:00.000-07:00</published><updated>2011-08-06T23:00:38.063-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-06T23:00:38.063-07:00</app:edited><title>How to publish your iPad book tutorial. Part 1 of 12.</title><content type="html">&lt;span class="Apple-style-span" style="background-color: #f9f9f9; color: #111111; font-family: Georgia, serif; font-size: 15px; line-height: 22px;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;This is just the announcement to my new tutorial about making apps for the iphone platform.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;We all know that is not easy to get into the app market. So I decided to give you a break and teach you how to publish your book in the App Store; and who knows even make money?.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;This tutorial can not guarantee that you will make money but I’m sure you’ll find this information very useful.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;If you follow along you will have your book ready to publish in 6 weeks. You could do it faster I’m sure but I can’t promise that I will have time to post the required tutorials in time.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;I have 5 apps in the making and one already published a month ago. You can find it&amp;nbsp;&lt;a href="http://ow.ly/5TOH2" style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-color: rgb(140, 140, 140); border-bottom-style: dotted; border-bottom-width: 1px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #111111; font-size: 15px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none; vertical-align: baseline;"&gt;here&lt;/a&gt;.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;So let’s start.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-3Ax9uQ-c21I/Tj4pxv2i1GI/AAAAAAAAAGA/L58hd5AWAxk/s1600/logoToto.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="http://4.bp.blogspot.com/-3Ax9uQ-c21I/Tj4pxv2i1GI/AAAAAAAAAGA/L58hd5AWAxk/s200/logoToto.png" width="200" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;This is a shopping list of what we are going to need:&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;1) A story.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;2) Images related to the story.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;3) Background music.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;4) An apple developer account.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;5) Download Ansca Mobile Corona SDK.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;6) Lots of motivation.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;I’m assuming that you already have a story.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;If you don’t have any images I’ll show you how to create them in Flash. After that we will download free music for our app. Then we will download the Corona SDK. Later I’ll guide you through the process of creating a developer account; which you need before you can submit your app.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;And finally the process of creating the required certificates to test the app on your iPad and submitting it to the App Store.&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; margin-bottom: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;Sounds easy?&lt;/div&gt;&lt;div style="background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 15px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;"&gt;See you in a couple of days.&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/4JW__fqZg9A" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/7858132563197118158/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2011/08/how-to-publish-your-ipad-book-tutorial.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/7858132563197118158?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/7858132563197118158?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/4JW__fqZg9A/how-to-publish-your-ipad-book-tutorial.html" title="How to publish your iPad book tutorial. Part 1 of 12." /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-3Ax9uQ-c21I/Tj4pxv2i1GI/AAAAAAAAAGA/L58hd5AWAxk/s72-c/logoToto.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2011/08/how-to-publish-your-ipad-book-tutorial.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CE4GQHo-fip7ImA9WhdRFEU.&quot;"><id>tag:blogger.com,1999:blog-2307908968722694950.post-7273157357530082146</id><published>2011-08-04T11:35:00.000-07:00</published><updated>2011-08-04T11:35:21.456-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-04T11:35:21.456-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="kids" /><category scheme="http://www.blogger.com/atom/ns#" term="iPad" /><category scheme="http://www.blogger.com/atom/ns#" term="apps" /><category scheme="http://www.blogger.com/atom/ns#" term="learning spanish" /><category scheme="http://www.blogger.com/atom/ns#" term="iphone" /><title>MiniFono App Review</title><content type="html">I asked the CEO of Toto Publishing Studios to give us a brief review of their new iPad App MiniFono. Here it is:&lt;br /&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen="" frameborder="0" height="349" src="http://www.youtube.com/embed/FKPEI6Coupg" width="560"&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
You can download it for free here: &lt;a href="http://itunes.apple.com/us/app/minifono/id446060200?mt=8&amp;amp;ls=1" title="http://itunes.apple.com/us/app/minifono/id446060200?mt=8&amp;amp;ls=1"&gt;http://itunes.apple.com/us/app/minifono/id446060200?mt=8&amp;amp;ls=1&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.totostudios.com/uploads/7/5/8/9/7589752/3372561.jpg" rel="tag" title="MiniFono Universal App for Kids"&gt;&lt;img src="http://www.totostudios.com/uploads/7/5/8/9/7589752/3372561.jpg" style="display: block; float: none; margin: 0px auto 15px;" /&gt;&lt;/a&gt;&lt;br /&gt;
If you like the game please review it in iTunes, thanks!&lt;img src="http://feeds.feedburner.com/~r/AdrianeraldoIsHere/~4/TeipGg9jpOE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://adrianeraldo.blogspot.com/feeds/7273157357530082146/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://adrianeraldo.blogspot.com/2011/08/minifono-app-review.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/7273157357530082146?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2307908968722694950/posts/default/7273157357530082146?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AdrianeraldoIsHere/~3/TeipGg9jpOE/minifono-app-review.html" title="MiniFono App Review" /><author><name>Adrian Eraldo Cavalcanti</name><uri>https://plus.google.com/106464586614692681315</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="//lh5.googleusercontent.com/-ZIDDr8l3bKo/AAAAAAAAAAI/AAAAAAAAAS8/J_hnvwda014/s512-c/photo.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://img.youtube.com/vi/FKPEI6Coupg/default.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://adrianeraldo.blogspot.com/2011/08/minifono-app-review.html</feedburner:origLink></entry></feed>
