About

David Wolber is a Professor of Computer Science at the University of San Francisco. He is the  author of App Inventor 2: Create your own Android apps along with Hal Abelson, Ellen Spertus and Liz Looney from the App Inventor team, and he runs appinventor.org which provides on-line, video-based  teaching lessons.

David teaches App Inventor in his “Computing, Mobile Apps, and the Web” course at USF.  The apps created by his students– mostly humanities and business majors with no prior programming experience–have been chronicled in WiredNew York Times, San Francisco Chronicle, Tech CrunchFortune.CNN.com, and Yahoo news.

David began teaching App Inventor as part of Google’s 2009 pilot program involving ten universities.  He’s received grants from Google and the W.M. Keck Foundation to support his work and is part of an NSF grant on teaching computational thinking with App Inventor. David served part of his sabbatical at MIT in 2014 and has regularly contributed to the App Inventor project.

Contact David Wolber

97 Responses

  1. I’m reading through your draft book and doing the lessons. This is a sweet little program. Nice to be on the edge of it. If you ever teach an online course I would love to know about it.

    I have a subscription to lynda.com. You may want to think about approaching them in the future for an App Inventor course.

    Thanks for your hard work.

    Regards!
    Rich

  2. Worked with app inventor to day for the first time. Thanks for your great lessons. Very good, first the take you by the hand and later on you have to do it yourself.
    Great great great !!!!!

    Jesse Rasmussen
    The Nethelands

  3. David –

    Absolutely awesome tutorials in function and implementation!

    My nine-year-old and I have been going through the tutorials, and we both can follow along easily and understand the logic and reasoning behind the various pieces. Thank you so much for the great work and contribution to the Android and programming communities. Hopefully we’ll have something useful to contribute as well.

    For now though, we’re just having fun. My six-year-old is anxious to get in on the action. She wants a horse you can pet that will neigh. And the nine-year-old is anxious to associate incorrect sounds with all sorts of animlas. He wants a much longer baseball quiz too – with players he knows. It has been great fun! Like I said, hopefully we’ll have something useful to contribute eventually. 🙂

    It’s great to see kids looking at computer programming as fun. Bestselling author Daniel Pink would be excited to know you’ve come up with a way to make computer programming a play-like activity for elementary school kids (and adults).

    Thanks again for the excellent work!

    Matt & Alex
    Thornton, CO

    • Matt and Alex, thanks for your kind words– they really made my day. I’ve been working hard on tutorials and a book we’re trying to complete, and its really nice to hear my work is helping people. I’ll pass your note to the Googlers on the App Inventor team– we all love to hear about kids having fun and building things (they may try to snatch the kids up as software engineers!)

      • First I am 13, taking an app inventor class(at a college called DigiPen) and we are learning a lot about electronics(we built a speaker!) and are using app inventor a lot. Your tutorials helped a lot when I am working at home on new projects. I am currently trying to make a new project called Space Invaders like the game completely on my own and i want to know if there is a way so that when I press the fire button, it will shoot(it already shoots and “deletes” bullets when it gets to the edge of screen) but I want there to be a way so that the fire button can make more then one bullet on the screen(in multiple shots) but so that when you press it a second time when first bullet is still on screen it makes a new bullet and doesn’t just reset the first bullet. Thanks so much for you extremely helpful and super positive tutorials! 🙂

      • Hi Alex. Here’s one scheme for having multiple bullets in
        a shooting game.

        1. Create multiple imagesprites, say five, one for each bullet.
        2. Make all of them invisible to start
        3. Keep a variable bulletNumber. It starts out as 1. 1 is associated with bulletSprite1
        2 with bulletSprite2, etc. When shoot button is clicked, use an if to check the bulletNumber,
        and make the right bullet visible and locate it at the right place.
        4. You might want to use imageSprite animation (direction, speed properties) instead of clock timers for this one.
        5. In events like collidedwith, You can use if statements to check which bullet was hit. An alternative is to use
        the AdvancedComponents tab, which allows you to generically do things to imageSprites.

        Hope this helps,

        Dave

  4. This is really COOL !!!!

    This is what Computing should be all about…the average Joe being able to Program his Computer the way in which it serves him best and not always needing a For-Profit Corporation to dictate his options.
    I suggested a similar type of interface to Apple thirty years ago! Alas…I wasn’t a Programmer…LoL

    Bob

  5. Hi David,

    Love the site, and the tutorials. 🙂
    Is there any timeframe where we can expect to see appinventor apps being supported for import into eclipse? I’d love to see the source code for some of your apps and use the functionality to experiment with my own stuff in the android sdk/eclipse environment!

    Thanks

    Phil

    • Hi Phil and thanks. I don’t believe Java/Android SDK code generation is in the immediate App Inventor plans though it is definitely a point of discussion. For now, the only way to connect to code and the web is through the TinyWebDB component (see my site appinventorapi.com).

      Dave

  6. Hi David, sorry I’m slightly confused, why mentioned the TinyWebDB component? How is this benefical? I read over it on your site and don’t see how it relates to my question. It’s a shame you cannot export to eclipse. 😦 How difficulut would it be to write Android, where’s my car for example in java? (assuming you are familiar enough with java!)

    • Philip! Yea I didn’t follow the “TinyWebDB part” either, but I wasn’t going to say anything. Maybe he meant that even if you could get the generated code for the app, and the code was java, and the code was not crazy looking, and had comments, you still could not get it off the phone as the only mechanism is webDb.

      This is what you were asking: wouldn’t it be great to be able to import the code into Eclipse, after saving the java text to, say, the SD card.

      It is a natural idea, and I feel confident that it will happen, and I expect that Eclipse (which I know noting about) will adopt an optional AI coding feature: you could view code, or selected portions, as blocks as text.

  7. David,

    Thank you for the fantastic site and all of the hard work. I received my invitation for app inventor earlier this week and finally had the chance to install the necessary tools on my computer and HTC Incredible earlier today.

    I’m a full time physician with an idea for developing an ap to assist my patients. Before I received the invitation to app inventor I was slowly teaching myself Java and C++ via books and online tutorials.

    My question for you is this… Do you think it is wise to “dabble” in multiple programming languages if I am seeking to develop an app as a hobby? I’ll be honest I’m leaning toward the multipronged approach.

    Already, there are tricks I’ve learned in C++ (particularly in manipulating the command line) which have been helpful in Java tutorials and for installing the Android SDK.

    Or should I just concentrate on one platform at a time. Any thoughts?

    Thanks again for the great site.

    • Hi Dr. Onyelja. I definitely think the programming concepts you learn in one language transfer easily to another. Sometimes early on its good to focus on one language so as to concentrate on those concepts and not get bogged down with syntax and language differences.

      I’d love to hear your ideas on app for patients. We are gearing up for final projects and I’m sure my students would be interested.

      Dave

  8. Respected sir,
    It;s really intersting ,nice ,xlent………………….
    amazing………………
    so far i is concerned it’s the best tutorial for google apps

  9. I just spent the last 2 hours completing the Basic Tutorials at App Inventor. Not being a programmer hasn’t slowed me a bit, thanks to the wonderful lessons. Just seeing the results play out on the connected phone is enough to get anyone giddy with excitement.

    Thanks for your hard work and I look forward for more Tutorials.

  10. Professor Wolber,

    I teach an Engineering/Design class to 9th graders in NYC. We focus on the design process, problem solving, and teamwork in the context of a design challenge (i.e. build the slowest parachute, design a home for a post-quake Haiti). I’ve been thinking about doing an app design challenge next term. Do you think ninth graders could develop enough skill with app inventor for groups to design their own apps? How long would it take them to get to this level?

    Steve

  11. Hi David,

    Thank you very much for your tutorial. I would like to use a Zigbee communication and I have found a USB Zigbee stick with Linux driver. Do you have any tips to send and receive commands and data using App Inventor?

    Truly yours,

    Remi Jonquieres

  12. Hi David, I am from Honduras in Central america and I am learning about Android programming, I would like to make a variation of “NoTextWhileDriving”, something like “NoCallsWhileDriving” , “Meeting”, “Sleeping” or something, do you know if that is posible from AppInventor, becouse y dont find the options in “PhoneCall1”, I am sorry to bother you, thanks for your time, good job.

  13. Hi David Im independent inventor.Im looking for a costomer license my invention.I just got non provisional number from USPTO.The idea is to simplify and cheaper for the consumer.The main idea, Intercom-to-cell phone communication from a distance.An entry intercom, controller system that uses a regular phone line.A microphone ,speakerand camera allow the intercom to communicate with a cell phone(Apple iphone).You can check what is going on at the place from a cell phone from a distance by calling there and listening in via the microphone,watching via the camera. Intercom (controller) will send SMS or special signal to cell phone in case of an emergency if any signal from security sensor, or other optional devices.

    regards Volodymyr Sukhov

  14. Dear Sir,

    I have built an app using appinventor for calculating and sharing a person’s carbon footprint on Twitter. I wanted to extend it to Facebook ie. post on Wall with friends. I am unable to proceed on how can I do the same. Could you please help? Is there any tutorial or method to do the same?

    Thanks in advance.
    – Parashar

    • Hi Parashar. Unfortunately, there’s no Facebook component. The only way to hook into Facebook from App Inventor is to create an App-Inventor-Compliant API. See my site appinventorapi.com for instructions.

      Dave

      • Dear Sir,

        Thanks for sharing the website. I will check it out. If am successful in building one before AI team releases it, I will share it. I am a novice in Python and PHP but will still try it.
        An alternative which I was thinking, is there anyway to use Activitystarter to invoke the Facebook app installed on the phone? If you have any thoughts on the same, could you please share.

        Thanks,
        Parashar

  15. David

    I see in the FAQs that they are working on the ability to upload a finished app to the market do you know if that has been resolved?

  16. Your app inventor tutorials are great! It’s like building LEGO again 🙂 I did my first app in less than 60 minutes.

    I would like to do a multiple choice quiz with 1000+ questions with the wrong answers randomly selected from a pool of categorized answers.

    Obviously this can’t easily be done with App Inventor. I’m lazy. I don’t feel like creating 1000+ blocks by hand.

    I know the programming language Python, so I’m not afraid to look at some code. Do you have a tutorial on how to get started with writing app source code? Do you recommend any books?

    Thank you for creating your tutorials!

    Tommy

    • The QuizMe/MakeQuiz tutorial should convince you that the program you envision does not need to have 1000 blocks. 50 is probably more than enough. The questions and answers could all be data.

  17. I just some days ago found out about app inventor and want to know if it is possible to create a service in app inventor, its an app but it wouldn’t have a screen, interface. like a background application.

  18. Professor Wolber
    I really like the text you have written for the app inventor. I am doing a little translation for the text (into chinese) so that I can share your ideas/knowledge with my friends.

    I do hope to try build a simple app myself. I hope it can render the forum i visited often into a mobile version. The website does have RSS feeds for different sub-forum. So someone suggests that I can use what they call RSS feed reader. I am not sure what app inventor can do in that. I understand I should first get a template, then fill it with the content generated by RSS feed.
    Could u give me a few instructions on where to start (if the app inventor can create something enough just for that purpose)? I am quite amateur in programing but don’t mind trying to learn something new.

  19. I love your tutorials. I have done almost all of them. I am really interested in the Workout app tutorial. Any idea when it will be completed? i think there are some definitions missing. And without pics I am starting to get lost.
    this is the one i am talking about:
    http://www.appinventor.org/workout-tutorial

  20. My 9yr old daughter just bought a hacked pandigital 7″ tablet for $120. Thanks to you, google, and slatedroid she’ll soon be writing her own apps on it and learning how fun software development can be once you learn the tools. This reminds me of how fun it was to work through the applesoft basic tutorials in the early 80’s when I was in high school and apple liked to share all information about their products. The app inventor environment is going to revolutionize programming and help elementary school kids learn math through play.

  21. I really love APP INVENTOR,

    and I think it is the first truly great invention of the century !

    Now everybody can program its own software, and it can’t but get better.

    I have to criticize one thing though.

    How come with APP INVENTOR you can create only executables for android, and not also exectuables for Windows XP, MAC OS, or other OS ?

    Could you please suggest me a WINXP alternative to have executables running on a Windows machine ?

    Thanks,

    Nestor

  22. David,
    Great work!! I have been learning from your tutorials. I see your books is listed in Amazon, but not released yet. When will this be out? Also will there be further information for bluetooth integration in the book. I see that components are available, but to-date I do not see any good tutorials (for novice like me). If you have any further insight on this I would appreciate it. Keep up the good work. Best regards,
    Dave

  23. Hello David,

    I am a grad student taking classes of eclipse and now app inventor and I went to take all of your useful tutorials. I do have a question in regards on how to create a register form or a sign up form once you open the app. The reason I need this is because I need to save users database into tinyDB and then be able to use the telephone numbers stored in it. Can you write a question and be sent out to a specific user once that person is registered with the app?

    Thank you very much.

    J.

  24. caro professor,

    nao sou versado em ingles , por isso escrevo em portugues quero parabeliza-lo por sua criação espero muito poder usa-lo . sempre tive um desejo de programar mas sempre achei obscuro os codigo agora sei que tudo vai ser diferente. Espero em breve lhe enviar um programa feito por mim…rss

    continue neste caminho.

  25. I want to design a voice recognition app for android. Where can I get a good tutorial. I want the app to listen and respond if else with a *.wav file

    • Hi Jimmy. The SpeechRecognizer component is not bad– you’ll find it in the “other stuff” folder. Put an if block within the SpeechRecognizer.AfterGettingText event handler, and if the “result” matches some word you’re looking for, play a sound file.

  26. Hi guys!!! I love Android and so…..I love APPINVENTOR!!
    A question: when will be ready the full version of the AppInventor book?
    Thanks a lot!!
    Cristian

  27. Thanks Prof/ Wolber for this great tool

  28. I love Appinventor, but I’m finding that the Apps once installed on the phone open slowly. Is there a way to speed up load times? I’m finding apps that are about 4mb take about 8 to 10 seconds to load. Once they load, they operate fast..

  29. Hi sir. I’m a recently hired teacher for IT. I’m planning to teach my student about app inventor. You teach me a lot of this sir. Thank you so much. Hope you can visit here in the Philippines.

  30. Great tutorial, thanks! I’ve a question for you professor, a doubt about tinywebdb component: if i use the same app (which uses tinywebdn) on different phone and so the component point to the same db url, how the app recognize the data to pick from db? Are they marked as provenient from different devices so the app knows what to use? So, if on the phone A i save “Kevin” in the “name” tag, and on the phone B i save “John”, which data i will find on the db? Both? Or just John? Sorry for bad explanation, hope it’s understandable… thanks

  31. Hi, thanks for the tutorials and great teaching. I wanted to make a program that allows me to speak input to text. Saving the text to a google spreadsheet. The text to speech tutorial is nice but is there a tutorial showing the speak to text and saving as a list or output to other google apps or files.

    • Hi Dana. Sounds cool. There is now a component for using Fusion tables– you might want to use it to store the output. You could also use the new Web component. Unfortunately, I don’t yet have tutorials for these or for speak to text.

      Dave

  32. Hello Sir, i’m just read and follow Quiz Me tutorial. At this paragraph

    “The problem with the app is that it always increments the currentQuestionIndex variable when the NextButton is clicked. When currentQuestionIndex is already 3 and the user clicks the NextButton, the app changes currentQuestionIndex from 3 to 4, then calls select list item to get the currentQuestionIndexth, or in this case, the 4th item. Since there are only three items in the variable QuestionList, Android complains.

    What the app needs to do is ask a question– check a condition– when the NextButton is clicked, and execute different blocks dependending on the answer. One way to ask the question is to ask, “is the variable currentQuestionIndex already 3?” If the answer is yes, you should set currentQuestionIndex back to 0 so the user is taken back to the first question.”

    When i use “if test-then do” block my “next” button didn’t work after that, but if i change with “ifelse” block it works just fine.

    Can you explain that? are there somethings that i forget? Can you reply to my email please? Thank for your attention sir

  33. Благодарю от души , David Wolber !!!

    Я начал изучения программирования с Вашей помощью! Моему энтузиазму нет предела!))

  34. Awesome, fantastic! I followed the course in July, and built a great app already. Due to the discontinuing I switched to Eclipse and the Android SDK, but I hate to do the programming, despite the fact that I’m a programmer for more than 25 years. Regards, Sjaak.

  35. Hi Dr Wolber,

    Is AppInventor is suitable for developing apps for my Nexus7 tablet, or if I should go down the Java SDK/Eclipse route? I’ve just ordered a Nexus7 tablet and want to do some simple app development with my 12yo son, so I’m just wondering if AppInventor apps will work on the Nexus7, ie. will the apps work with new JellyBean version of android?

    ps. Can the emulator emulate a 7″ tablet, or just android phones?

  36. Hi David! I am using the textbook chapters to teach a summer institute on mobile apps for a one week course for high school students. And I wanted to let you know that I think we found a missed item in the textbook in Chapter 7: Android, Where’s My Car?. I believe that Table 7-1 fails to include an item. Component type: label, palette group: basic, What you’ll name it: ?, and purpose: display the text “Address:”. Please correct me if I am wrong, but I believe this necessary for the label “Address:” to appear in the Remember Address location.

    Also, thank you for this book. The students and I are enjoying it and it is also helpful to my college students as well!

  37. Hello
    The last Days I tried to learn how the app inventor works and did many of your tutorials. Now I’m at the Quiz and Answer App with the TinyWebDB.

    My Problem ist, i want to change the Quiz to a Chat. It works, but all new messages appear at the bottom – But I want them on the top (so its not an endless long chat). But I don’t know how this could be done. An alternative could be, that after 5-10 messages the old ones get deleted, but I also don’t know how this could work… :l

    Could anyone please help me?
    Thanks

  38. Looked over your tutorials but don’t see a way to access Android HW buttons (like the menu button). Is there a way to do this with App Inventor?

    • Hi Doug. No method yet for accessing HW buttons or menu. Menu is coming soon, one of my USF students is contributing to the implementation.

      Dave

  39. Thanx! I’m still waiting for that option.

    Grtz,
    Sjaak.

  40. cant download eclispe..someone please help

  41. Dear professor
    I’m trying to create an application that send an SMS message to the last call (or one of the 3 last calls), however I have no clew to rich those numbers.

    Thanx!!

    Moshe
    Jerusalem – Israel

  42. Hello Prof. Wolber,

    I have a question about, playing videos on the webviewer, according to your post (http://www.appinventor.org/media-editing) the only possible way to view videos is with the use of the ActivityStarter component. Right now I’m building a simple browser app and I have everything set to go, the only thing I’m missing are playing media objects on the webviewer (e.g. videos on youtube), you said that the activity starter is the only way but I can’t seem to figure out where to attach it, there’s no if Link in webviewer is clicked block where I can put the command call activitystarter.startactivity, so I made a little test, I made a button (a play button) where its set to playbutton.click->set activitystarter.dataUri to webviewer.currentURL->call activitystarter.startactivity and it works, it plays the video, but what happens is that it opens the phones built-in browser and you play the video from there, which is kinda off because I want users to use my browser not the built in phone browser.

    So what I’m trying to say is how can I play the video when the user presses the play video on the webviewer? Where do I attach the startactivity block when there is no if links or media files on webviewer is click block to attach it on.

    Hope to hear your suggestions,

    -Jo

  43. Howdy would you mind stating which blog platform you’re working with? I’m looking to start my own
    blog soon but I’m having a hard time choosing between BlogEngine/Wordpress/B2evolution and Drupal. The reason I ask is because your layout seems different then most blogs and I’m
    looking for something completely unique. P.S Apologies for getting off-topic but I had to ask!

  44. Hi, I have used this AppInventor for about 3 weeks so far and liked it a lot. Is there any plan to provide blocks for PhoneCall.CallReceived (phone number) and Radio buttons?

    As of now, I am using checkboxes and writing some code to mimic the Radio buttons. But if built-In Radio buttons are available, we can save effort for all developers.

  45. i like your tutorial but it is not easy
    do you have more studies and samples especially block preparation
    regards from turkey

  46. Just wanted to tell you that I really appreciate your work! Keep on going!

  47. Can Appinventor create or make a book or book app in Google store? I already done hellopur basic course meow, and but I don’t know how make a book with AI. Help me where document to make that

  48. I have written a bunch of c++code and have an executable file that
    I would like to be called from within AppInventor.

    How can I run a c++ executable from within AppInventor?
    I will then display the output from within AppInventor.

    Many Thanks!

  49. As males age they shed muscle, particularly if they are not
    physically active.If you have a program to shed your excess weight, you may possibly
    attempt this system and see the promised outcomes over
    time.They could also watch the videos included that
    they require to perform in just about every physical exercise.
    Among the best factors about the fat loss element program is that
    it consists of detailed workout plans for three entirely diverse levels of trainees:
    newbie, intermediate and advanced, so you are able to do these workout routines regardless of your existing fitness level.
    You will also need to make handful of adjustments in your consuming habits and to exercising on
    a regular basis to be capable to get the very most effective final results from the fitness
    plan.Research has proven that a substantial amount of
    visceral fat in the belly can contribute to life-threatening ailments.

    Heredity can also be a factor in how you acquire weight.
    Adding some form of strength instruction is also suggested to re-build muscle.
    The toughest stage of the program is in the initial two weeks, the detoxification stage.
    While it does concentrate on very good nutrition
    and exercising, it will not demand you to adjust your whole
    life to get final results.The ideal diet regime proportions that are indicated in the
    method are also realistic, and shoppers have indicated
    that they realized some increased energy right after
    working with the plan.The physique burns calories slower when muscle is lost and it becomes simpler to
    obtain weight.

  50. How does Penis Advantage function?Do you want to boost your penis size.
    ..Because of this you can enhance the locations you want to take
    care of and disregard the places you do not.In erection of the penis no muscles
    are involved but pressure.Overcome premature ejaculation.
    When on arousal state the arteries open that makes it possible for pressurized blood to enter
    the corpora cavernosa that causes the penis to
    elongate and boost in size in erection.Realizing that you are following a risk-free
    willy enlargement system will give you one particular significantly less issue to bother about so you
    can concentrate on pursuing the workout routines.
    How penis workouts perform?Everlasting penile enlargement which will
    be permanent.The penis is composed of 3 parts:
    two balloon-like tubes known as corpora cavernosa.Using this
    form of details you are capable to obtain far from
    the mundane, identical old, very same old.However, it has
    been established a lot of times that enhancement pills are not just ineffective, they
    are also extremely dangerous.Penis Advantage does
    operate extremely effectively.Yes, it is only a set of workouts with
    no taking any pills or other food supplements.If you want successful, risk-free,
    and permanent outcomes, then my greatest recommendation is for you to
    workout your penis.Now it is achievable to have a bigger willy as well as a standard hunting
    willy.The size of your penis is presently restrained to the quantity of blood these two
    important chambers can retain.

  51. Dear prof. Wolber
    I was reading the page https://sites.google.com/site/appinventor/interacting-with-web-services
    and I found out that you have used a block called “twitter.login”. I cant find any function in appinventor block editor under this name. Could you please tell me how you have used this function ? Besides that, the link to the twitter demo is dead :
    https://sites.google.com/site/appinventorhelp/system/errors/NodeNotFound?suri=wuid://defaultdomain/appinventorhelp/gx:ec6d79e9f43fa34

    thnx

  52. hello prof. Wolber,
    its really nice to read your book on app inventor.
    one of the examples here on following link I have started to build in app inventor and made up o the first video and made the .apk file and got at my galaxy tab2 7.0 mobile. while the sms is received, nothing happens in the return a caption raised in my mobile as — : id : “unable to start GV helper”.
    cant understand this as I am novice to app inventor can you please guide whats going wrong sir.

  53. I m very sorry sir I forgot to post the link in my previous message.
    here is the link and the project is : “no texting while biking”

    https://sites.google.com/site/appinventor/screencasts

    ( I have made only up to the part shown in first video ( up to sending sms back))

  54. AppInvetor interfaces are not nice and something should be done about to draw more developers to it

  55. Hello
    I am just beginning to use app inventor with my class however they can’t seem to download to their actual phones. One of the students says it is not recognising an android 4 or later phone? Is this correct?

  56. The steps to making wonderful opportunity preferencesAn ancient wives’ account reads that females, When generating final choice, Know they can cheap moncler jackets hinge more about feelings, Understanding that men and wogrownup, With the same situation, Know they can hinge mainly on reason. However that perfect idea Cooking normally takes a constantly Relocating control attached to intelligent yet instinctive key. As it pertains to full time job reinvention, Your normally your foremost secrets and techniques for what you should do or why not be.
    read more http://www.gradzen.com/

  57. This piece of writing presents clear idea for the new visitors of blogging, that
    in fact how to do blogging and site-building.

  58. hi,
    issue with my app inventor. i have a simple quiz app, but the third an final question is a problem. for every answer, when the correct answer is inputted, it comes up with correct.. however on the last question.. it seems to always output incorrect (even when correct), followed by the emulator crashing as a result due to some number absence or something like that. this is part of my GCSE coursework so i would appreciate a reply as soon as possible.

    Note: Head of department and nearly anybody with any qualification cannot find an issue with the block program

  59. Hii David,
    Its great work we can seen from App inventor.i feel its magic.
    Im learning to build apps with App inventor.
    I find the apps created are functioning only when it is open only in the foreground,even the screen locks, its not functioning .But practically we cannot open the app always.How to overcome this by make the app always run in the background until unless user stop the app or it should open/start automatically with some trigger like when SMS received.
    How can be achieved with App inventor.Pls help

    Regards
    Manojkumar

  60. Hi there to all, how is all, I think every one
    is getting more from this website, and your views are fastidious for new visitors.

  61. Tremendous things here. I am very satisfied to peer your post.
    Thanks a lot and I am taking a look forward to contact you.
    Will you kindly drop me a mail?

  62. I’m really enjoying the design and layout of your website.
    It’s a very easy on the eyes which makes it much more
    enjoyable for me to come here and visit more often. Did you hire
    out a developer to create your theme? Exceptional work!

  63. Hi, I’am a chinese guy, and I have read all of the demo and cource in appinventor.org. It’s a great book about starter, I want tanslate it and import the book to chinese reader, is there some way to do this ?
    Thank you!

  64. Hi David,
    I just started with app inventor and enjoy it. However, confused with table 11.1 in BroadcastHub. There are four labels required in the user interface – Label2 is called BroadcastListLabel and the actual Label3 is called Label2. Please help. Thanks !

  65. Very good post! We wioll be linking to this great article on our website.

    Keeep up the great writing.

  66. I blog frequently and I truly thank you for your information. This article has really peaked my
    interest. I’m going to book mark your blog and keep checking for new details about once a week.
    I subscribed to your RSS feed as well.

  67. Now, by planning to their webpage, it is possible to submit an application for a poor credit loan online and instantly
    know what kind of great interest rates and quotes you can anticipate to handle medically proven Weight loss Supplements the financial
    meltdown and economic depression in america may get a new healthcare industry and medical economy
    in many ways.

  68. Hello. I am a student who likes App Inventor. I downed make the app does not recall the moment the capacity of the apps over 11mb apk. I was so sorry in the limits of the capacity to create a variety of apps I want. Do you want to spend more than 11mb capacity if you ever would like to have the developer pay to register. Please mail back.

  69. Hello, I was wondering if you could help me? I’m new to app inventer and I want to make a quiz that displays the question and also reads it out, I don’t know how to do this and I have done a lot of your tutorials but still don’t understand it? I also need to add a timer so if they don’t answer in 30 seconds it goes to game over and try again.

  70. please ..how can i make rss reader with app inventor ..i put links but work incorrectly

  71. Hi David,
    I am a teacher at a girls school.
    We need an app for the girls to which i can push notices to remind them to check deadlines and new notes.
    I have reviewed many of the App inventor sites but have not been successful. Also most of the tinyweb links are dead.
    I have seen the texting function but that seems to work on phone numbers which would not be usable with approx. 1000 recipients.
    If push notices are not possible would you send to me the block config for RSS please. I see mention of it but again dead links.
    sorry to bother you but …..
    thanks
    phil
    philip.devitt@det.nsw.edu.au

  72. Good afternoon Enter into me deeper and fuck my nickname (Agata59)

    Copy the link and go to me… bit.ly/2xKLUZx

    8198111984596

  73. Hello
    I want to graphs of functions with the help of the canvas component in the app inventor environment,but interactively with the user (in fact the user could enter the diagram and make changes to it).
    What do I want to know about the work that the site does on mathopenref and Canvas?

  74. May you make an updated version of the Workout
    Tutorial.

  75. Buenos días, que alternativas tengo para trabajar con API en Appinventor, gracias de antemano.

Leave a reply to wolber Cancel reply