2017년 5월 30일 화요일

navigator GPS


Hello there is a way to create a gps navigator like Waze or google maps?

--
There are many ways to use App Inventor along with the Google Map API.  The techniques can be adapted to mage your gps Navigator..  Here are some basic tutorials

Android, Where's My Car? for App Inventor 2
You parked somewhere near the stadium, but when the concert ends you don't have a clue where the car is. Fortunately you haven't lost your Android phone that never forgets anything, and you remember you have the hot new app, Android, Where's My Car?. With this app, you click a button when you park your car, and the Android uses its location sensor to record the car's GPS coordinates and address. Later, when you reopen the app, it shows you a map from where you are to the remembered location-- problem solved! With this tutorial you'll be able to download a created app and then study the annotated blocks below to better understand the app and App Inventor programming in general. This app covers: GPS, TinyDB, and using Activity Starter to open a map.

Map It: Displaying Locations on a Google Map
This tutorial shows how you can develop an app that allows you to record list of addresses and view the address on the Google Maps. It will also show you how view your current location on the Google Map.

Exploring with Location Sensor in AI2
The location sensor object is used to communicate with the global positioning satellite receiver (GPS) in your phone/tablet. When the LocationSensor communicates with the built-in GPS receiver, the GPS can determine the location of your device.  The sensor can also work with network/wifi location services.  Finding a location using the network uses very different techniques to determine a location. Location means, the device's present latitude and longitude or it can mean your street address.

Have you tried any of these tutorials Nando?

or very simply you could use ActivityStarter to navigate  as shown above if you turn your GPS on and allow LocationServices.


-- 

HELLO STEVE THANK YOU VERY MUCH FOR YOUR SO QUICK RESPONSE, WHAT YOU INDICATED ME HAS ALREADY DONE IN MY PROJECT HE MARK DOTS ON MAP AND USA ActivityStarter TO CALL A NATIVE GOOGLE BROWSER, WHAT I LOOK FOR IS A WAY TO CREATE MY PROPERTY BROWSER, LIKE THE WAZE FOR EXAMPLE.

-- 
Sorry.  I do not understand exactly what you want to do.  Your image posted is from WAZE.  What do you mean 'property browser?'

If you want to show  many different locations, use a Google Map API Static Map with multiple pins https://developers.google.com/maps/documentation/static-maps/intro#quick_example .  These examples can be replicated with AI2.

If you want a traffic layer use JavaScript to display https://developers.google.com/maps/documentation/javascript/examples/layer-traffic  

Here are other links:




Google has a Business Map API...perhaps that is what you are interested in?

Provide a better description of exactly what you want to do Nando and someone will provide more advice.  It appears you may already have created a StaticMap with pins using google.   You can do something similar using OSM.

Perhaps find the articles     
How to start OsmAnd and open the map with a place marker and  How to launch Waze to look for a specified location   described on Taifun's snippets http://puravidaapps.com/snippets.php 

-- 

Running AI2 in the badkground


I have seen some post over a year ago about the proposal.  Any updates on this subject?

--
Bad-k-ground: nice typo!
Everybody thinks it will be this this year... Keep your fingers crossed!

-- 

Duration format hh:mm:ss


do you know how to display duration between two instants in format HH:MM:SS?
For example 00:01:14
0 hours
1 minutes
14 seconds
?

--
I don't remember exactly how to do that but I think it is easy to do using timepicker component. A few time ago I found a very good example on the gallery, search for timepicker there and you will probably find it.

When I arrive home I can give you a hand if you don't succeed.

--
Please give me a hand ;)

--
It would really help if you provided a screenshot of your relevant blocks, so we can see what you are trying to do, and where the problem may be.

--
here is a solution, it's a little bit complicated, probably someone comes up with a simpler solution...

--
I do not know whether it is simpler. In any case, it is different. 
From my count-down-to-2016 in the gallery, http://ai2.appinventor.mit.edu/#6702056039776256
Here is the relevant procedure:
--
BTW could you recommend any tutorial pertaining to clock duration thing? I mean I wanna make a timer with no variables.

--

time interval


I want to build an application simple enough as an accountant working overtime
I put two time picker, and I want the app to give me the time interval between them
Because the distribution of hours and minutes I keep getting an error of the abnormal data

I tried to look the forum and the network and did not find a solution .... I will be happy for any ideas

-- 

use Do it to debug your blocks, see also tip 4 here

It would really help if you provided a screenshot of your relevant blocks, so we can see what you are trying to do, and where the problem may be.

--


The whole thing is not as easy as it sounds and to calculate durations is quite hard. Therefore I spent my lazy sunday afternoon with making a little app.
Things to note: you do not want to have the app at the foreground while you are working overtime. Therefore the start time is stored in a TinyDB. If you do overtime again you must clear this time first.
The calculation of the duration in hours and minutes subtracts an hour. I cannot really explain it. It has something to do that your time will be in january 1970, but it works fine this way. I attached an .aia too.

--

this is other code, withclock and withoutclock

withoutclock you can use

--
That is a very nice solution!
In practice you still need a TinyDB though, because you do not want to loose the start time if the user closes the app while doing overtime.

--
@Juan, also take care not to work past midnight.
(Been there, done that).

--
OK Abraham, but user asks "put two time picker, and I want the app to give me the time interval between them", only difference beetween 2 TimePicker, not Date. This is only an example code.

--

I want make Overtime check in and check out app.!


I want make Overtime Check in and Check out application for my fellow co-works?

--
Maybe this thread can help you: time interval

-- 

TinyDB storage questions


When you store a list in a tag in tinyDB, when the app is reopened, is tinyDB tag's value still a list?  Can you add items to the list by using the add items to list block, the list being the call tinyDB.GetValue tag block?  I think that works, but I'm not sure.

--
Yes, the TinyDB values are persistent and will be available every time user starts the app.

Checkout my tutorial on list and tinydb here: https://amerkashi.wordpress.com/2014/05/12/lists/

-- 

How to program an interval between 2 sounds?


I need to put 2 sounds in sequence. When sound 1 finishes, sound 2 initiates. 

--
Do you know the length in time of the first sound? If you do you can start a clock when the first sound starts playing. Let's say the first sound is 5 seconds, then make a clock with 5000 ms and play the sound in the timer event. when the 2nd sound is played, disable  the clock.

-- 

-- 

Instantiate dynamic number of image objects


I am creating an app that connects to a server to display a bunch of images.
The problem is I don't know how many pictures will need to be displayed.
Therefore I need to create the image object in the code and add it to a table arrangement. How do you create a new image object through code?

--
App Inventor can't create components at runtime (dynamically) You have to pre-place everything you are going to use and be creative on how to use use it.
In this case, you can place 5 or 10 components and make them visible only if you need them. If you need more, then consider ceating a paging system, where you show 10 at a time, and the user touches a PREVIOUS and NEXT button to access the other.
Then you reuse the same 10 image component over and over.

-- 

canvas


Put on a background the image of good quality (city map), it is important to me. But with an increase in the application, it turned out that the quality is spoiled, and the pixels appear blurred. What to do?

--
1) If you used a jpg map image, try using a png image instead.   Png images behave better when magnified or reduced in scale.
2)  If the background map image is large (perhaps 2000 x 2000 pixels) and you place it in a Canvas that may be 320 x 480 pixels, does that make much sense?  AI2 can reduce images in size, however the algorithm may blur when the reduction or magnification are large.

This article might help 


Wonderful you have a quality map image, but you may need to reduce it in size to get the background image on your device to be sharp.

-- 

Blocks Editor Duplicate Issue


Hello, The block editor duplicates since the latest update when inserting always the blocks 20 times

--
Same issue here.

-- 
Here are some questions that your answers might help us pinpoint the issue:

Does this happen every time you drag a block? Or only from the drawer/backpack? Is it a specific block type or every block?

--
Same issue here.
Also if i want to use a mathematical function, it appears on the screen but i cannot move it.

-- 
@ Leon ... how about an example.  I cannot reproduce what you are doing ... I can move math functions anywhere.

@ Radu ... same what issue?

@ Janik  I duplicated more than 20 times with now issues

Developers, please provide a better explanation of the problem you see and post an small Project aia that demonstrates what is happening. PLEASE answer Evan's questions.
Here is another question.  Are you using the English language version of AI or one another language?

So far, no one I am aware can reproduce anything like what you guys are describing so an example would be appreciated.

-- 
I was just able to reproduce this Evan.



go to Sprite1, drag the block to the lower left corner of the blocks editor screen.... instead of bringing one copy of Sprite1,   I get dozens.   Se the number of yellow 'errors;

--
I can't seem to replicate this on Mac OS X 10.12.5 with Chrome 58.0.3029.110. Can you record a video of it happening and send it to me, just in case I'm not understanding the correct sequence of actions? I'll try to procure a Windows machine as well.

-- 
Sri, no can do a video.    The problem is not as reproducible as I thought.  It happens and if I were working on a critical project, boy would I be frustrated because it takes awhile to undo the damage.

I suspect it has to do with holding a mouse button during a drag on my Win10 box.    I will try to see (using a clean Project) whether I can get the effect to reproduce on demand.

-- 
Oh no, got another problem.  While researching the duplicate object creation   I get this

The circled block can move around in the advice message when moved by the mouse but it cannot leave that area.    Neither of the two buttons can be clicked.  To exit, I had to close AI.

-- 
That one I can reproduce. We will get a fix out over the weekend for that.

--
I send  trial i just made.
I made an aia after removing about 200 doubles.
The last one ( to fetch the time ) is not movable.
Maybe this will help


-- 
We have released nb156a that contains code to mitigate this issue. Unfortunately you will still need to delete the extra blocks but it should stop this from happening again in the future. If you continue to have problems once the problematic blocks are gone please let me know as soon as possible. We will continue to monitor the situation.

--
I got one of these developing my phone_scraper blocks just now.

My trackball is very bouncy, FYI.
I also work with buttons reversed, using my left hand.

A textbox.Text block fell off my drag before it could clear the
textbox component blocks pallete and landed with a couple of dozen
bouncy copies.  Strangely, they did not score yellow flags.

Eventually I was able to clear them by dragging my viewport away.

This was AFTER the fix mentioned in the release notes.

-- 
Easy way to clear the repetitive copies of a control spawned with release 156

Left click on the offending block.  Then hit the Delete key.  Keep deleting until the 50 or 60 or 80 so copies disappear.

Yes 156a did not fix the issue.   Evan says he has some more ideas to clear this bug.

-- 

search for splash screen


Originally "Screen1" was the menu screen. I had "Screen1.Initialize" control block open "splashscreen for 5 seconds, then close it. The problem was ...
On the start of Screen1 make it load a new screen you called Splash. Put a clock on the Splash screen with 5000 interval to close the Splash screen.
May i ask why do need a splashscreen? Sorry for entering your question, but i am realy courious why people do that. In my opinion splashscreens are ...
Hello, Thank you for your replies... I though so that I will have to do it with visible true or false depens what I need to show first and second...
you can use the Sharing component to share for example a link to your app on Google Play. concerning the Splash Screen, Screen1 is always the first ...
Have two clocks... Start the first when the first splash screen shows. When it fires, hide the first arrangement, start the second clock, show the second ...
File Assistant to copy and rename Screens by Tim; How to copy screens by Scott and a video by Hossein. Taifun ...
The Clock is used for two different things, depending on the repeats flag. You turn on repeats for things like metronomes. You leave it off for alarm ...
If you need a timed Splash Screen, watch this video. App with Splash Screen. regards.
... splash screen and you fill find for example ABG's answer https://groups.google. com/d/msg/mitappinventortest/4CEtTvTJOSg/ULVvOQdvEQAJ and ...
Whenever there's an issue with App Inventor, or an announcement you should see, we post it in App Inventor's Splash Screen. It seems that few ...
Instead, provide a splash screen to display immediately (this could be a Vertical layout set to true and then to false while hiding other screen elements ...
you can copy the screens and use the new splash screen as Screen1... How to copy screens by Scott and a video by Hossein. Taifun ...
Looks like you have a clock to show the splash screen for n seconds, and after the splash screen is closed, the clock keeps opening the main screen.
When I try to work on Screen1, the computer screen and the screen on my phone keep cycling through the splash screen and the about screen etc.
I am trying to use multiple screens and here is the problem I am running into. Screen1 has a splash screen that is show with a timer before the home ...
Whenever there's an issue with App Inventor, or an announcement you should see, we post it in App Inventor's Splash Screen. It seems that few ...
So i have followed code and idea of one vertical arrangement and so far as i can tell the splash screen now indeed does work and does what it should ...
OK, your buttons work now that Companion is updated to 2.35? You are probably using version 146.c ... Jeff forgot to update the splash screen...go to ...
I have a problem with the inclusion of a screen splash in my app. The request does not cover how to create the splash screen, I do it, but if you can do ...
Jon... In the Splash Screen that opens up when you go to the App Inventor site, not the forum, there's a BIG RED BOX... You have to click the continue ...
The best way is to put everything you already have into a single arrangement. Put all of your splash screen stuff into another arrangement. Make the ...
...however you can use the open another screen ScreenName block in Screen1 to make it appear that ScreenName is the first screen to the user. ---.
What do your blocks look like Richard? After your app shows the splash screen ( perhaps using a Clock.Timer), did you write code to turn off the routine ...
Hi. I am trying to Develop a Game and I need to Use the Entire Screen of the device for Splash screen and for my Game window. In App Inventor Every ...
I have 3 screens and need to add a new one. The problem is, I want this one to be a splash screen. Is it possible to add a new one and have it be the ...
Did you read the HUGE RED BOX in the splash screen of App Inventor when it loads? It's really hard to miss... If not, I suggest you reload your AI ...
1) A" screen that pops up before the app itself" is called a splash screen; it can be implemented in several way. One way involves hiding and showing ...
Will this work with the following:? my app consists of Screen 1(splash screen), main menu, level 1 , level 2, level 3 level 4, About, and a game over ...s
I added a variable to skip the splash screen if it's already been shown once, but it makes no difference. I find it strange that this doesn't happen on my ...
Screen1: Used as a Splash Screen: Screen2: Displays first 10 feeds from the website link that you've mentioned (see attached project): Screen3: ...
Issue: When connected through companion, my splash screen keeps cycling. It appears that the timer.disable is not happening. in the splash screen
While till yesterday everything seemed ok, today as I inserted a click sound to each of these buttons, and as i also inserted a clock ( splash screen ) at ...
Hello, I have made an app using Webviewer function on second screen and a Splash Screen as the first screen. I have also added the screen back ...
Whenever there's an issue with App Inventor, or an announcement you should see, we post it in App Inventor's Splash Screen. It seems that few ...
Whenever there's an issue with App Inventor, or an announcement you should see, we post it in App Inventor's Splash Screen. It seems that few ...
Whenever there's an issue with App Inventor, or an announcement you should see, we post it in App Inventor's Splash Screen. It seems that few ...
Screen 1 works fine, which is the splash screen. The next screen called MainScreen gives me a Network error every time I try to connect. I've tried it on ...
Thanks for the swift reply Taifun. This is screen1. - The EULA seems to work fine. - The splash screen appears. - When the clock fires the splash ...
Hey guys so i've made my app but now i want to add in a splash screen i've done this but i want it to show it for only 5 seconds and then switch to the ...
Attached is a screen shot of the designer and the blocks. Hope this helps. ... I use a similar trick with a splash/start screen. The start screen is a button ...
I want to make a spalsh screen to show where are the navigation buttons and it show up only for the first time we open this application. Can you gimme ...
Hello. there is a problem when I add in a splash screen. The size of objects in the application are calculating according to the formula and depends on ...
Thankyou for Viewing,. I attached my Logic Screen Shot.. Whenever the App is Opened it Display the Splash Screen with Background Music then ...
Every time I start up the app on my phone it goes through the splash screen, then it crashes, and tries to go back to the splash screen and endlessly ...
For this example, lets have 2 splashscreens and then a menu screen. This will be done with just screen1 of the AI project. First thing to do is add 3 ...s
open initially opens to a splash screen canvas (one of the pics i was trying to change) in its own arrangement, after a period of time, that arrangement ...
#First question was about infinite opening of my main screen (after splash screen ). Problem was that, I had no "set.Clock1.TimerEnabled to false" ...
YOU WILL NEED A SPECIAL COMPANION, which you can download from the Help->Companion Information screen or the Splash Screen. There is a ...
On the screen initialization set the splash to TinyDB.GetValue. Look for a tag called 'Splash' and set valueifTagNotThere to True. When you close the ...
I know that is a generic question, but I made a exercise about a simply game and an Splash Screen. well in Emulator opens first the Splash Screen ...
I try splash screen (with a ”loading” photo) but, there is still 5 seconds delay before continuing to the splash screen and the program. If it helps the app ...
So. I've made this splash screen. And the default screen is set to Screen1 and it doesn't seem like you can change that. So I've found a replacement.
MIT App Inventor still has issues with the Google Cloud Storage, as mentioned in the red splash screen which results in missing assets, see also here ...
MIT App Inventor still has issues with the Google Cloud Storage, as mentioned in the red splash screen which results in missing assets, see also here ...
MIT App Inventor still has issues with the Google Cloud Storage, as mentioned in the red splash screen which results in missing assets, see also here ...
... problems today with the build servers and the Google Cloud. Please read the following, for which there's a link now on the splash screen for AI2:
... problems today with the build servers and the Google Cloud. Please read the following, for which there's a link now on the splash screen for AI2:
Sorry you cannot delete Screen1. Maybe you could turn it into a splash screen?
... problems today with the build servers and the Google Cloud. Please read the following, for which there's a link now on the splash screen for AI2:
I am in process of making a splash screen app where , s I have 2 screens. 1st Screen(splashscreen) has background image and a clock which after a ...
Created a new app this morning. All was going well until i added my default splash screen. it's is simply done using an arrangement and a clock timer.
Hello :) On the app I am making, I have a splash screen with no issue, which then goes to a main menu screen. On that, it seems to jump a bit on its ...
My App has two screens. One is a splash screen, one is a main screen. There are buttons that play sounds in the app. Does anyone know how this ...
My app has 4 screens but only 2 have blocks in them. The blocks on the splash screen are complete and unchanged. The MainScreen is were the ...
Hi All,. I have updated my contract and got the Samsung Galaxy Note 3. I have installed App Inventor 2.,2 as of Jan 7 or the splash screen when you ...
I have 4 screen which the first one is empty literally. The app connects to fusion table and loading some simple texts in text box. One page is splash ...
The messages to update should have appeared on the AI2 splash screen after AI2 was updated to nr140. I imagine most students ignored the ...
If I load these pictures in screen1.initialize, app UI takes about 10 seconds to show, can't even show a splash screen. Is there any way to show a ...
Hi people,. I want, when i lunch my app, it opens in splash screen and retrive fusiontable information without appear the loading box. How can i do it?
I'm getting a strange error when trying to make an animated splash screen. What should I understand from this?
1) to close a screen, use the close screen block instead of the close application block. 2) this is a known issue of the companion app see also here ...
for splash screen, just search the forum, there are many threads about that. for the notifier: if get choice = "SI". set PhoneCall1.PhoneNumber to .
I did, that's why I'm asking you. I click options and nothing happens. In the splash screen says it was made with Unity. It requires permissions to read ...
Here's a link to a recent thread where the Original Poster. figured out how to flash a splash screen (a Verical Arrangement). for a few seconds when his ...
... and put a YES in it. Everytime the app starts check if the tag Accepted has a YES stored in it. If it doesn't, show the splash screen, else don't show it.
Watch the AI2 splash screen for updates. The last update was two days ago. That means the guys are busy trying to fix it. Regards,. Steve.
... https://docs.google.com/document/d/ 1wQy_1uCsZDAXY51wElbMyfy8AJid_EOqklIX_ggzBJY/pub This is from a link in the AI2 Splash Screen...
Gary... I'd wait until they post a message to the forum or to the splash screen before you do much more work or you could lose that too... You just need ...
I've included an additional timer that makes a splash screen visible and Canvas invisible until Redraw gets finished. It works only sometimes. Most of ...
Simple blocks attached. As I said this all works apart from the error that is returned suggesting it isn't. I did notice that I get a splash screen saying ...
Initialize event handler open another screen ScreenName presentationScreen ? The following explains how to make/use a splash screen (you have to ...
Splash Screen says there was an update yesterday (7th November) to "nb152" - AI Companion app on the Google play Store says "nb151" - and when ...
Sounds like you are using Screen1 as a just a splash screen? If so, this is wasteful on resources, when you can achieve the same thing using the ...
It appears you need a splash screen . There are discussions here https://groups. google.com/forum/#!searchin/mitappinventortest/splash$20screen of ...
When the issue is fixed, the red splash screen on Ai2 will disappear. Everyone will know AI2 is fixed at that time and at the moment, no one knows ...
Whenever there's an issue with App Inventor, or an announcement you should see, we post it in App Inventor's Splash Screen. It seems that few ...
But what i really need is to check the internet connection on the splash screen and if there is no internet, it opens another screen called "Co";.
I have multiple screens. Am using the first one as a splash screen and then after a timer, it goes to another screen. When pressing the back button, the ...
Hello, I can't access ai2 with my account... It gets stuck on the project window with the connect dialog. I guess this is because a project I downloaded ...
READ THE SPLASH SCREEN NOTES WHEN YOU LOG ON, BEFORE YOU CONTINUE. To Export Your Project to an AIA file... Click on the My ...
I need to finish my project and write consecutive material with which I need to take screen shots of the blocks by Wednesday, December 17, 2014. Any help would be greatly ... We apologize for this inconvenience. We will update the “ splash screen” and this document when we have more information.
I like the idea. Sounds very useful. Here are the points I consider you should improve: First of all: The splash screen for 10 seconds? Nope. If you need ...
They started building a splash screen and then a password screen...and as they closed out their work and came back to it the next day, the blocks ...
Whenever there's an issue with App Inventor, or an announcement you should see, we post it in App Inventor's Splash Screen. It seems that few ...
Whenever there's an issue with App Inventor, or an announcement you should see, we post it in App Inventor's Splash Screen. It seems that few ...
I just finished working on the app so I downloaded it to run. Once the app opened and the splash screen was gone it began to glitch! The home screen ...
I plan to have a splash screen with images and sprites but that's it. The rest of the app will be text based. I'll have around 100 variables, 10 lists, ...
Search forum for 'splash screen'
On a current project (not so large) I have a screen1 background image that acts as a splash screen but it take around 6 seconds for this to appear.
Also, I don't see the obvious benefit to going from one screen to the next. I would imagine you could do with just two screens - a splash screen and an ...
2) you could use Scotts screen switching routine (search for the forum discussions on this, there are plenty recent conversations) to have the contents ... on this form, with that button set to visible, and have it do what is done in #1 and call Screen2 and at the same time to set that splash button to invisible.
Try one of these https://groups.google.com/forum/#!searchin/mitappinventortest/ splash$20screen.
The splash screen on AI2 gave notice but some users evidently did not read the notice. The 'blank white screen' is the way version nr140 starts on the ...
The app always opens to Screen1 not matter how many screens you have. But you can use Screen1 as a menu or splash screen then use 'open ...
https://groups.google.com/forum/#!searchin/mitappinventortest/splash$20screen.
We were trying to - in a way - recreate the champion selection screen of the game "League of Legends". The app supposed to show the splash art of a ...
The issue that may be causing new apk's built since Dec 11 to not work properly might be this issue described on the AI2 splash screen: ...
I looked in the splash screen of the extensions test server for a link to its companion,. but I encountered only a link to the existing setup instructions, ...
Hi guys, I'm making a recipe app and I'm stuck on the storage part of things. I have 3 screens so far, the first being the splash screen, the 2nd being the ...
MIT App Inventor still has issues with the Google Cloud Storage, as mentioned in the red splash screen which results in missing assets, see also here ...
App Inventor 2 was up-graded the evening of Feb 11. That means that Companion needs to be upgraded. The splash screen on AI2 gave notice but ...
... the Google Cloud servers... Jeff will be working on this again this morning. Please check here or the AI2 splash screen for any updates during the day.
... data to say incorrect username/password and for the right one a 302 status and a cookie and a redirect so i want it to go to another screen if success or ... so how can it be done, + i added my .aia(so far only has the login processer which i am confused about and a splash to check if the user has logged ...
The App Inventor start up splash screen will probably provide the information when the latest attempt to fix image issues using FIXED screen sizing.
use a splash screen as Screen1 and move the complicated Screen to Screen2. How to copy screens by Scott and a video by Hossein. 1) if you have a ...
https://groups.google.com/forum/#!searchin/mitappinventortest/splash$20screen.
2. you could do this app using only 3 screens, the splash screen, the main screen and only one detail screen together with some logic to open the ...
Projects CAN be built with slightly more screen but then you should expect your app to occasionally behave erratically. 4) You might have set a Screen icon in ... AI2 splash screen when it is fixed. NOT ALL USERS have the server ...
The real issue is (a) the annoying title bar that is there as a splash screen every time you launch the app and (b)setting the app to show up on startup.
5/20/16 by Sam Brooks - 2 posts by 2 authors 70 views
Maybe less unusual than you think. Many people are using Screen1 as splash screen or, as in my case, to make it less difficult to merge apps later.
11/22/16 by Ghica - 6 posts by 3 authors 144 views
I'll update this thread when that is done. I just updated the Splash Screen to say " nb150e." (though it may take a while to work its way through various ...
@Steve my app is very small of less than 2 mb. it only has a splash screen and a webviewer. i dont use companion, i compile apk everytime i want to ...
Did you see the splash screen and press the Continue button? A screen with no projects or something else? A quick fix might be to click on Projects ...
Button animation is pretty neat Eduardo.. and the video too. It would make a nice splash screen and introduction to an app. Best wishes and good luck ...
Please read the information from the link in the red box on App Inventor's Splash Screen. It's RED... That should alert you to actually READ it!
... be problems with the Google Cloud servers... we're working on the problem and hope to get it resolved today. Please check the AI2 splash screen or ...
... this simple tutorial here http://community.thunkable.com/t/how-to-make-a-3- second-branding-splash-screen-when-your-app-opens/60?u=pavi2410.
Do you mean you want to put a splash screen?
https://groups.google.com/forum/#!searchin/mitappinventortest/splash$20screen %7Csort:relevance You could find things like this in the future by ...
... ago which is why you may have gotten the display. Are you sure it was the terms of service and not the normal splash/welcome screen we display?
Consejo: El splash hazlo con un notificador en la misma Screen1. ... Cuando estas en las otras pantalla, no uses OPEN ANOTHER SCREEN.
The real issue is (a) the annoying title bar that is there as a splash screen every time you launch the app and (b)setting the app to show up on startup.