Hi,
For a couple days I have a 'problem' with converting one of my Construct 2 game in Construct 3. I have a small Javascript that is executed with the Browser function from where I pass a variable to the Construct 2 game.
Example:
Browser > Execute Javascript > "... c2_callFunction('find_id', [found]);"
Function > on 'find_id" > set variable to Function.Param(0)
So, this is how I made it in Construct 2. With the Javascript line I transfer a variable to Construct 2 game. I get that variable through 'set value' to 'Function.Param(0)', where I assign the first param to that variable from the game.
Ok, the problem is that in Construct 3 we don't have anymore this type of functions.
How do I transfer the 'found' variable form Javascript to the Construct 3 game?
I saw that now the function is 'c3_callfunction...'. But I don't know how to transfer that value.
Anybody know how to do that? :)