Snowmane's Forum Posts

  • Sounds really great! Im going to focus on this.

    You know any capx ilustrating this?... can be very helpfull for me now.

    Thanks a lot

  • With array can asign a action for every record?

    Is there any practical example?

    Thanks so much.

  • Give me a hand on this, please!

  • Nothing?

  • Hello,

    In my game I have a JSON with multiple records with ad Key randomly generated.

    My basic problem is how i can do to list all the Keys with the ability to select individually and assign a action (view, edit or whatever).

    Thanks.

  • One of my objectives are the player can choose, view and edit the entries. If i load the whole dictionary into a single Text object i can't do this.... or i can?

    For a better explain... the entries of the diary are organized in this way:

    {"c2dictionary":true,"data":{"3102014161027":"Test diary text"}}

    The numbers are a timestamp.

    My point is the player can click on the timestamp and then view or edit.

    My basic problem is how i can do to list all the timestamps with the ability to select individually and assign a action (view, edit or whatever)

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I'm using the Dictionary, yes.

    My problem is not on JSON, my problem is on how i can create a new Text element for every entry on it

  • In my game i want to create a Notebook or Diary section style.

    For now i tryed some things and can create an read entries from a JSON.

    My problem is, how i can show this entries in a list... the user can choose an item and edit or delete.

    I can conclude that to make the list I have to create a new Text element for each JSON record, but I have no idea how to do it.

    I'm stuck so, any help is greatly apreciated.

    Thanks so much!

  • I need a interactive list (add actions to items in list) from a JSON source.

    I tryed the combobox & listbox addon, but the function to set from JSON is not working... maybe is not working because i'm doing something wrong... any example or explanation on how to do it?

    Any alternative or way to do it? Another addon maybe?

    Thanks so much!

  • Thanks!

  • How i can Append Text to first line instead of the last?

  • OMG!

    I love you!

    Thanks so much, you help me a lot with this elegant solution

  • A way to parse in-app

  • Also, the Key values are a timestamp, so i don't know how to obtain and list the whole Dictionary filtered into a readable text.

    Any help please?

    Thanks in advanced!

  • How i can convert the text of the Dictionary to a readable text.

    For example, my script is generating a Dictionary like this:

    {"c2dictionary":true,"data":{"3102014165424":"testing","3102014165728":"testing again"}}

    And i need convert to something like this:

    3102014165424

    testing

    3102014165728

    testing again

    Thanks!