Have you updated the extension? Bug will occur in previous versions.
Amazing extension!
I am using version 1.3 (4)
Thank you so much
Thanks for reporting that, Iâm aware some types doesnât work with SetProperty block, however, you can use Any Components blocks for setting the properties, I only recommend SetProperty block when editing a property that only exists in Designer.
That idea sounds cool, I will try to implement a new block to change the component order in arrangements
Thank you, Tim!
Of course, this works!!
Just got so used to the property setter, forgot all about the any component. Thank you yusuf.
Youâre welcome! Let me know when you have other ideas or issues
please add all reomve option
This Is How You Do It -
this metthoth work but i need 10000+ remove at same time
Just try, It should work.
Can guide how to do
Hi is there any possible way to set dynamic card view background colour to gradient colour
With hex colour code
Use gradients colour Extension.
Used but got some errors so changed it
So their is an quite complicated way but not have any direct way to do that anyway it will work for me thank you @themaayur
is possible use rgb color with schema?
Only App Inventorâs own Color Integer at the moment.
Great extension. Scheme wizard generates colors in hex. Unfortunately, after switching to integers, the application still does not have the correct colors. In my opinion, everything is transparent and has a background color. I work at appinventor.
Kodular integer color is different from app inventorâs. There is no problem for me. You can use color unities for hex code and make color for rgb(a)
If you wrote this to me, I mean this:
- âBackgroundColorâ: & HFFFFFFFF - it causes an error in the application,
- âBackgroundColorâ: 16777215 - it doesnât work, doesnât change color,
I donât know what color format to use in appinventor in the template to make it work.
I found a solution:
N = B + (G + (R + (256 x opacity)) x 256) x 256
Eg.
N = 0 + (255 + (255 + (256 x 255)) x 256) x 256 = 4294967040
I donât know why appinventor makes such a hassle with colors if everything changes to hex when converting from blocks to java code.