I am working on a project, but have accidently clicked some button which linked my “Microsoft Print” software to my Run button(also to the keybind). So everytime I try to run my software this windows tab opens up . Does anyone know what to do? Thanks in advance!
Hello,
Do you have a print() in your code?
Example:
function setup() {
createCanvas(400, 400);
print();
}
function draw() {
background(220);
}
Reference:
https://p5js.org/reference/#/p5/print
:)
Thank you! Silly mistake ;). Found it in a file where i was checking things cuz of an error and then left it there without an argument .
1 Like