danuyos's Forum Posts

  • here just to say congrats!!!!

  • Hi again, sorry but I have a problem, any condition after "for each row" (in the same event or a sub-event) is not working.

    I was using "FOR EACH ROW" then in a sub event:

    -SYSTEM: COMPARE TWO VALUES

            FIRST VALUE: CSV.AT("columm1", CSV.CurRow)

            COMPARISO: EQUAL TO

            SECOND VALUE:"my value"

    to check for a specific value , and that was working fine in r108, but in 110 doesn't work.

    if I compare the value only, it returns true, but not after the FOR EACH ROW condition

    ----------------

    EDIT: I just downgraded to 109 and is working nice

  • ludei another thing, now the custom fonts are not working, I put the fonts folder inside the zip uploaded to the cloud system, but it doesn't show in the device (android)...

    I sent a support ticket time ago and they (you) told me how to get it work and it was nice, but now only default font is shown

  • thanks ludei, now it's working fine... just one thing, since the update, my antivirus (norton) classifies the downloaded zip as a threat. That never happened before

  • Ashley help please... just tested the cocoonJs exporter and sicne they updated, now it doesn't work. The project I had in r108 doesn't work and tried a new one (just blank scene) in r110 and same result..

    Are you planning a new beta update to fix that? I'm in a deadline with a current project and this is a very bad luck strike

    Please please please!!!!

  • Hi, I see you found your programmer. The art looks very nice..Good Luck

  • you can also try setting the parallax to 0 , 0 in each layer, and the layout to unbounded scrolling

  • try enabling "Unbounded Scrolling" in layout properties

  • I was just about to post something similar, I have a 900x600 game that runs smoothly when is not scaled, but when set to SCALE, the FPS drops both in preview (Chrome) and mobile (using cocoon)... anybody any help? Ashley?

  • Hi, I watched a lot of your tutorials on Gamesalad, welcome to construct2

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • thanks very much, I'll try it

  • Hi rexrainbow , is there a way to delete a whole row according to a value in a columm... I mean something like this:

    if columm WARRIOR has a value "5", delete that row... and if there are several "5" values, delete all those rows?

    thanks

  • Hi Kyatric, yes I did... do you think it has to be with the fact that I don't use the default folder location when instaling? .. I also add the verison number to the folder.

    in 103 it was   Construct2 r103/exporters/html5/plugins

    and now it is   Construct2 r108/exporters/html5/plugins

  • Hi, I just installed build 108 and wanted to open a 103 project wich has a 3rd party plugin.. I already put that plugin in the 108 but the project doesn't open. Construct says the plugin is not installed, but if I create a new one, it is in the "Insert New Object" window.

  • Hi, I have this suggestion for the next release, what about "grouping" the conditions in an "OR-BLOCK", for example:

    I have one conditions that checks a value and I added a "trigger once" limiter...

    "if GlobalVariable = "0"/ trigger once >>>>>> do the action."

    But I want the same action with a mouse click, and if I convert it to a "Or block" I get:

    "if GlobalVariable = "0" -OR- "On Click" -OR- "trigger once" >>> the action loop because of the true-condition of the variable, and the trigger once becomes useless.

    For a simple event it's easy to "duplicate" the condition for the Value and the Mouse, but I have 3 or 4 level nested events, and more than 4 conditions that triggers that event, and if I later want to edit the Action, I will have to edit each one of them.. which may lead to errors.

    what I'm suggesting is something like:

    "if GlobalVariable = "0" / trigger once -OR- On Click -OR- .......>>>>>

    like an "AND" function as one parameter for an "OR" function