We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Is there a way of accessing the sketch name or PDE filename programmatically? i.e., say I'm running a sketch MySketch.pde
:
void setup(){
println( getSketchName() + ".pde" ); // prints "MySketch.pde"
}
Answers
Perfect!