i can't export exe file

zixzix
edited January 2014 in Using Processing

i used win7 64bit.processing 2.1 i cannot export a exe file on processing 2.1 for win 64bit. and i can export a exe file on processing 2.1 for win 32.but when i double click it,nothing happen.

Answers

  • i have the same problem as you...

  • does anybody know how to do?

  • What do you mean when you say you cannot export an exe? Do you get an error? Does it do nothing? Is the option disabled? Does it export files that don't run? Something else?

    Recommended reading: http://wiki.processing.org/w/Export_Info_and_Tips

  • This code run before export goes very well but failed after exported. I doubt minim lead to that , am i right???(I am on mac and have the same problem)

    import processing.opengl.*;
    import processing.video.*;
    import ddf.minim.spi.*;
    import ddf.minim.signals.*;
    import ddf.minim.*;
    import ddf.minim.analysis.*;
    import ddf.minim.ugens.*;
    import ddf.minim.effects.*;
    
    
    AudioPlayer player;
    Minim minim;
    
    
    
    void setup(){
      size(900,600,OPENGL);
      background(0);
      fill(0);
      smooth(8);
      noStroke();
      minim=new Minim(this);
      player=minim.loadFile("music.mp3",1024);
    }
    
    void draw(){
    }
    
    void keyReleased(){
      if(keyCode==LEFT){
        player.close();
        minim.stop();
        super.stop();
      }
      else if(keyCode==RIGHT){
        player.play();
      }
    }
    
  • I tried to export the example sketch.but there is no exe file at all.the else file had been exported besides exe.(64 bit) i can export exe file but when i double click the exe file nothing happened(32 bit) Both of them had no error message.

  • Problem with recent versions of Processing, already explained (with workaround) in other threads of this category...

Sign In or Register to comment.