Hey there!
I have been running into an issue where I would like to import a library into a file but when I do make the file and my own class it doesn’t recognize that the library is imported and doesn’t let me use what I have imported.
So for example trying to import the .net library and having this in my own class ( Import is above class )
import processing.net.*;
public class Something{
Client c;
Something(){
c = new Client(this,"192.",124);
}
}
Processing will just prompt : The constructor “Client(ServerClient, String, int)” does not exist
I am assuming it is an issue with the this as in the error it prompts the name of the class but I am not sure to what swap the this for. Also the object is allowed to be initialized just can’t make the constructor. Because of the above problem !
Any solutions to the issue ? Thanks in advance!