Content tagged javascript
JavaScript, often abbreviated as JS, is a high-level, interpreted programming language that conforms to the ECMAScript specification. It is a language that is also characterized as dynamic, weakly typed, prototype-based and multi-paradigm.
I have an external JS script with some async funcstions and I want to call them in event sheets one after another and make sure each one finishes working before...
Folks, thanks in advance for any contribution to this topic! We were trying to develop a plugin to take screenshot sequences and add effects . So first, we star...
So I've tried Discord and the "how do I..." Forum, but can't find any help. Most likely because my problem isn't solvable with the basic Construct functions (?)...
I've been at this for many hours and I can't figure out why it is doing this. In the original plugin SDK, within Draw(renderer) , I have: Renderer.SetNoPremulti...
Is it possible to create loops in my Plugin SDK 2 ? In the old SDK 1 , loops work as expected and perform their function successfully. However, in SDK 2 , I can...
I have a project in which I am layering different types of Sprite instances in different colors. The function is in a separate Javascript file and then imported...
So I'm trying to make a text that will change depending on what the ammount of an object is but I cant get the text to change? Let score = plant.ItemCount. Cons...
Runtime.GlobalVars.MyGlobalBoolVar = runtime.Objects.AJAX.LastData; The other thread said to save it to a global variable first, but that's not an option becaus...
Console.Log(runtime.Objects.EmailBodyInput.Text); // Log the whole object to see what it contains. Var emailBody = runtime.Objects.EmailBodyInput.Text; If (emai...
Const ObjectA = runtime.Objects.ObjectA.GetFirstInstance(); Const ObjectChildren = ObjectA.Children(); For (let j = 0; J < ObjectChildren.Length; J++) {. If (Ob...