Characterto number
-
Im currently trying to take text in through the "get url" actor, im trying to get some numbers which works fine. But I then want to use these as numbers not as text, but the character to text actor changes them to the assigned value not a number i.e 1 becomes 48, when I want it to just become 1, but as a number not text.
Thanks
Ed
-
you can use the Javascript actor as a bridge.
You only need to pass in the value and output it again. Use the outputs to mutate the output type to number by connecting to a Number input, and that should do it for you.
The default JS code will work for a single value if you remove the '+ 1' part of the return statement.