Javascript (Construct 2 Plugins)

  • 19
    This content is deleted
    Addon
    Javascript

    Use 3rd party JS libraries (including JQuery), call Javascript functions, access object properties and methods. Implement game objects, and algorithms in Javasc...

You're viewing a single comment in a conversation. View all the comments
  • 3 Comments

  • Order by
  • Instead of

    Init ["RectA"] with javascript ""

    Init ["RectB"] with javascript ""

    Set ["RectA"] to 666

    You should do

    Init ["RectA"] with javascript "RectA"

    Init ["RectB"] with javascript "RectB"

    Set ["RectA"] to 666

    • Again. Init ["Alias"] with javascript "foo" means that the plugin will remember that wherever you're putting "Alias" when dealing with aliases, it actually means javascript object/variable/array foo. For example "Alias.left" means foo.left. "Alias[bar]" means foo[bar].