sizcoz's Forum Posts

  • Forms object aren't rendered in the canvas, so you won't be able to take a snapshot of it.

    Cheers Magistross, I will have to have a different approach.

  • Anyone?

  • Try this out.

    http://www.sizzle-games.com/last.capx

    One way, left click mouse to pick last created (newest) instance, and change its angle.

  • how do I snapshotcanvas a list box.

    I can snapshotcanvas everything else on the screen, apart from some dropdown list boxes, which I have populated with some data.

    I can printscreen in windows to clipboard and it shows the listboxes there, but not with c2 snapshotcanvas.

    Any ideas

    Cheers

    Sizcoz

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Nice Game, good luck.

  • really nice clone.

    chrisbrobs , cheers

  • Just made a quick missile command clone for a retro blast.

    Put it up on the scirra arcade, grab it here.

    https://www.scirra.com/arcade/action-games/missile-commander-3491

    Capx now added.

    https://www.sizzle-games.com/missilec.capx

  • I made a website for our local snooker league, with ajax from a database, it works well, and everyone is pleased with it.

    works on pc, mobile and tablet.

    http://www.mineheadsnooker.co.uk

  • It's a bit like saying I won't buy this PC this year because in 2 years the spec will be out of date, you end up never taking the plunge, so in my opinion I would just buy it, you won't regret it, as mentioned the support, updates and community are a reason alone to purchase C2, you won't regret it.

    Cheers

  • hi ramones, did not work.

    just to verify, that is what i have done:

    step one:

    created array in construct with properties:

    width: 1

    height: 3

    depth: 2

    step two:

    loaded this string via ajax:

    {

    "c2array":true,

    "size":[1,3,2],

    "data":[ >      [ [300],[25] ],

         [ [100],[50] ],

         [ [800],[10] ]

    ]}

    as i understand now the size is similar to the array in construct, so

    - "size":[width,height,depth] - correct?

    step 3

    use the function Load from JSON string with ajax.lastdata (or the string itself)

    step4

    set debug.text to array.at(0,0,0)

    array.at(0,0,0) should be 300, right?

    If i get this thing working i will write a tutorial about it -.-'

    otherwise i have to fill my array with a splitted string... Padman2012-06-22 06:50:08

    Unless i misunderstood (which is often) If you set your json to "size":[3,2,1] instead of "size":[1,3,2] it should work, it gets 300 from array.At(0,0,0), therefore array.At(2,1,0) = 10 I have provided a capx here.

    http://www.sizzle-games.com/Ajaxtestarray.capx

    Also if you set your file to

    {

    "c2array":true,

    "size":[3,2,1],

    "data":[ [ ["cat"],[25] ],

    [

    [100],[50] ], [

    [800],[10] ]

    ]}

    array.At(0,0,0), will return cat

  • Asus Laptop, nvidia geforce 745m, intel i7, 8gb

    With touch screen, for mobile testing.

    Works well

  • Hey everyone! i have a top down game and i was wondering if there was an easy way to make a sandstorm or a blizzard that wouldn't be too resource hogging

    i suppose an effect that sticks to the screen and doesn't scroll would be the best choice? i don't know.

    Ok had a bit of fun doing this, it might be too resource hungry, see what you think !

    http://www.sizzle-games.com/sandstorm.capx

  • You can use the ajax object to request your json file, then once it is loaded, use the ' ajax on completed' to manipulate your json data or use a php script, to manipulate you json results.

  • start of layout>dictionary add key "attention" value (your value here)

    >dictionary set key "attention" value (your value here)

    Every tick> (your sprite here) set sine period to Dictionary.Get("attention")/50

    This will work, maybe you did not add the key, before setting the value?

    Thank you Nimtrix...

    And please explain me to rotate the same object in reverse order... which you provided in the sample..

    Just change the sin and cos around.