Adobe Animate HTML/Canvas is changing dynamic my text fields setTransform property on export, causing the text to change position.
I have been noticing that my dynamic text fields are not showing up where they are supposed to be.
For example:
I have a dynamic text field on the stage. It's X and Y are X=280 and Y=20 when viewing the dynamic text fields properties via the Animate properties panel.
After I export, and find that text box in the exported JS file. The text fields setTransform X and Y values have been altered by 2.
So instead of reading
this.intro_txt.setTransform(280,20);
it actually reads
this.intro_txt.setTransform(282,22);
I can manually modify the value of X and Y to get it to line up where it needs to go, but solution is way too tedious to be an option.
I could also modify where the text is placed on the stage, but then I'll run into an issue of the text being off if this is indeed a software bug that is fixed.
I can't figure out why this is happening.
Thoughts?
