Tarkion's Forum Posts

  • +1 I use PC and iPad so I think this feature is necessary ...

  • Also see this thread:

  • Also you have a template when you open C2 and go to new proyect, this help too.

  • I think we can't do this, but not sure 100% ... You are right, I have the same sensation with this, have to scroll all the time...

  • Nice! I didn't knew that works with mobile exporters...

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • danhanfry I don't understand what do you need... Do you speak Spanish? If so pm me and then if I can't help you whit issue it's possible I will be able to help you showing your issue in forum to get help in English...

  • Make a capx whit basic for recreate your scene so the most veteran or experience users will have more easy help you...

  • Yes, should be a option... I have buffering issues whit IOS devices also... I tried to preload and preload but don't work fine for me...

  • rainmaker, the iScroll plugin can do this -- its a pretty rich HTML formatted scrollable table to!

    Downside, the author doesn't have time to fix any issues you may find, however, it's worth checking out.

    Awesome, I'm going to test this plugin

  • I think you have to be a lot more specific, in what the problem is

    It sounds like you need someone to explain it from start to end, which would take several pages and then it might not even be as you wanted.

    This is what I have thought when I have read the post...

  • same here...

  • rainmaker, I once programmed a solution like this, using text objects as well!

    What you do is, instead of creating 10000000 text objects for a big table, create only as many as the user can see at once, then add a scrollbar to the side.

    When the user scrolls, instead of scrolling the layout as you would do normally, just make the source text for each line advance by one.

    Say your source data is a list of fruits:

    [1] - Banana

    [2] - Apple

    [3] - Orange

    [4] - Watermelon

    [5] - Pineapple

    [6] - Grape

    [7] - Blueberry

    And the user can see 3 lines at most

    Line 1 -> fruits[1]

    Line 2 -> fruits[2]

    Line 3 -> fruits[3]

    Now say the user scrolls 1 item down. Instead of seeing "Line 4", the lines themselves don't change, just the references:

    Line 1 -> fruits[2]

    Line 2 -> fruits[3]

    Line 3 -> fruits[4]

    This way, the objects remain fixed, nothing new is created, just their text is changed! The only downside is the scrolling appears less smooth, since you can't scroll down, say, "10 pixels. You must scroll in whole lines.

    I like your solution, thanks for share

  • Less than 5K 👏

    I am impacient to get the beta

    Good luck!!