dop2000's Recent Forum Activity

  • for two weeks now

    You should've asked earlier! There are many ways to do this. Here is one of the easiest, without families or instance variables.

    dropbox.com/scl/fi/ab0ujefk2oqnuvh87tmnh/DragDrop_pots.c3p

  • If you can't do this with particles, use sprites. Spawn them in a circle, then tween their position to the character center.

    Every 0.1s : 
     Character spawn Sprite
     Sprite move 100px at angle random(360)
     Sprite Tween position to (Character.x, Character.y), destroy at the end
    
  • Here is what the events should look like:

    If any "else" condition is red, delete it and re-create again (press X).

  • You should probably not use "On key pressed", it's a trigger. You need "Is down" condition, which can be repeated.

    Key A down
    and Key D down : Simulate jump
    
    Else
    Key A down : Simulate left
    
    Else
    Key D down : Simulate Right
    

    You can re-arrange these events and/or remove "Else" condition, depending on what keys you want to have the priority.

  • Just needed to add a 'stop animation' action.

    Better set animation speed to 0 in the animation editor.

  • The only possible option is to set the background in Index.html file. I read about this, but never tried myself.

  • Not sure what you mean. In Array.at(0,3) expression the number 3 is the y-index. You can use a variable and increment it. For example:

    Number y=0
    
    Every 5 seconds 
     -> Add 1 to y
     -> Text set text to Array.at(0, y)
    

    Or a loop:

    Repeat 10 times
     -> Wait (loopindex) seconds
     -> Text set text to Array.at(0, loopindex)
    
  • It's a lot easier to manually place all socks on the layout, and then just randomize their images (animation frames). Say, you can make them initially invisible, and turn visible after you assign frames to them.

    For "p" from 0 to 11 // number of pairs
    
     Repeat 2 times
     Sock is NOT visible
     Pick random Sock instance 
     -> Sock set animation frame to loopindex("p")
     -> Sock set visible
    
  • I'm making an antivirus in construct

    Wow! What's next - an OS in Construct? :)

    You may be able to intercept win.close event according to the documentation:

    docs.nwjs.io/en/latest/References/Window

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Instead of changing the font size, add the text to a hierarchy with a sprite — this could be the book page or an invisible sprite. The text should be a child in the hierarchy.

    Then, when you scale the sprite, the text should scale smoothly with it while preserving the line structure.

  • Ah, you need to load the array from AJAX.LastData, not from "Test"

  • Did you move "Set text" action into "AJAX on completed" event?

    If that doesn't help, please share your project file.

dop2000's avatar

dop2000

Online Now

Member since 26 May, 2016
Last online 4 Apr, 2025

Twitter
dop2000 has 262 followers

Connect with dop2000

Trophy Case

  • 8-Year Club
  • Entrepreneur Sold something in the asset store
  • Jupiter Mission Supports Gordon's mission to Jupiter
  • Forum Contributor Made 100 posts in the forums
  • Forum Patron Made 500 posts in the forums
  • Forum Hero Made 1,000 posts in the forums
  • Forum Wizard Made 5,000 posts in the forums
  • Forum Unicorn Made 10,000 posts in the forums
  • x5
    Popular Game One of your games has over 1,000 players
  • x2
    Coach One of your tutorials has over 1,000 readers
  • Educator One of your tutorials has over 10,000 readers
  • Regular Visitor Visited Construct.net 7 days in a row
  • Steady Visitor Visited Construct.net 30 days in a row
  • Enduring Visitor Visited Construct.net 90 days in a row
  • Unrelenting Visitor Visited Construct.net 180 days in a row
  • Continuous Visitor Visited Construct.net 365 days in a row
  • RTFM Read the fabulous manual
  • x3
    Quick Draw First 5 people to up-vote a new Construct 3 release
  • x14
    Great Comment One of your comments gets 3 upvotes
  • Delicious Comment One of your comments gets 10 upvotes
  • Email Verified

Progress

28/44
How to earn trophies