Forum Discussion
MattBotelho
3 months agoCommunity Member
JavaScript not working
Hello, In an effort to create Dark Mode in JavaScript, I have been attempting using codes that change shapes and text into different colors. For whatever reason, codes that I once used are no longer...
- 3 months ago
The first part is easy. You forgot the "" around the color.
let pointStar = document.querySelector('[data-acc-text="star5Points"]'); gsap.to(pointStar, {duration:0.7,scale:1.5}); let pathElement = pointStar.querySelector('path'); console.log("pathElement: "+pathElement); pathElement.setAttribute('fill', "#C0504D");
Then this works fine. Little note to everyone coding in Javascript in Storyline, when testing i noticed giving the variable a numeric as first character...Storyline fails on that.
So pointStar works fine... 5pointStar will fail ;-)
MathNotermans-9
Community Member
PS. there is now a separate group in the community for Javascript
MattBotelho
3 months agoCommunity Member
Ok thanks I'll try asking if anyone has a fix for the paragraphing in there.