Diptox's Forum Posts

  • Edelplastic

    I have the last version "39.0" it works perfectly

  • Hey SoldjahBoy , sorry i am in holiday now for a month , but i will explain to you :p

    To get a Data from a specific cell , you can do it with this Expression

    Command : Listview.SubTextAt(indexOfTheRow , indexOfTheColumn)

    Exemple

    Listview.SubTextAt(4,1) -> will return "Emily" , Row index is 4 , the 1 is the zero-based index of the Column Last Name

    To insert Data in a cell , i did not add that function , SORRY for that , i forget it :p , but here is another way to do it

    let's say you have this Row -> "Text1:TEXT2:TEXT3:TEXT4" with index 1 and you want to change the cell with the index 2 which is "TEXT3" to "123456789" you do like this

    Command : Add Row at(IndexRow,RowData)

    Add Row at

    Index:1

    Text : Listview.SubTextAt(1,0)&":"&Listview.SubTextAt(1,1)&":123456789:"&Listview.SubTextAt(1,3)

    after the Modified Row is added at index 1 , the Old Row will be at Index 2 , so you have just to remove it with

    Command: Remove At

    Remove At(2)

    Hope it helps you

  • Joannesalfa it's the low level Javascript

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Hey i did not test it , but it will work , because the plugin's effects work on the whole HTML content not only the Canvas so it must work

  • irina in the Part 5 test in the Last part of the video , when he click they move with no pushing

  • Hey , i stopped working on that Plugin , it works only with no-webgl which means LAGGG :p :p :p Sorry

  • Welcome to this Great Community

  • irina i saw your eventsheet , it does not look like the youtube video , re-create the tutorial from A to Z , because i saw in the Part 5 , Boxs are moving PERFECTY

  • Subscribe to Construct videos now

    hope it helps

  • Hello , i will do it for you and no need to pay me , it's an easy thing for a programmer "hsmouadh@gmail.com"

  • andrzej hey , sorry i have been trying for 2 hours to resolve the problem but i couldn't , it seems a problem related to the plugin that i am using to fix the header of the Table. when i started working on the plugin I did not take into consideration the Horizontal Scroll. i will try more this evening and i will tell you if i find a solution

  • try to post it outside the Function , and be carful because the "Is Transion ended" will be fired at any ended animation , so even for the outside animation it will fire

  • .append() will add the <script src="http://open.mapquestapi.com/sdk/leaflet/v1.s/mq-map.js?key=UNIQUEKEY></script> to the "index.html" file

  • it an empty function it will do nothing

  • deathangel1479 , onCreate is loaded before the game started , and the script size is at max 50Ko , it's not that hard loading ,

    stefan52a you can use this the sync loading with ajax

    $.ajax({

    url: "SCRIPT_URL",

    dataType: "script",

    async: false,

    success:function()

    {

    // when the script is loaded here you can use it

    }

    });

    or here is a better one , add it inside the onCreate

    $("head").append('<script src="http://open.mapquestapi.com/sdk/leaflet/v1.s/mq-map.js?key=UNIQUEKEY></script>');