Тёмный

App Inventor: Toggle Menu 

Pixii Bomb
Подписаться 11 тыс.
Просмотров 84 тыс.
50% 1

Опубликовано:

 

7 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 89   
@___The_Paradox
@___The_Paradox 4 года назад
Please make new vdos? Or if the answer is no, then may I know the reason?
@PixiiBomb
@PixiiBomb 4 года назад
Hello Paradox, I do plan on making more videos eventually, but they probably won't be AppyBuilder videos ever again :( I really love the community, but it boiled down to being very time consuming. I used to spend 20-40 hours a week working on my videos, answering emails, and helping people. That's basically a full time job I don't get paid for. I work about 40-60 hours a week (at my actual job) so spending an additional 20-40 hours as a "second" job, was taking a toll on me mentally and physically. I've actually gained some weight (you can see me slowly gaining weight in my videos). It makes me happy to know people are still watching my videos and want to see more content, but for the time being I need to focus on my career, my family and myself.
@shopifystore2727
@shopifystore2727 3 года назад
@@PixiiBomb can you teach me with some course
@AbrahamGetzler
@AbrahamGetzler 7 лет назад
Crystal clear! For extra safety on the loop limit of 150, consider changing the test to include overshoot (>=) in case your increment and starting value don't exactly eventually match the limit.
@PixiiBomb
@PixiiBomb 7 лет назад
Thanks for the tip~! That is definitely something that should be considered if someone is using this example, but their "animation_increment" is a different value and if their image height is 152 (or a height that isn't base ten). Placing the check at the start of the Timer will ensure that your background doesn't increment over the intended value, but you're absolutely correct, in that you can never -guarantee- you won't make a mistake. (Especially if you're using values that will not perfectly add up) Therefore, changing (=) to (>=) is a safer method.
@k1f2i3r4
@k1f2i3r4 7 лет назад
What a nice tutorial! It's so nice to see a super clear explanation with amazing visual effects that helps A LOT to understand. I love it. Thank you! :)
@PixiiBomb
@PixiiBomb 7 лет назад
thank you so much :D glad i could help
@bloodystam9526
@bloodystam9526 6 лет назад
That was super helpful for my college project, i wanted to improve my app's appearance with menus etc. Thank you so much! ^-^
@PixiiBomb
@PixiiBomb 6 лет назад
You're very welcome! Always happy to help. If you're new to the channel: don't forget to check out the AppyBuilder Tutorials. ru-vid.com/group/PLxDIvJ8CILuGz_5Zzr3yHRlTdw-pCfBCV AppyBuilder is like an "enhanced" version of App Inventor (same design layout, more options) There is a mix of Beginner and Intermediate tutorials in that series that would be great for class projects!
@bloodystam9526
@bloodystam9526 6 лет назад
Oh my God,I feel so lucky that i've found your channel! Your videos are straight to the point and easy to understand even from a beginner like me.Plus your voice is so cute and relaxing to hear that makes the videos really enjoyable. Thanks a lot, seriously much MUCH love!
@PixiiBomb
@PixiiBomb 6 лет назад
lol thanks! I'm glad you're enjoying them :D
@ward9122
@ward9122 5 лет назад
Amazing
@programfullgiveaway1024
@programfullgiveaway1024 5 лет назад
Thank you! I keep copy and paste my code much times, and my time wasted just for that, thank you for the info!
@MOREPISTS
@MOREPISTS 3 года назад
Dear Pixii. How can we change the canvas setting to become floater (Button floaters (overlay)). Bests.
@soubernau
@soubernau 7 лет назад
Very nice work Pixii!! Thank you for the AI2 tutorials... 👍
@PixiiBomb
@PixiiBomb 7 лет назад
you are very welcome!
@tiborcsikos2441
@tiborcsikos2441 7 лет назад
Very nice video and useful. Thanks! But one thing: In the Collapse Timer event You call the cycleMenu Procedure 15 times. I rather make that like this: If bg_settings.Height=global bg_settings_height then call cycleMenu(false)
@PixiiBomb
@PixiiBomb 7 лет назад
awesome, thanks for catching that!
@abdullahalmskarisur
@abdullahalmskarisur 6 лет назад
Tibor Csikos But i have 4textbox and image this is different
@hukmur3712
@hukmur3712 6 лет назад
You are the best :) The worst thing about your channel, you don't have a lot of subscribers :)
@PixiiBomb
@PixiiBomb 6 лет назад
lol thank you :)
@PhilGeissler
@PhilGeissler 6 лет назад
Exactly what I was looking for! Thanks!
@aaronjarabe2712
@aaronjarabe2712 4 года назад
excellent can you do an animation about text and label
@hossjalili4928
@hossjalili4928 4 года назад
thanks, it is useful
@diegobecerra9195
@diegobecerra9195 7 лет назад
you are amazing! I understood everything
@PixiiBomb
@PixiiBomb 7 лет назад
Diego Becerra thank you!
@technogj
@technogj 7 лет назад
nice one it help a lot 👍
@PixiiBomb
@PixiiBomb 7 лет назад
thanks so much!
@sangitadeshmukh5279
@sangitadeshmukh5279 2 года назад
Can you please send pdf of this ???
@MrShaouki
@MrShaouki 4 года назад
Thank You SOOOOOOOOOOOOOOOOOOOOO much !!!!!
@rohanmistry9935
@rohanmistry9935 5 лет назад
very informative!
@dragonsdream4236
@dragonsdream4236 7 лет назад
If the menu is set to visible when it's invisible and set to invisible when it's visible, shouldn't the menu just flash? I don't understand how the first one works
@PixiiBomb
@PixiiBomb 7 лет назад
Think about it like any other button. Click the letter "b" on your keyboard. This will type the letter "b" one time. It doesn't continuously type "bbbbbbbbbbbbbbbbbb", unless you're holding down the "b" button. So if you click a button in any app, that button will only execute the command it's issued one time. Not multiple times. The command within the button is an if/else statement. It will execute the command based on whether the condition is true or false. So if the user clicks on the plus icon for the very first time, then we execute the button event: "if the menu is currently invisible, then show the menu." The event is done. Nothing ELSE needs to happen, even though there is an else condition, because the condition has already been met. If the user clicks the minus icon (the plus icon changed to a minus icon), then we execute the same event. This time the event skips the first condition and executes the second condition. Hope that makes sense
@ugh9941
@ugh9941 4 года назад
Where i need to take any component→any images ?
@abdullahalmskarisur
@abdullahalmskarisur 6 лет назад
Please. Can you help me I have 4textbox and image How can send all to whatsapp Q2 How can use listpicker edit and delete in inventor2 Thanks
@PixiiBomb
@PixiiBomb 6 лет назад
Use Textbox.Text to get the value from a textbox. Use Image.Picture to get the value from an image. The Activity Starter can be used to open apps within your app. I haven't made a tutorial on the Activity Starter, but someone else made a tutorial that's specific to what you're asking: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-DnGKgBeqGos.html For Lists Views, use the SelectionIndex to determine what Index has been accessed. ElementsFromString for a ListPicker is just a standard list. For Example: It would be easier to use a variable called "food_list" with a value of "Apple, Orange, Banana, Pear, Strawberry" Set ElementsFromString to "food_list" You can then use the built-in list blocks to add/edit/delete data from food_list and then re-write the new list into ElementsFromString
@flaviobarros8305
@flaviobarros8305 6 лет назад
Thamn ...Your a Bomb alright....Awesome video
@PixiiBomb
@PixiiBomb 6 лет назад
lol thank you :D
@EnriqueDominguez
@EnriqueDominguez 6 лет назад
ohohoho slow motion litle brain!... you are a f*k! genius! brilliant. thanks
@PixiiBomb
@PixiiBomb 6 лет назад
lol thank you
@BRJRajasthani
@BRJRajasthani 6 лет назад
How to Create a Professional Web Browser Please make a tutorial on this topic
@PixiiBomb
@PixiiBomb 6 лет назад
I could probably do a simple tutorial. But a professional web browser might be outside the scope of the App Inventor distros.
@user-nk3zu4jx7w
@user-nk3zu4jx7w 6 лет назад
pleas can you help how l can make the text in the image to a text in a lable pleas 😣😣
@andremuslim9594
@andremuslim9594 6 лет назад
Hey @pixii Bomb Do you have tutorial to make a cool loading animation?
@thomasvilhar7529
@thomasvilhar7529 5 лет назад
Fantastic video. But how do I place something under the drop down menu(the second menu)?
@PixiiBomb
@PixiiBomb 5 лет назад
Hello Thomas - As of right now, you cant layer components on top of each other with some exceptions (like the Sidebar component/extensions) If you used a Canvas that takes up the entire width and height of the screen, you could place Image Sprites where ever you wanted. Image Sprites can be layered on top of each other using the Z property. (The lowest Z value is at the bottom, the highest Z value is at the top) The downside to using the Canvas for your Design would mean that you'd have to calculate the placement yourself. And you'd also have to calculate any changes to the screen. It isn't terribly difficult to do, it's simple math - but it's obviously easily to use Layout Components for uniformity in your design. In the case of the second menu - I would recommend using it for simple designs where there isn't a lot of content on the screen. (Like a Start/Title Screen) Or a simple game where the content is very simple and takes up a small space on the screen. You could still use Layout Components to split the screen. | .............................| MENU | | MAIN CONTENT | MENU | | .............................| MENU | | .............................| MENU | And you'll want to use a Space Component to offset your Main Content, so it still looks like it's in the Center of the Screen. Hope that helps :)
@thomasvilhar7529
@thomasvilhar7529 5 лет назад
Thanks for the reply.
@Mrokay-sg1lx
@Mrokay-sg1lx 6 лет назад
This is awesome
@klkev6511
@klkev6511 6 лет назад
ye I completed this!
@LumberjackStuds
@LumberjackStuds 7 лет назад
Thanks you so much
@onlinemoneyguru7503
@onlinemoneyguru7503 6 лет назад
Hello please help me how to use myphpadmin in appybuilder
@PixiiBomb
@PixiiBomb 6 лет назад
Hello, There isn't any php support in the AI distros, so you might want to use the Web Viewer component to link back to your website. Otherwise, if you're looking for that same type of SQL database, you can use the SQLite component or Fusion table. I do have a few tutorials covering Fusion table.
@onlinemoneyguru7503
@onlinemoneyguru7503 6 лет назад
Pixii Bomb thanku but fusion table API only 25000 time per can get data and update....and my total user have ...5000...
@vishalraval7256
@vishalraval7256 6 лет назад
can i get aia file of this project please.. #pixi
@a22abcd
@a22abcd 6 лет назад
u r awesome!
@PixiiBomb
@PixiiBomb 6 лет назад
thank you ^^
@user-uc4fe4us2d
@user-uc4fe4us2d 4 года назад
Thank you .. You hurry to talk and explain a lot. Please do not hurry to explain and talk until we understand the steps.
@11JMT
@11JMT 7 лет назад
Pixii, do you have app in Play Store?
@PixiiBomb
@PixiiBomb 7 лет назад
The .aia file is in the App Inventor Gallery: ai2.appinventor.mit.edu/?locale=en&galleryId=4916791376347136
@umamaheswari8826
@umamaheswari8826 7 лет назад
can you pls give me the link where you downloaded the image
@PixiiBomb
@PixiiBomb 7 лет назад
There is a link in the Video Description to download the .aia file from the app inventor Gallery. That file is the project I created for this tutorial. So it has every resource I used for this tutorial
@umamaheswari8826
@umamaheswari8826 7 лет назад
after clicked it redirects me to my projects
@umamaheswari8826
@umamaheswari8826 7 лет назад
Can you pls send it to my email: umarahul05@gmail.com
@nishijain3282
@nishijain3282 6 лет назад
hy pixxi i want full apk and more ads plzzz give me
@geobrizuela
@geobrizuela 4 года назад
Looks like it would be easy but so complicated lol
@PixiiBomb
@PixiiBomb 4 года назад
Lol it is very easy to use once you understand some programming basics.
@shahidtoofan1
@shahidtoofan1 6 лет назад
its to fast for a beginner although the app was nice please do it a bit slower
@PixiiBomb
@PixiiBomb 6 лет назад
Hey there! I purposefully do not go slow in my videos. Most viewers on my channel tend to like the pace. Essentially, I create videos that I would like to watch. I tend to say "if you're able to look at a screenshot of blocks and understand where they come from, then you'll have no problem following along." I try to be very straight and to the point in all of my videos, which cuts down on about 30-60 minutes of unnecessary footage, where most of that is spent dragging blocks across a screen. When I made this particular video, I wasn't as good at editing videos, so they're a bit choppy. I think the AppyBuilder series is easier to follow, just because I got a little better at piecing the footage together. But I will take that into account for the easier videos, when I start working on the Novice level.
@LucianoDeLeonMenendez
@LucianoDeLeonMenendez 6 лет назад
put the youtube playback speed at 50% or whatever is best for you
@tamizhfuns433
@tamizhfuns433 6 лет назад
how to create quiz app.???????????\
@PixiiBomb
@PixiiBomb 6 лет назад
Try the Math Whiz Quiz tutorials: Part 1: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-guqYbOFjVJM.html Part 2: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-xK4LMRTKKpE.html
@happwe2230
@happwe2230 7 лет назад
just do not have the words to thank you
@PixiiBomb
@PixiiBomb 7 лет назад
you're so welcome!
@Henry_Nunez
@Henry_Nunez 2 года назад
🔔🔔👈👈
@TheGp626
@TheGp626 6 лет назад
hi
@tenodgosnika9635
@tenodgosnika9635 4 года назад
uwu
@dr44444
@dr44444 6 лет назад
So fast!! Can you breath when you talk!! It's very difficult to follow you.
@PixiiBomb
@PixiiBomb 6 лет назад
Well to be fair... the people who think that I speak fast are the people who don't speak English fluently. Like, if I were speaking to someone in Spanish, I probably would think they're talking fast. I'm speaking at a normal pace, as if I were having a conversation with someone. This is exactly the same as someone who speaks Chinese speaking to someone who speaks French. But since my audience is mostly from Inidia, they have told me I speak too fast. I disagree, but I have made an effort to try and speak slower in my more recent videos. (This is an older video) Even though I personally detest slow videos. Additionally: you have the ability to control all videos on youtube. I have added subtitles to a lot of my newer videos. And you are able to control the speed of a video as well. If you're watching one of my older videos you, and you think I'm speaking too fast - click the little Cog (Settings) icon on the video to set the speed of the video. Hope that helps.
@dr44444
@dr44444 6 лет назад
Thanks for your reply Pixii, I speak the English language and I don't need to activate subtitles. But please consider that the aim of an educational video is to teach something that others doesn't know. For example, the speed that you write in this video and select options in the app inventor are too fast that people should pause and play hundreds of times! This is why is difficult to follow your videos. I have many years experiences in teaching. If you want more subscribers, I think you need to adjust your speed. anyhow, I love your videos about app inventor and hopefully, you make more training videos in this regard. Kind regards
@holod-6491
@holod-6491 5 лет назад
Слишком сложною Сделайте русскую версию, а то лялякаете не по-русски и ничего не понятно.
@holod-6491
@holod-6491 5 лет назад
крутой коммент
@kvptcomputerdepartment7172
@kvptcomputerdepartment7172 3 года назад
wtf.............go slow
@user-nk3zu4jx7w
@user-nk3zu4jx7w 6 лет назад
pleas can you help how l can make the text in the image to a text in a lable pleas 😣😣
@PixiiBomb
@PixiiBomb 6 лет назад
I'm sorry, I'm a little confused on your question. The "text" on the Button Components and Images Sprites are not text. They are images. As of right now, you can't add an Image/Background to a label, but in AppyBuilder, you can upload your own fonts. If you use a font like Material Icons, you can change the text to an icon. An Example of this in one of my videos is here: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-v2e15uqsjbE.html at around 19:42. You can see little icons on the left side. One looks like a person, a key, email, etc. You can download the font here: github.com/google/material-design-icons/blob/master/iconfont/MaterialIcons-Regular.ttf (Click on "View Raw") - In AppyBuilder, upload MaterialIcons-Regular.ttf to the media folder. - Add a Label to the Design - In the FontTypefaceCustom Property, change the font to MaterialIcons-Regular.ttf - In the Text property, type the name of the icon you want to use. A list of icons in the font can be found here (scroll down on the webpage): material.io/icons/ For Example: Type "account" into the search box. You'll see a few account related icons. If you want to use "account circle" then you would change the Text Property on your Label to "account_circle"
@user-nk3zu4jx7w
@user-nk3zu4jx7w 6 лет назад
+Pixii Bomb thank you 😘😘😘
Далее
AppyBuilder: Tab Menu with Simple Animation
14:26
Просмотров 13 тыс.
Butch REACT to Creative way to fix damaged tile!
00:46
[AppyBuilder] Learn to Code: Variables
8:17
Просмотров 2,9 тыс.
Save to Excel and Read to Listview | MIT App Inventor
8:21
Don't Use ChatGPT Until You Watch This Video
13:40
Просмотров 1,6 млн
[AppyBuilder] Learn to Code: Introduction
4:18
Просмотров 4,1 тыс.
HOW TO CREATE A SIDE MENU BAR IN MIT APP INVENTOR 2
22:35