<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
      <title>Tagged with #export - Processing 2.x and 3.x Forum</title>
      <link>https://forum.processing.org/two/discussions/tagged/feed.rss?Tag=%23export</link>
      <pubDate>Sun, 08 Aug 2021 21:16:36 +0000</pubDate>
         <description>Tagged with #export - Processing 2.x and 3.x Forum</description>
   <language>en-CA</language>
   <atom:link href="/two/discussions/tagged%23export/feed.rss" rel="self" type="application/rss+xml" />
   <item>
      <title>cannot export to Mac OSX</title>
      <link>https://forum.processing.org/two/discussion/12388/cannot-export-to-mac-osx</link>
      <pubDate>Thu, 03 Sep 2015 19:17:08 +0000</pubDate>
      <dc:creator>richie_r</dc:creator>
      <guid isPermaLink="false">12388@/two/discussions</guid>
      <description><![CDATA[<p>Hi guys,
i have a simple sketch running on Windows 10, it exports fine to Windows, but exporting to OSX is not available, only Linux?</p>

<p>Thanks</p>
]]></description>
   </item>
   <item>
      <title>Wanting to export an animated Gif?</title>
      <link>https://forum.processing.org/two/discussion/7192/wanting-to-export-an-animated-gif</link>
      <pubDate>Tue, 16 Sep 2014 02:15:39 +0000</pubDate>
      <dc:creator>zerosimms</dc:creator>
      <guid isPermaLink="false">7192@/two/discussions</guid>
      <description><![CDATA[<p>Hey all</p>

<p>I was running through some old posts of mine and noticed I had written up a really simple way to export animated Gifs from your processing projects. and thought I would share it. (seeing as animated gifs are all the rage :) )</p>

<p>If your looking for this functionality head over to my web site (because you need a Jar I've provided) and quickly add this option to your projects :)</p>

<p><a href="http://www.bensimms.co.uk/gif-animation-for-java/" target="_blank" rel="nofollow">http://www.bensimms.co.uk/gif-animation-for-java/</a></p>
]]></description>
   </item>
   <item>
      <title>Export for Mac / Unable to load Java Runtime Environment</title>
      <link>https://forum.processing.org/two/discussion/23972/export-for-mac-unable-to-load-java-runtime-environment</link>
      <pubDate>Wed, 30 Aug 2017 12:43:39 +0000</pubDate>
      <dc:creator>globby</dc:creator>
      <guid isPermaLink="false">23972@/two/discussions</guid>
      <description><![CDATA[<p>Hi everybody,</p>

<p>I was searching for a solution for the following problem but nothing worked out yet. So I hope someone can help me!</p>

<p>When I epxort an app for mac out of processing (including the option for embedded java) i get the error message "Unable to load Java Runtime Environment" when i want to open the exported app on a mac with no java installed.</p>

<p>Is there anything I can do, to make the exported app work without further installations or settings?</p>

<p>I'm using Processing 3 on macOS Sierra</p>

<p>Thanks in advance!</p>
]]></description>
   </item>
   <item>
      <title>My exported application won't run!</title>
      <link>https://forum.processing.org/two/discussion/24051/my-exported-application-won-t-run</link>
      <pubDate>Thu, 07 Sep 2017 06:34:45 +0000</pubDate>
      <dc:creator>Ryan</dc:creator>
      <guid isPermaLink="false">24051@/two/discussions</guid>
      <description><![CDATA[<pre><code>import processing.video.*;  
import processing.serial.*; 
Serial myPort;
int[] valr={1021,1021,1021,1021,1021,1021,1021,1021,1021};
Movie[] endmovie = new Movie[9];
void setup(){  
  fullScreen();
  for(int i = 0;i&lt;9;i++){
endmovie[i] = new Movie(this,"b"+i+".mp4");
  }
  myPort = new Serial(this,Serial.list()[0], 9600);
  myPort.bufferUntil('\n');  //buffer until meet '\n', then call the event listener

}  

void draw(){
  image(endmovie[0],0,0,width/3,height/3);
  image(endmovie[1],width/3,0,width/3,height/3);
  image(endmovie[2],width*2/3,0,width/3,height/3);
  image(endmovie[3],0,height/3,width/3,height/3);
  image(endmovie[4],width/3,height/3,width/3,height/3);
  image(endmovie[5],width*2/3,height/3,width/3,height/3);
  image(endmovie[6],0,height*2/3,width/3,height/3);
  image(endmovie[7],width/3,height*2/3,width/3,height/3);
  image(endmovie[8],width*2/3,height*2/3,width/3,height/3);
for(int i = 0;i&lt;9;i++){
  endmovie[i].play();
   if(valr[i]&gt;500){
endmovie[i].speed(1.0);
   }else{
endmovie[i].speed(-1.0);
   }
 }
}

void movieEvent(Movie m){
  m.read();
}  

void serialEvent(Serial p) {  
  String inString = p.readString();  
  print(inString);
  if(inString!=null){
   String[] rec= split(inString, ',');
   for(int i=0;i&lt;9;i++){
 valr[i]=int(rec[i]);
   }  
  }  
}  
</code></pre>
]]></description>
   </item>
   <item>
      <title>Exporting issue with Processing 2.2.1 and controlP5 2.0.4 library</title>
      <link>https://forum.processing.org/two/discussion/23822/exporting-issue-with-processing-2-2-1-and-controlp5-2-0-4-library</link>
      <pubDate>Tue, 15 Aug 2017 14:06:55 +0000</pubDate>
      <dc:creator>carlonb</dc:creator>
      <guid isPermaLink="false">23822@/two/discussions</guid>
      <description><![CDATA[<p>Hi all,
I'm newbie with Processing, but I've a little skill in programming, I've mod an existing sketch project. All run Ok in IDE environment. After exporting for windows all folders seems correctly populated and the "data" folder has the .png file I use. but when I double click on the hud_gui.exe file nothing happen.</p>

<p>Note: my os is Windows 10 64bit</p>

<p>I searched on web and I found a tip in order to receive the diagnostic as follows:</p>

<h2>Terminal command:</h2>

<p>c:&#46;...........\HUD_GUI\application.windows64&gt; java -cp lib&#42; HUD_GUI</p>

<h2>Terminal reply:</h2>

<pre><code>ControlP5 2.0.4 infos, comments, questions at <a href="http://www.sojamo.de/libraries/controlP5" target="_blank" rel="nofollow">http://www.sojamo.de/libraries/controlP5</a>
Exception in thread "Animation Thread" java.lang.UnsatisfiedLinkError: jssc.SerialNativeInterface.getSerialPortNames()[Ljava/lang/String;
        at jssc.SerialNativeInterface.getSerialPortNames(Native Method)
        at jssc.SerialPortList.getWindowsPortNames(SerialPortList.java:309)
        at jssc.SerialPortList.getPortNames(SerialPortList.java:298)
        at jssc.SerialPortList.getPortNames(SerialPortList.java:182)
        at processing.serial.Serial.list(Unknown Source)
        at HUD_GUI.setup(HUD_GUI.java:624)
        at processing.core.PApplet.handleDraw(PApplet.java:2361)
        at processing.core.PGraphicsJava2D.requestDraw(PGraphicsJava2D.java:240)
        at processing.core.PApplet.run(PApplet.java:2256)
        at java.lang.Thread.run(Unknown Source)
</code></pre>

<p>Please someone help me to explain what is wrong.
Thanks in advance
Carlo</p>
]]></description>
   </item>
   <item>
      <title>How can I automatically convert PROCESSING CODE into UML?</title>
      <link>https://forum.processing.org/two/discussion/23824/how-can-i-automatically-convert-processing-code-into-uml</link>
      <pubDate>Tue, 15 Aug 2017 15:59:14 +0000</pubDate>
      <dc:creator>Peter8000</dc:creator>
      <guid isPermaLink="false">23824@/two/discussions</guid>
      <description><![CDATA[<p>Hi</p>

<p>I'm a IT teacher. How can I automatically convert PROCESSING CODE into Unified Modeling Language (UML)?</p>

<p>Are there any tools/software or open source projects for this task?</p>

<p>Thanks for your answers</p>

<p>Peter</p>
]]></description>
   </item>
   <item>
      <title>Exported app launches, but is blank</title>
      <link>https://forum.processing.org/two/discussion/23651/exported-app-launches-but-is-blank</link>
      <pubDate>Mon, 31 Jul 2017 16:10:50 +0000</pubDate>
      <dc:creator>rbardsley</dc:creator>
      <guid isPermaLink="false">23651@/two/discussions</guid>
      <description><![CDATA[<p>I have a lovely fully-functional and simple Processing app that compiles, runs in the IDE, and exports an app that looks like it should run locally. However, when I launch it, I get a gray and then a white blank screen. I do not see any errors. I tried launching the compiled app through the console: no errors. I do not see a security error anywhere. Is this a code signing issue? I am trying to compile this as an app that I can run on a second OS X laptop. Thanks! Processing 3.3.5, OS X 10.12.6</p>
]]></description>
   </item>
   <item>
      <title>Exporting Windows Application Issues</title>
      <link>https://forum.processing.org/two/discussion/23338/exporting-windows-application-issues</link>
      <pubDate>Fri, 07 Jul 2017 03:11:36 +0000</pubDate>
      <dc:creator>bujbot</dc:creator>
      <guid isPermaLink="false">23338@/two/discussions</guid>
      <description><![CDATA[<p>Hello,</p>

<p>I'm having issues exporting my processing program into a self contained application.  I'm hoping someone here can help, and I apologize if I am asking this in the wrong place.</p>

<p>I have two instances of my program; one using the sound library and the other the minim library.  Both run fine in the processing environment.  I've tried exporting these in all possible formats (full screen, not full screen, with Java included, without)</p>

<p>When I export the version using the sound library, it crashes/hangs once a sound file is called.  I tried commenting out the first couple of sound files and the program keeps going until the next sound file is called.</p>

<p>When I export the minim version, it just shows a grey screen and never starts the program.</p>

<p>I'm hoping someone out there might have an idea or two I can try to fix this.</p>

<p>The program is for an exhibit this weekend and will run in the background.  I'm trying to export it as it's own application because I assume it will use less system resources than running it in processing.  Is this assumption correct?</p>

<p>Thanks!</p>

<p>Nik</p>
]]></description>
   </item>
   <item>
      <title>Export Issue</title>
      <link>https://forum.processing.org/two/discussion/20899/export-issue</link>
      <pubDate>Mon, 20 Feb 2017 14:29:15 +0000</pubDate>
      <dc:creator>woogdoe</dc:creator>
      <guid isPermaLink="false">20899@/two/discussions</guid>
      <description><![CDATA[<p>Hi,</p>

<p>I am using Windows 10 and processing 2.
and I am developing a game by using Kinect with SimpleOpenNI library.</p>

<p>After I exported this program as an application and I tried to open it, it got stuck at the first screen (it doesn't go to the next screen)
Previously, I had the same problem and at that time, I found SimpleOpenNI jar file had a problem. 
So I changed SimpleOpenNI jar file and then the application worked fine after exported.</p>

<p>However, it doesn't work now even though I followed the same step. 
I was wondering what the problem is.</p>

<p>Thanks for your help!!</p>

<hr />

<p>Solved!!</p>
]]></description>
   </item>
   <item>
      <title>No applet folder found on linux after exporting</title>
      <link>https://forum.processing.org/two/discussion/20875/no-applet-folder-found-on-linux-after-exporting</link>
      <pubDate>Sat, 18 Feb 2017 21:31:13 +0000</pubDate>
      <dc:creator>amirteymuri</dc:creator>
      <guid isPermaLink="false">20875@/two/discussions</guid>
      <description><![CDATA[<p>Hi forum,</p>

<p>i have installed the latest version today (3.3) and am following some tutorials, but the things look a bit different on my PDE. Doing File&gt;Export Application&gt; from the menu doesn't create any applet folder in the project folder inside the sketchbook. The project folder contains some other folders (application.linux32, application.linux64, application.linux-armv6hf, data, project.pde). Where should i search for the applet folder, or this feature has changed in version 3.3?</p>
]]></description>
   </item>
   <item>
      <title>How to export an application to a single file?</title>
      <link>https://forum.processing.org/two/discussion/18201/how-to-export-an-application-to-a-single-file</link>
      <pubDate>Sun, 18 Sep 2016 10:53:59 +0000</pubDate>
      <dc:creator>DavidFi1</dc:creator>
      <guid isPermaLink="false">18201@/two/discussions</guid>
      <description><![CDATA[<p>Hi.
I want to export processing application to a single exe 
I could not find how to do this.</p>

<p>Thank you.
David.</p>
]]></description>
   </item>
   <item>
      <title>Export to a single exe</title>
      <link>https://forum.processing.org/two/discussion/19428/export-to-a-single-exe</link>
      <pubDate>Wed, 30 Nov 2016 14:47:09 +0000</pubDate>
      <dc:creator>schotsl</dc:creator>
      <guid isPermaLink="false">19428@/two/discussions</guid>
      <description><![CDATA[<p>Hello,</p>

<p>Like the title says I want to export my processing code to a single exe file that I could just easily send around</p>

<p>I know there's a export function in processing but I don't see a way to export the program to a single file, Then I thought I could just turn the jar into an exe but it appears you need 2 jar files so that wouldn't work either</p>

<p>Also is there a way to make sure windows doesn't detect my program as a virus? without marking it with "Trusted" so I can just send it to anyone without having to ask them to whitelist it</p>

<p>Thanks anyway :D</p>
]]></description>
   </item>
   <item>
      <title>PDF export problem</title>
      <link>https://forum.processing.org/two/discussion/19175/pdf-export-problem</link>
      <pubDate>Sun, 20 Nov 2016 14:38:03 +0000</pubDate>
      <dc:creator>waltercorneli</dc:creator>
      <guid isPermaLink="false">19175@/two/discussions</guid>
      <description><![CDATA[<p>Hi folks, can anyone suggest me a way to save a single frame in pdf mode based on the actual state of the display window without saving all the anchor points generated by the previous frames? The problem is that the background() function is called only in the setup(), so if I save the last frame as pdf, Processing will skips all the previous frames while, if I save all the frames indeed, Processing will creates an anchor point for each animation, so it'll creates a too large file that adobe illustrator, couldn't open. Is there a way to save in pdf only the last frame in an animation?</p>

<p>p.s.: sorry for my bad english.</p>
]]></description>
   </item>
   <item>
      <title>Real time video export from Processing</title>
      <link>https://forum.processing.org/two/discussion/8994/real-time-video-export-from-processing</link>
      <pubDate>Mon, 12 Jan 2015 07:08:56 +0000</pubDate>
      <dc:creator>hamoid</dc:creator>
      <guid isPermaLink="false">8994@/two/discussions</guid>
      <description><![CDATA[<p>This morning I started thinking about how to help someone who had trouble exporting video from Processing.
One hour later I had this proof of concept working:</p>

<p><a href="https://github.com/hamoid/Fun-Programming/tree/master/processing/ideas/2015/01/streamToFFMPEG" target="_blank" rel="nofollow">https://github.com/hamoid/Fun-Programming/tree/master/processing/ideas/2015/01/streamToFFMPEG</a></p>

<p>It allows you to build a video by adding frames one by one. No need to save all frames first and then merge them into a video.
It uses ffmpeg and pipes. In this demo, you can hold the mouse down to record. You don't need to record everything as one long segment: you can observe and when you see something interesting happening, hold down record (ok, I have to admit you won't see much exciting happening in this demo :-).</p>

<p>It will have to be adapted to Windows and OS X, and it should be configurable (bitrate, video format, etc).</p>

<p>But maybe it can be useful to someone already.</p>
]]></description>
   </item>
   <item>
      <title>Installer with Java.</title>
      <link>https://forum.processing.org/two/discussion/17545/installer-with-java</link>
      <pubDate>Fri, 15 Jul 2016 20:06:32 +0000</pubDate>
      <dc:creator>vito_Z80</dc:creator>
      <guid isPermaLink="false">17545@/two/discussions</guid>
      <description><![CDATA[<p>Hello !</p>

<p>I export application from Processing for Win 32/64.
When I give this my friend, he not run the program without Java.</p>

<p>1) How I can create an installer with Java at which for people Java isn't set ?</p>

<p>2) Why the application can not work at Win 32bit ?</p>
]]></description>
   </item>
   <item>
      <title>render off frame / not on fps realtime</title>
      <link>https://forum.processing.org/two/discussion/17526/render-off-frame-not-on-fps-realtime</link>
      <pubDate>Thu, 14 Jul 2016 09:25:29 +0000</pubDate>
      <dc:creator>monbro</dc:creator>
      <guid isPermaLink="false">17526@/two/discussions</guid>
      <description><![CDATA[<p>Hi, I am struggling finding a solution for this. Basically I have some animation in processing which has a duration of about 3 minutes. Final goal would be to have something like a video in HD of my animation.</p>

<p>I tried different methods, one is <a href="http://funprogramming.org/VideoExport-for-Processing/" target="_blank" rel="nofollow">http://funprogramming.org/VideoExport-for-Processing/</a> which works in some way. But the bigger the quality the sooner the animation (after 1min) is getting slower and off sync to the original FPS (FrameRate) settings.</p>

<p>I already looked into <a href="https://vvvv.org/" target="_blank" rel="nofollow">https://vvvv.org/</a> which does not has a good export option either. I want to create a abstract graphics music video (different music instruments are used as input for generating different visuals).</p>

<hr />

<p>General question: Is there a way to render animations off screen and not in realtime in processing? So that I could export my animation in high quality within a correct frame rate? Thanks a lot.</p>
]]></description>
   </item>
   <item>
      <title>How to run processing in java without an IDE</title>
      <link>https://forum.processing.org/two/discussion/17359/how-to-run-processing-in-java-without-an-ide</link>
      <pubDate>Wed, 29 Jun 2016 15:20:54 +0000</pubDate>
      <dc:creator>trotpfrik</dc:creator>
      <guid isPermaLink="false">17359@/two/discussions</guid>
      <description><![CDATA[<p>I have seen alot of information about running processing with java using an IDE  (eclipse, netbeans). 
I wanted to know how to run processing from java without using an IDE.
Could someone describe step by step instructions in setting up and running processing from java or point me to a good website. 
I am using java 8
Thanks</p>
]]></description>
   </item>
   <item>
      <title>high resolution issue</title>
      <link>https://forum.processing.org/two/discussion/16941/high-resolution-issue</link>
      <pubDate>Thu, 02 Jun 2016 04:35:54 +0000</pubDate>
      <dc:creator>alexdontsurf</dc:creator>
      <guid isPermaLink="false">16941@/two/discussions</guid>
      <description><![CDATA[<p>Exporting in high resolution makes my sketch look completely different. I'm using PGraphics and I wonder how this could affect my sketch. I have no idea why it changed the color of my stuff and remove the alpha channel. I guess is because because PGraphics can't interact with sketch's background. If I am right, how can made this alpha gradient trails in PGraphics?</p>

<pre><code>import processing.pdf.*;

float size = 1;
float z = 0.0;
float z2 = 20.0;
float z3 = 30.0;
PFont myFont;
int offset = 10;

void setup(){
  size(413,945,P3D);
  background(10);
  pixelDensity(displayDensity());
  colorMode(HSB, height,300,360);
  noStroke();
  myFont = createFont("bmd Neuzeit Grotesk T Regular.ttf", 10);
  textFont(myFont);
  textAlign(CENTER, CENTER);

}

void drawGrid(PGraphics pg){

  pg.fill(0,20);
  pg.rect(0,0,width, height);

  String[] chars = split("b m d b m d m", ' ');

    for ( int x = -width/2; x &lt; width + width/2; x +=offset){
    for ( int y = -height/2; y &lt; height + height/2; y += offset){

      int nl = (int) map(noise(z, x / 550.0, y / 550.0), 0, 1, 0, 7);
      float ns = map(noise(z, x / 550.0, y / 550.0), 0, 1, 0, 3);

      pg.fill(0,0,350);
      pg.pushMatrix();

      if ((y - 16) % (2) == 0){
        pg.scale(ns);
        pg.text(chars[nl], x,y );}
        else{
        pg.text(chars[nl], x + 8 ,y);
        }
      pg.popMatrix();

    }
  }

  z = z + .003;

}

void draw() {


  drawGrid(this.g);


}

void keyPressed(){
  if (key == 's') {
    save("normal.png");
    hf(6);
    exit();

  }
}


void hf(int saveScale){
  PGraphics pg = createGraphics(int(width*saveScale), int(height*saveScale), PDF, "output.pdf");
  pg.beginDraw();
  pg.scale(saveScale);
  drawGrid(pg);
  pg.dispose();
  pg.endDraw();
}
</code></pre>
]]></description>
   </item>
   <item>
      <title>Simpleopenni.jar in Ubunto 12</title>
      <link>https://forum.processing.org/two/discussion/16672/simpleopenni-jar-in-ubunto-12</link>
      <pubDate>Wed, 18 May 2016 11:17:20 +0000</pubDate>
      <dc:creator>azize1356</dc:creator>
      <guid isPermaLink="false">16672@/two/discussions</guid>
      <description><![CDATA[<p>I wrote my sketch in processing 2.2.1 at windows 7 64 bit. To avoid CPU Consuming, I decided to build a script which is executable in Linux utilizing export feature of processing. Although both of original sketch in Windows 7 and its standalone file run perfectly in windows 7, but the linux script (standalone file for linux namely linux.application64) does not run in Ubunto 12. Noting I use last version of Simpleopenni library in my code and i get the following error:
"cant load Simpleopenni library (libsimple openni64.so):java.lang.unsatisfied link error: cant load the library"</p>

<p>Would you please help me to solve this problem?</p>

<p>Bests</p>
]]></description>
   </item>
   <item>
      <title>.exe files crash</title>
      <link>https://forum.processing.org/two/discussion/16096/exe-files-crash</link>
      <pubDate>Tue, 19 Apr 2016 08:09:56 +0000</pubDate>
      <dc:creator>Venetian</dc:creator>
      <guid isPermaLink="false">16096@/two/discussions</guid>
      <description><![CDATA[<p>Hello guys, i am pretty new in programming. I have an issue with every .exe file that i import from my sketch. They do not open, but they are visible in the task manager (and cannot be shut down). Everything works fine in the sketch, but as soon as i export them to .exe they just won't load.
I tried with fullscreen, without fullscreen, win32 and win64 as well, java embedded and not embedded, the result is the same. Application won't load, but it is visible in the Task Manager.
(Edit: i tried 3.0.2 and 2.2.1 as well, the problem is the same)</p>
]]></description>
   </item>
   <item>
      <title>How to export P5.js sketch to html</title>
      <link>https://forum.processing.org/two/discussion/15971/how-to-export-p5-js-sketch-to-html</link>
      <pubDate>Mon, 11 Apr 2016 21:52:18 +0000</pubDate>
      <dc:creator>beej</dc:creator>
      <guid isPermaLink="false">15971@/two/discussions</guid>
      <description><![CDATA[<p>Is there a way to export a p5.js sketch to html like there is in processing, so it can then be used in other applications?</p>
]]></description>
   </item>
   <item>
      <title>Exported application fails. need to code signing? How to sign?</title>
      <link>https://forum.processing.org/two/discussion/15953/exported-application-fails-need-to-code-signing-how-to-sign</link>
      <pubDate>Sun, 10 Apr 2016 20:14:12 +0000</pubDate>
      <dc:creator>Per</dc:creator>
      <guid isPermaLink="false">15953@/two/discussions</guid>
      <description><![CDATA[<p>Hi!</p>

<p>I exported an application. I opens fine on my computer using mac 10.9 which I used for the export. but when open it on another mac with 10.7 it doesnt work. First I thought it was because of old operating system so I tried to export it with processing 2 instead of 3 but with the same result.</p>

<p>I looked in the system logs and it says permission denied error. I guess its because the application is not signed (?) and the apple Gatekeeper system prevent it from open.</p>

<p>How can I sign my exported application? Any help would be very much appreciated!</p>

<p>thanks</p>
]]></description>
   </item>
   <item>
      <title>Exported applications do not run with El Capitan</title>
      <link>https://forum.processing.org/two/discussion/15916/exported-applications-do-not-run-with-el-capitan</link>
      <pubDate>Fri, 08 Apr 2016 08:54:31 +0000</pubDate>
      <dc:creator>charlesworth</dc:creator>
      <guid isPermaLink="false">15916@/two/discussions</guid>
      <description><![CDATA[<p>Hello,</p>

<p>I am having problems running exported applications on Macs running El Capitan (and possible other versions on OS X, I had it running on a machine running Yosemite but another user reported that it did not run on his Mac with Yosemite).</p>

<p>If I export the application and then run that application on my machine it works fine (I am running El Capitan) but if I zip it then upload it to dropbox when it is downloaded again (onto my machine or others) it will not run and gives the following error:</p>

<p>“PROJECTNAME” is damaged and can’t be opened. You should move it to the Trash.</p>

<p>This is really frustrating and upsetting as I am in the final stages of a year long Uni project and I cannot get it out to users to test it (a significant portion of my grade). Does anyone have any idea why this is not working and any work-arounds? I need to get this working in the next few days really.</p>

<p>I am running the latest version of Processing (3.0.2).</p>

<p>Thank you so much for any help,</p>

<p>Charlesworth</p>
]]></description>
   </item>
   <item>
      <title>Exported program not working on some computers</title>
      <link>https://forum.processing.org/two/discussion/15600/exported-program-not-working-on-some-computers</link>
      <pubDate>Mon, 21 Mar 2016 14:16:31 +0000</pubDate>
      <dc:creator>Hopenager</dc:creator>
      <guid isPermaLink="false">15600@/two/discussions</guid>
      <description><![CDATA[<p>For the <a rel="nofollow" href="http://7drl.roguetemple.com/">7DRL game jam</a> I made a game in processing, but unfortunately it seems it isn't working on some computers. On my machines, both a windows 7 and a windows 8 computer, it works without issue, but I've been told that on some windows 7 computers the application will launch, but only show a grey screen (which sounds a bit like what happens when you run a sketch but have no code in the draw() function, leading me to believe that something is causing an issue before the draw loop even completes). Since I'm unable to reproduce this issue I don't really know where to go from here to fix the issue. The game, with source code, is available <a rel="nofollow" href="https://drive.google.com/file/d/0B2LC-Bv9vlwVdWlvOUkwX2E4aE0/view?usp=sharing">here</a></p>

<p>EDIT: I think I might have found the problem. Apparently if a sketch attempts to use loadImage(), and there is a "+" anywhere in the filepath of the application, the application will fail to run and instead just display a blank gray screen. Reporting this to the github issues page right now.</p>

<p>EDIT 2: <a href="https://github.com/processing/processing/issues/4366" target="_blank" rel="nofollow">https://github.com/processing/processing/issues/4366</a></p>
]]></description>
   </item>
   <item>
      <title>Export does not work</title>
      <link>https://forum.processing.org/two/discussion/15301/export-does-not-work</link>
      <pubDate>Sat, 05 Mar 2016 17:08:33 +0000</pubDate>
      <dc:creator>Jennifer96</dc:creator>
      <guid isPermaLink="false">15301@/two/discussions</guid>
      <description><![CDATA[<p>Hi guys,
iam new here and i dont know which category is the right one for this question sry.
So my Problem is: 
I was writing my code in Processing and then i export it. 
Then i tryd to let it run on a certain time with windows 7 task planer
(i dont know the right english word for it)
Sadly this dont work and i dont know why. If i start it with the mouse it works fine
but when i try to start it with task planer or batch it doesnt even show.</p>

<p>Greetings Jenni</p>
]]></description>
   </item>
   <item>
      <title>Auto Start Sketch (OSX) Or...</title>
      <link>https://forum.processing.org/two/discussion/15008/auto-start-sketch-osx-or</link>
      <pubDate>Fri, 19 Feb 2016 05:57:01 +0000</pubDate>
      <dc:creator>Casey_Scalf</dc:creator>
      <guid isPermaLink="false">15008@/two/discussions</guid>
      <description><![CDATA[<p>Processing 2.21
MacBook Pro 14' 10.10</p>

<p>I am having a few "last mile problems" getting this project up and running.</p>

<p>This is my first time working with <strong>starting up applications and files from boot on a Mac OSX</strong>. I found this program to be very helpful - <a rel="nofollow" href="https://www.dssw.co.uk/powermanager/">Power Manager</a> - which is a lightweight GUI over the top of what the OS can do already.</p>

<p>I have a simple application that sends video out via <a rel="nofollow" href="https://github.com/Syphon/Processing">Syphon</a>; essentially an invisible video cable between programs. Really really handy. When a movie clip ends the next one plays. It just keeps looping the contents of a folder. It works great when I hit "Run" in the Processing IDE. Butter smooth. And it even routes right into MadMapper and over multiple screens with ease.</p>

<p><strong>I essentially want to schedule this program and the associated mapping to file to launch everyday.</strong></p>

<p>I exported the sketch. I had a warning saying it would not export a 32-bit version because that was not supported. But when I launched the exported app it still ran fine standing alone. Most excellent I thought!</p>

<p>I then took some time to route the exported app into <a rel="nofollow" href="http://www.madmapper.com/">MadMapper</a>; a great projection mapping tool. This is where the trouble started. It would now run very slow. Choppy, really slow. Missing frames. Sluggish GUI on both programs. Fans engaging. <strong>The exported app was running waaay slower than the exact same code in the IDE.</strong> I am not sure why this is? <strong>Why would it run any different after being exported?</strong></p>

<p>This led me to a possible alternative. I could launch the actual sketch on boot...  But how to hit "Run" in the IDE without being there? I think this would be very useful as well, even if the exported could be fixed. For instance, I have sketches which will not export (openCV, etc) yet I would still like to use wither the command line, or thus a scheduling app, to launch.</p>

<p>Any tips, ideas, or suggestions would be much appreciated,</p>
]]></description>
   </item>
   <item>
      <title>Can't export the application</title>
      <link>https://forum.processing.org/two/discussion/14772/can-t-export-the-application</link>
      <pubDate>Fri, 05 Feb 2016 17:14:47 +0000</pubDate>
      <dc:creator>zhidogolonoga</dc:creator>
      <guid isPermaLink="false">14772@/two/discussions</guid>
      <description><![CDATA[<p>Hello, I'm using processing 2.2.1 and I have a sketch with SimpleOpenNI library for Kinect. It works well when I run it from the code, but when I export it and run the app, there is nothing but gray display even when Kinect is on.
I tried exporting the same code from processing 3.0.1 but all is the same.</p>

<p>Does anyone know the possible solution?</p>
]]></description>
   </item>
   <item>
      <title>How to change Icone "Processing Run"</title>
      <link>https://forum.processing.org/two/discussion/14700/how-to-change-icone-processing-run</link>
      <pubDate>Sun, 31 Jan 2016 11:30:11 +0000</pubDate>
      <dc:creator>Stanlepunk</dc:creator>
      <guid isPermaLink="false">14700@/two/discussions</guid>
      <description><![CDATA[<p>How to change totally the icone "Run Processing" on application exported on Mac.
I Change easily the picture by .icns. But when I launch the app, the icone.icns change for the "Processing Run". SO I find the ressources folder of the exporting app the file sketch.icns and change for my new one, but nothing change and the original icone is back :(<img src="" alt="" /><img src="https://forum.processing.org/two/uploads/imageupload/907/5EH8C5HX7XZM.png" alt="Capture d’écran 2016-01-31 à 12.25.56" title="Capture d’écran 2016-01-31 à 12.25.56" /></p>
]]></description>
   </item>
   <item>
      <title>How to change the processing aplication ICON?</title>
      <link>https://forum.processing.org/two/discussion/14162/how-to-change-the-processing-aplication-icon</link>
      <pubDate>Sun, 27 Dec 2015 17:45:37 +0000</pubDate>
      <dc:creator>emo</dc:creator>
      <guid isPermaLink="false">14162@/two/discussions</guid>
      <description><![CDATA[<p>I try with replacing the skecth.icons with my own set of icons. The aplication get the icon, but when i launch teh aplication in the task bar shows de default icon of processing. Any idea how to replace this icon? thank's.</p>
]]></description>
   </item>
   <item>
      <title>Unknown bug, complete game execute from IDE but not work after export aplication.</title>
      <link>https://forum.processing.org/two/discussion/14268/unknown-bug-complete-game-execute-from-ide-but-not-work-after-export-aplication</link>
      <pubDate>Tue, 05 Jan 2016 06:06:28 +0000</pubDate>
      <dc:creator>erkosone</dc:creator>
      <guid isPermaLink="false">14268@/two/discussions</guid>
      <description><![CDATA[<p>Hi folks, I leave with you a complete game I've scheduled processing, the application works perfectly from the editor, but when I export not want to run. I'm desperate, that can not be ..
Originally an app for processing 2.2.1 this bug but I have made port it to 3.0.1 and does not work once it has exported ..</p>

<p>I have no idea that it could be happening, please help.</p>

<p>DOWNLOAD: <a rel="nofollow" href="https://dl.dropboxusercontent.com/u/65979707/processing/iDrawFamily.zip">https://dl.dropboxusercontent.com/u/65979707/processing/iDrawFamily.zip</a></p>
]]></description>
   </item>
   </channel>
</rss>