You do not have permission to view this post
Form control objects have problems with scrolling/sczling/z-sorting and are really not suited for these kind of games. I recommend making your own text input box with a Text or SpriteFont object.
Tutorial:
construct.net/en/tutorials/your-own-textbox-459
For "n"=0 to 20 ...System create Brick at (100+loopindex*50, 200)
Where 100 is the offset from the left edge of the layout, 50 is the width of brick sprite.
If you don't need to apply different animations/behaviors/effects to each individual brick, then it's better to use one TileMap object instead of many sprites.
angle() expression returns an angle between two points. It requires 4 parameters: point1 x, point1 y, point2 x, point2 y.
For example, angle(character.x, character.y, enemy.x, enemy.y)
Develop games in your browser. Powerful, performant & highly capable.
See examples from this post, not exactly what you want, but you can modify them to your situation:
construct.net/en/forum/construct-3/how-do-i-8/advanced-camera-139655
Change condition in event #5 in my example to this:
find(FruitsArray.CurValue, TextBox.text)>=0
I don't know how to change the list size to 10 items, maybe you can do this with CSS.
No, I meant to do this after the name is entered. Cancel fullscreen, wait 0, then request fullscreen. At the same time the keyboard will disappear from the screen, so maybe it will not be very noticeable.
If both objects have ID instance variables, you can do "For each Door, Dictionary compare variable ID=Door.ID"
Meanplaya Demo:
dropbox.com/s/8zm9bjlxmp2kyhr/LimitedScroll2.capx
Are the Door and Modules dictionary in the same container? If not, then you need to pick the correct dictionary instance before comparing keys. But it would be easier to combine them into a container.
(I can't open your project, as it uses some plugin I don't have.)
Try cancelling fullscreen, and then requesting it again (maybe with a short delay between two actions). I don't have any other ideas..
I don't understand, could you give an example with that list of fruits? When I type "ap" in the textbox, what should come up in the list? Top 10 fruits starting with "ap" (apple and apricot)? Or top 10 fruits containing "ap" anywhere in their name (for example, papaya and pineapple)? Or something else?
Member since 26 May, 2016