dop2000's Recent Forum Activity

  • You can create two variables - SoundsVolume and MusicVolume. When starting playing any sound, set its volume to SoundsVolume. When starting playing music - set its volume to MusicVolume.

    So when the sliders are changed, you save new sound/music volume in these variables, and can also set music volume for currently playing music.

    If you don't need to play several music tracks at once, it's OK to have one tag for all music in the game. But of course for different sounds it's recommended to have different tags.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Have you tried searching for an addon that supports facebook ads? Check out Enhance:

    enhance.co

    Also, here is a Facebook Instant Games addon, but it looks like the developer abandoned it:

    construct.net/en/forum/extending-construct-2/addons-29/facebook-instant-games-for-con-135414

  • You can copy/paste multiple objects from one project to another. Just select a bunch of objects on the layout, press Ctrl-C, and then paste them into another project. They will be transferred with all behaviors, effects, instance variables, properties etc. Just make sure that you don't already have objects with the same names.

    Once you've copied objects over, you can copy/paste events.

  • SDK is mostly used for writing plugins. If you want to execute some JS code, use "Browser Execute Javascript" action or ExecJS expression. Here is a little demo:

    dropbox.com/s/odcvl711o1b8ilj/JS_DataExchange.capx

  • As far as I know, this is not possible. You need to create instance variables and change them together with effect properties. For example, create instance variables r, g, b and when you change properties for setColor effect, set the same values to the variables.

  • You can remove all joints and then re-create some of them.

    Or try Chipmunk physics, it has "Destroy joint" action:

    construct.net/en/forum/extending-construct-2/addons-29/behavior-chipmunk-physics-82151

  • Your project is missing a file "button-animation 1-000.png"

    If you add a file with this name to images folder, you'll be able to open the project.

  • It's usually a bad idea to mix Physics with non-physics behaviors like Pin/Solid/Bullet etc. You need to use revolute joints instead of Pin.

  • I think you need to use Date for both columns, and then set different cell format in the spreadsheet.

  • Also, check out this demo:

    dropbox.com/s/gk1w7g9njs5gwj7/RotatingKnob.capx

    You can limit rotation angle with instance variables.

  • The way you are building the s string is wrong. If you want to add 3 parameters, you should do it like this:

    Set s to web_app_url
    Set s to s & "?email=" & URLEncode(EnterEmail.Text)
    Set s to s & "&full_name=" & URLEncode(EnterName.Text)
    Set s to s & "&message=" & URLEncode(EnterMessage.Text)
    

    Pay attention to ? and & characters!

    Move s variable to global level. Run the project in debug mode and check the contents of s variable, it should look like this:

    https://script.google.com/macros/s/alsdjalksdjaldskjaldskjaldskjalsdkslkdj/exec?email=abc%40gmail.com&full_name=John%20Doe&Message=bla%20bla%20bla
    

    .

    Also, change parameter names in the script in lines 33-35, they should be the same as in URL, and not contain any spaces. So change them to "email", "full_name" and "message".

  • Your post says "bubbles" :) If you want something like "marbles in a bowl" effect, then it's quite easy to do with physics. Disable gravity, set "collision mask=circle", and on every tick apply a small force to each marble towards the center.

dop2000's avatar

dop2000

Member since 26 May, 2016

Twitter
dop2000 has 269 followers

Connect with dop2000

Trophy Case

  • 9-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

29/44
How to earn trophies