When it loads and gets dynamically updated, the DOM fully loaded and parsed Log gets logged into the console
and works good, the script code is fully loaded and the dynamic data get s updated correctly
But when I use the Run Javascript action on a button workflow running rotateImages();
I then get an Uncaught ReferenceError: rotateImages is not defined
The HTML Element is on iframe (thats the only way it will work so far) but still gets me the undefined error
If you’re running this code in an HTML element as an iFrame, your function is only accessible within the scope of that iFrame, the parent window won’t have access.
Oh that actually worked! I everything to work perfectly in the console, I can actually see the files being generated in base64 strings in the console
But when the Javascript to Bubble element trigger gets called I get blank values
This is my code now after all the tweaking…
My goal is to take those images and update the database but I can’t find a way to get the list of texts base64 or urls for the newly generated images back to javascript to bubble element
This is the element’s setup. Am I doing something wrong here or what do you think would be the right way to get the data?