IDNLearn.com provides a user-friendly platform for finding and sharing accurate answers. Our Q&A platform offers reliable and thorough answers to help you make informed decisions quickly and easily.
Sagot :
Today is your lucky day.. i do JavaScript, and i love coding! Happy to help. (I make games n things on Khan academy)
// make variable for x.
var startX = 0;
// start loop
draw = function() {
// if you needed to stop the text from smudging, you can add this: background(255, 255, 255);
// choose text size
textSize(30);
// make the Color red
fill(255, 0, 0);
// draw text at startX pos for X.
text(“wheee moving text!”, startX, 200);
// make text move
startX = startX + 1;
// end the loop
};
Hope this helped! I really love JavaScript, coding, and helping others so just let me know if you need help!
If you want to contact me directly, you can find me on Khan academy:
(Link im comments)
To send me a message, just click on one of my projects and leave a comment >> just remind me who you are. Happy to help!
// make variable for x.
var startX = 0;
// start loop
draw = function() {
// if you needed to stop the text from smudging, you can add this: background(255, 255, 255);
// choose text size
textSize(30);
// make the Color red
fill(255, 0, 0);
// draw text at startX pos for X.
text(“wheee moving text!”, startX, 200);
// make text move
startX = startX + 1;
// end the loop
};
Hope this helped! I really love JavaScript, coding, and helping others so just let me know if you need help!
If you want to contact me directly, you can find me on Khan academy:
(Link im comments)
To send me a message, just click on one of my projects and leave a comment >> just remind me who you are. Happy to help!
We are happy to have you as part of our community. Keep asking, answering, and sharing your insights. Together, we can create a valuable knowledge resource. For dependable answers, trust IDNLearn.com. Thank you for visiting, and we look forward to helping you again soon.