rexrainbow's Forum Posts

  • KZR

    I found 'keypress' event in official keyboard plugin is to capture 'keydown' event, that's why the firing of 'keypress' event of this plugin will be missed in official keyboard plugin.

    Use 'down' and 'up' to fire 'press' and 'release' event of official keyboard plugin.

    I also remove 'keypress' option of this action.

  • Does Pode 's filesaver plugin work?

  • Uriel1339

    Try this plugin to process string with variables.

    For example,

    1. you could call "Action:Set value" of rex_mustache plugin to save the value of "firstname", like "firstname" = "rex",

    2. and the string saved in CSV might be "Hi, {{firstname}}".

    3. after string replacement by expression mustache.render, "firstname" will be filled with "rex", and get result "Hi, rex"

  • Ashley

    Official timer behavior has similar problem, too. Add "condition:on any timer" could solve it.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Ashley

    For example, user press "S" will fire a ajax request, print a serial number of sending while completed.

    User sends request with tag to "tag-" & sn , and add this condition-

    + condition: on  "tag-" & sn completed
    [ul]
    	[li]print "tag-" & sn[/code:39ntgjat][/li]
    [/ul]"sn" is a variable set before completed.
    
    This solution can not handle the case while waiting more then 1 request completing. It only gets one completing event.
  • Looks like an amazing plugin. Do you have an example how to load external JSON/XML from HTTP request and parse?

    These plugins are made for building Json/Xmlcsv data structure in event sheet, not loading from string.

  • Braus

    I had made a solution to to recognize the main frame.

  • Here are sample capxs to show how to recognize the main frame.

    Daughter, mother

    Daughter (child frame) will be embedded into mother (main frame), how to recognize the main frame from child frame?

    A possible solution is using frame message plugin -

    In daughter capx,

    1. call function "Mom?"

    2. wait 0.1 second

    3. check the global variable "FindMyMom"

    And this capx has a return handler of "Mom?" which sets global variable "FindMyMom".

    In mother capx, it has a function body "Mom?" which return a value to daughter.

    If the daughter frame is not embedded in mother frame, the return handler of "Mom?" will not be triggered, so global variable "FindMyMom" will not be set.

  • I don't know How to fransfer position from spin bone to Sprite. I had not surveyed spine yet, sorry.

  • All of my plugins are free for all users.

    jojoe - are these available for all to use?

  • corpvs2

    1:

    This plugin does not have a door list of each room yet. I will try to implement it later. (Sorry I am busy recently )

    2:

    The description of "Condition:Door type" is "return True if there has a neighbor room".

    For example, if there has a room at the left side of this door, "Condition:Door type" with "left" parameter will return true.

  • Logic-less templates to render text content. Reference - mustache

    Document, plugin and sample capx files are included.

    It could separate formatted string and variables, for example,

    The result of

    Template: "Hello, {{name}}"

    with view: {"name":"Construct2"}

    is "Hello, Construct2"

  • Or add a condition: on any tag completed, and read completed tag back by expression , this might solve the problem, problity.

  • 99Instances2Go

    Agree. I still fall into the trap sometime until today. A possible solution is to print current SOL on console by UID list, or the count of picked instances to trace it.

  • remy-jay

    It does not in my current schedule, sorry. I still have some plugins in my tasks queue.