Loading...
Logo
Processing Forum
Hi, I have two questions. I want to add an systemsleeplistener, so how do I do this?



Copy code
  1. class  newClass implements  SystemSleepListener{
    void   systemAboutToSleep(AppEvent.SystemSleepEvent e){
        println("sleep");
      }
    void  systemAwoke(AppEvent.SystemSleepEvent e){
      println("awake");
        
      }
      
    }

And how do I get the library path for the use of exec
Copy code
  1. File workingDir = new File("path");   
  2.  String commandToRun = "file"+argu; 
  3.  Process p = Runtime.getRuntime().exec(commandToRun, null, workingDir);
I just don't get the right result with that. I've allready tried file.getAbsolutePath();  and other methods.



Replies(1)

I don't know the answer for the second question, but for the first: your class works just fine, you need to import com.apple.eawt.SystemSleepEvent and com.apple.eawt.AppEvent first, and then initialize an object of the newClass (which you can then ignore), and it should work.