<?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 sketchpath() - Processing 2.x and 3.x Forum</title>
      <link>https://forum.processing.org/two/discussions/tagged/feed.rss?Tag=sketchpath%28%29</link>
      <pubDate>Sun, 08 Aug 2021 18:56:38 +0000</pubDate>
         <description>Tagged with sketchpath() - Processing 2.x and 3.x Forum</description>
   <language>en-CA</language>
   <atom:link href="/two/discussions/taggedsketchpath%28%29/feed.rss" rel="self" type="application/rss+xml" />
   <item>
      <title>stream video on second monitor</title>
      <link>https://forum.processing.org/two/discussion/27915/stream-video-on-second-monitor</link>
      <pubDate>Fri, 04 May 2018 16:22:23 +0000</pubDate>
      <dc:creator>secondsky</dc:creator>
      <guid isPermaLink="false">27915@/two/discussions</guid>
      <description><![CDATA[<p>Hi All, i would be able to stream two video on two different monitor, at the same time.
So far this is the code i written to stream one on the secondary monitor, but is not working:</p>

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

final PApplet projector0 = new ProjectorSketch();
final PApplet projector1 = new ProjectorSketch();

void setup() {
  size(300, 300, JAVA2D);
  smooth(4);
  noLoop();
  stroke(-1);

  runSketch(new String[] { "--display=1", "--present",  "--sketch-path=" + sketchPath(), "Projector" }, projector0);

}

void draw() {
  background(0);
}


class ProjectorSketch extends PApplet {
  Movie movie;


 void setup() {

   stroke(#FFFF00);
   movie = new Movie(this, "transit.mov");
  movie.loop();

   }


  public void settings() {
    size(displayWidth, displayHeight, JAVA2D);

  }

  void draw() {

  image(movie, 0, 0, width, height);
  }
}

public void movieEvent(Movie m) {
  m.read();
}
</code></pre>
]]></description>
   </item>
   <item>
      <title>Eclipse -&gt; Export to JAR | Images don't load?</title>
      <link>https://forum.processing.org/two/discussion/25493/eclipse-export-to-jar-images-don-t-load</link>
      <pubDate>Sun, 10 Dec 2017 12:13:26 +0000</pubDate>
      <dc:creator>Yjuq</dc:creator>
      <guid isPermaLink="false">25493@/two/discussions</guid>
      <description><![CDATA[<p>Hello everyone! o/
I hope I'm in the right category. Well, I have a problem with my exported JAR file. I load some Images with PApplet.loadImage(). In eclipse it works without problems. But if I try it to export them into a JAR file, I got some exceptions.</p>

<p>My project structure:
<img src="https://i.imgur.com/EfA0dFI.png" alt="" /></p>

<p>Well, I load the Images from my Background.java with PApplet.loadImage("img/galaxy.gif") for example. It works in eclipse, but if I try it to export them to a JAR file and run it after, it gives me some exceptions:</p>

<p>java.lang.NullPointerException
        at processing.core.PApplet.dataFile(PApplet.java:8016)
        at processing.core.PApplet.dataPath(PApplet.java:7993)
        at processing.core.PApplet.createInputRaw(PApplet.java:7093)
        at processing.core.PApplet.createInput(PApplet.java:7011)
        at processing.core.PApplet.loadBytes(PApplet.java:7301)
        at processing.core.PApplet.loadImage(PApplet.java:5439)
        at processing.core.PApplet.loadImage(PApplet.java:5363)
        at make.object.Background.setup(Background.java:47)
        at make.Applet.setup(Applet.java:16)
        at processing.core.PApplet.handleDraw(PApplet.java:2412)
        at processing.awt.PSurfaceAWT$12.callDraw(PSurfaceAWT.java:1557)
        at processing.core.PSurfaceNone$AnimationThread.run(PSurfaceNone.java:316)</p>

<p>Well, this line here:
at make.object.Background.setup(Background.java:47)</p>

<p>It tells me it can't find any images. I had check my JAR file and the structure looks okey. I have my img folder here, my make folder (with the other stuff inside) and the imported core library. But why it doesn't load my images now?</p>

<p>Sorry for my bad english. I hope you understand my problem. ^^</p>
]]></description>
   </item>
   <item>
      <title>Where to put a jpg using BlueJ</title>
      <link>https://forum.processing.org/two/discussion/25490/where-to-put-a-jpg-using-bluej</link>
      <pubDate>Sun, 10 Dec 2017 09:09:47 +0000</pubDate>
      <dc:creator>teachFun</dc:creator>
      <guid isPermaLink="false">25490@/two/discussions</guid>
      <description><![CDATA[<p>Hi everybody,
since this year, I'm using BlueJ and processing to teach my students the java basics. I use BlueJ because later that year they have to use it for other projects. I put the processing "core.jar" in a folder wich is named "+libs" in my BlueJ project folder - no problem. 
But where do I have to put an image like "bild1.jpg" so it is found by processing. I tried to put it inside the BlueJ-project folder, inside the +libs-folder. I tried using "bild1.jpg", "./bild1.jpg", ".\bild1.jpg" . Everytime I got a Null pointer exception when using "image(img,0,0)".
Thanks in advance for every hint, Ingo</p>
]]></description>
   </item>
   <item>
      <title>Can't load image</title>
      <link>https://forum.processing.org/two/discussion/25448/can-t-load-image</link>
      <pubDate>Fri, 08 Dec 2017 05:37:20 +0000</pubDate>
      <dc:creator>LaxOfBayDay</dc:creator>
      <guid isPermaLink="false">25448@/two/discussions</guid>
      <description><![CDATA[<p>So I need to make an app with two windows. I got this code online and it works but I cant load an image into it (the commented out part is mine). Any idea why the app freezes when I try to run it while loading an image?</p>

<blockquote class="Quote">
  <p>class PWindow extends PApplet {
     //   PImage[] subs = new PImage[2];
       // String testKey="m";
    PWindow() {
      super();
      PApplet.runSketch(new String[] {this.getClass().getSimpleName()}, this);
  <br />
    }</p>
  
  <p>void settings() {
      size(1920, 1080);
    }</p>
  
  <p>void setup() {
      background(150);
      //  subs[0]=loadImage("test.png");
    }</p>
  
  <p>void draw() {
      //if (keyPressed &amp;&amp; key == testKey.charAt(0)){
     // image(subs[0], 0,0);
     println("well it works");
      //}
    }</p>
  
  <p>void mousePressed() {
      println("mousePressed in secondary window");
    }
  }</p>
</blockquote>
]]></description>
   </item>
   <item>
      <title>How to edit a text file</title>
      <link>https://forum.processing.org/two/discussion/21559/how-to-edit-a-text-file</link>
      <pubDate>Thu, 23 Mar 2017 16:51:28 +0000</pubDate>
      <dc:creator>quasarbright</dc:creator>
      <guid isPermaLink="false">21559@/two/discussions</guid>
      <description><![CDATA[<p>I have managed to make a simple file writing program which can append to a file. Now, I want to know how to edit an already existing text file. I want to be able to access a specific line or something and then change or append stuff onto that line. How do you do these kinds of things?
Here is my code:<br />
<code>import java.io.FileWriter;
import java.io.BufferedWriter;
void setup() {
  size(1, 1);
  try {
    FileWriter output = new FileWriter(sketchPath()+"\\strings.txt", true);
    output.write("stuff");
    output.write(System.getProperty( "line.separator" ));
    output.flush();
    output.close();
  }
  catch(IOException e) {
    println("It broke!!!");
    e.printStackTrace();
  }
  exit();
}</code></p>
]]></description>
   </item>
   <item>
      <title>Image in PApplet</title>
      <link>https://forum.processing.org/two/discussion/17569/image-in-papplet</link>
      <pubDate>Mon, 18 Jul 2016 02:59:58 +0000</pubDate>
      <dc:creator>jaspervanblokland</dc:creator>
      <guid isPermaLink="false">17569@/two/discussions</guid>
      <description><![CDATA[<p>Hi There,</p>

<p>How can i put a image in a public class extend PApplet (extra window) 
I can not figure out how i should do that</p>

<p>Greetings</p>
]]></description>
   </item>
   <item>
      <title>sketchPath is not visible (3.0a9)</title>
      <link>https://forum.processing.org/two/discussion/11162/sketchpath-is-not-visible-3-0a9</link>
      <pubDate>Fri, 05 Jun 2015 10:35:46 +0000</pubDate>
      <dc:creator>kowalski5233</dc:creator>
      <guid isPermaLink="false">11162@/two/discussions</guid>
      <description><![CDATA[<p>Hi guys.</p>

<p>I'm playing with the 3.0a versions and have been using 5 for a while and upgraded to 9 after a format.  I see quite a lot has changed (awesome!), but am finding some things not working.  I hope I did enough research before posting here.</p>

<p>I'm using 'sketchPath' to determine the path of the sketch to open some files in my data folder<br />
<code>String UBUPFile = sketchPath + "/data/UBUP.bin";</code><br />
Where this has been working fine up until 3.0a5, in a9 it produces the following error<br />
<code>The field PApplet.sketchPath is not visible</code><br />
There doesn't seem to be anything in the revisions.txt, unless I missed something</p>
]]></description>
   </item>
   <item>
      <title>Size method for intial window not working when more windows are are added.</title>
      <link>https://forum.processing.org/two/discussion/16457/size-method-for-intial-window-not-working-when-more-windows-are-are-added</link>
      <pubDate>Fri, 06 May 2016 08:08:07 +0000</pubDate>
      <dc:creator>HectorSmoke</dc:creator>
      <guid isPermaLink="false">16457@/two/discussions</guid>
      <description><![CDATA[<p>Recently I looked into making sketches with multiple windows and found some code online that allowed me to achieve this. The code I wrote based of the code I found online is below:</p>

<p>Tab 1:</p>

<pre><code>void setup() {
  size(500, 500);

  String[] args = {"TwoFrameTest"};
  SecondApplet sa = new SecondApplet();
  PApplet.runSketch(args, sa);

  ThirdApplet ta = new ThirdApplet();
  PApplet.runSketch(args, ta);
}

void draw() {
  background(0);
  ellipse(50, 50, 10, 10);
}    
</code></pre>

<p>Tab 2:</p>

<pre><code>public class SecondApplet extends PApplet {

  public void settings() {
    size(300, 300);
  }
  public void draw() {
    background(255);
    fill(0);
    ellipse(100, 50, 10, 10);
  }
}

public class ThirdApplet extends PApplet {

  public void settings() {
    size(400, 400);
  }
  public void draw() {
    background(255);
    fill(0);
    ellipse(100, 50, 10, 10);
  }
}
</code></pre>

<p>There is an issue however; when I run the code, the original window is displayed as its default size, even if a size method with different values is called. Strangely this even seems to happen if the other windows aren't called; the code in the second tab just has to be in the sketch folder and doesn't have to be referenced in any way. Does anybody have any idea what is happening and how I might fix it?</p>
]]></description>
   </item>
   <item>
      <title>PGraphics saves messed up images after creating a new PGraphics object in a different size</title>
      <link>https://forum.processing.org/two/discussion/15878/pgraphics-saves-messed-up-images-after-creating-a-new-pgraphics-object-in-a-different-size</link>
      <pubDate>Wed, 06 Apr 2016 10:24:29 +0000</pubDate>
      <dc:creator>bckmnn</dc:creator>
      <guid isPermaLink="false">15878@/two/discussions</guid>
      <description><![CDATA[<p>Hi there,
below i attached a small program that generates PNGs. If i change the size of the new PGraphics objects the saved PNGs start to look messed up.</p>

<p>To reproduce the issue run the code from the bottom. Conversion will start an you will get pngs like this:</p>

<p><img src="https://forum.processing.org/two/uploads/imageupload/231/JU8OTVD7LAY6.png" alt="Bildschirmfoto 2016-04-06 um 12.12.56" title="Bildschirmfoto 2016-04-06 um 12.12.56" /></p>

<p>if you do a mouse click on the canvas, the size of the pngs that should be generated is changed and a few new items are added. The results look like in the screenshot below, some of the images are blank, some are distorted and they still have the old size.</p>

<p><img src="https://forum.processing.org/two/uploads/imageupload/010/KCHMBM2X2J5U.png" alt="Bildschirmfoto 2016-04-06 um 12.13.11" title="Bildschirmfoto 2016-04-06 um 12.13.11" /></p>

<p>Is there a way to avoid this behavior? is this a bug in processing? am i missing something?</p>

<p>Any input appreciated!</p>

<pre><code>PGraphics png;
ArrayList&lt;String&gt; cue = new ArrayList&lt;String&gt;();
boolean conversion = false;
int pngSize = 64;

void setup() {
  size(400, 400);
  println("creating 64px letters");
  cue.add("A");
  cue.add("B");
  cue.add("C");
  conversion = true;
}

public void mousePressed(){
  println("creating 128px letters");
  pngSize = 128;
  cue.add("A");
  cue.add("B");
  cue.add("C");
  cue.add("D");
  cue.add("E");
  cue.add("F");
  conversion = true;
}

void saveNextInCue(){
  String letter = cue.remove(0);
  println("pngSize value is "+pngSize);
  png = createGraphics( pngSize, pngSize);
  png.beginDraw();
  png.textSize(30);
  png.text(letter,30,30);
  png.fill(random(255),0,255);
  png.rect(0,0,10,10);
  png.endDraw();
  png.save(sketchPath(letter+".png"));
}

void draw() {
  int bg = color(255,0,0);
  if (!conversion){
    bg = color(0,255,0);
  }
  background(bg);
  if( conversion == true){
    saveNextInCue();
    if(cue.size() == 0){
      conversion = false;
    }
  }
}
</code></pre>
]]></description>
   </item>
   <item>
      <title>Strange problem with image/graphic not being found/created on linux</title>
      <link>https://forum.processing.org/two/discussion/15431/strange-problem-with-image-graphic-not-being-found-created-on-linux</link>
      <pubDate>Fri, 11 Mar 2016 09:14:10 +0000</pubDate>
      <dc:creator>not55</dc:creator>
      <guid isPermaLink="false">15431@/two/discussions</guid>
      <description><![CDATA[<p>Can anyone help with this please?</p>

<p>In main project file:</p>

<pre><code>Map map;

void setup(){
...
map = new Map();
...
}
</code></pre>

<p>In Map's constructor, where (members) pgMap is a PGraphic and imgMap is a PImage, I create a graphic draw some stuff on it, save it out then reload it as an image:</p>

<pre><code>...
//save to file
pgMap.save("map.png");

//re-load as an image
imgMap = loadImage("map.png");
...
}
</code></pre>

<p>Another of Map's methods:</p>

<pre><code>void renderWorld() {
    image(imgMap, 0, 0);
}
</code></pre>

<p>If I call map.renderWorld() from draw() I get a null pointer/"map.png" not found error <strong>and</strong> sure enough map.png hasn't been created. If I comment out the single line in renderWorld() the map gets created normally and the program functions as expected!</p>

<p>I suspected a path issue but I've tried no path (as above), using a relative path to ./data and using an explicit path to /data but none of those work. A separate image used by the program stored in ./data loads from setup() without any path being specified:</p>

<p><code>loadImage("compass.jpeg");</code></p>

<p>I've also tried loading Map's image from setup(), rather than within the constructor like so:</p>

<p><code>map.imgMap = loadImage("map.png");</code></p>

<p>but that doesn't work either (also tried specifiying paths at that point).</p>

<p>This is on Linux Mint 32 bit with Processing 3.0.2, any help appreciated!</p>
]]></description>
   </item>
   <item>
      <title>Reading textfiles/images from directory</title>
      <link>https://forum.processing.org/two/discussion/14985/reading-textfiles-images-from-directory</link>
      <pubDate>Thu, 18 Feb 2016 06:39:33 +0000</pubDate>
      <dc:creator>atran</dc:creator>
      <guid isPermaLink="false">14985@/two/discussions</guid>
      <description><![CDATA[<p>Hi I was just wondering how I would approach loading text files and images from different directories in processing? I tried using loadImage() and loadTable(), which only works if the files are in the sketch folder's root directory or a data folder inside the sketch folder. It doesn't seem to work if I have different folders inside sketch folder. They say the files do not exist.</p>

<p>Thank you</p>
]]></description>
   </item>
   <item>
      <title>How to get id of closest vertex?</title>
      <link>https://forum.processing.org/two/discussion/14845/how-to-get-id-of-closest-vertex</link>
      <pubDate>Wed, 10 Feb 2016 16:09:06 +0000</pubDate>
      <dc:creator>omaribraz</dc:creator>
      <guid isPermaLink="false">14845@/two/discussions</guid>
      <description><![CDATA[<p>I am trying to get a ball moving on a mesh and have it react according to the slope of the mesh.
I have calculated all the slopes of the vertexes and saved the values in an arraylist called slope.
I can find the closest vertex to my moving ball, but I am not able to figure out how to access the id number of the vertex to get the slope out of my arraylist. Any help will be appreciated.</p>

<p>Thanks</p>

<p>the code i used</p>

<pre><code>import processing.opengl.*;
import toxi.geom.*;
import java.util.Iterator;
import java.util.*;
import peasy.*;
import wblut.math.*;
import wblut.processing.*;
import wblut.core.*;
import wblut.hemesh.*;
import wblut.geom.*;

ArrayList Slope = new ArrayList();
HE_Mesh mesh;
WB_KDTree vertexTree;
WB_Render render;
WB_Coord mnorm;
PeasyCam cam;

int speedx =1;
int speedy =1;


void setup() {

  size(700, 700, P3D);

  frameRate(30);
  smooth();

  cam = new PeasyCam(this, 1200);

  mesh = new HEC_FromOBJFile(sketchPath("meshtoimport2.obj")).create();
  vertexTree = mesh.getVertexTree();

  int novert = mesh.getNumberOfVertices();

  for (int i=0; i&lt; novert; i++) {
    mnorm = mesh.getVertexNormal(i);

    float xnPos = (Float)  mnorm.xf();
    float ynPos = (Float)  mnorm.yf();
    float znPos = (Float)  mnorm.zf();

    Vec3D mnormv = new Vec3D(xnPos, ynPos, znPos);
    Vec3D mvert = new Vec3D(0, 0, 1);

    float slope = mnormv.angleBetween(mvert);
    slope = degrees(slope);

    Slope.add(slope);
  }

  render = new WB_Render( this );
}

void draw() {
  background(0);
  lights();
  noStroke();
  render.drawFaces(mesh);

  stroke(255, 0, 255);
  strokeWeight(.5);
  render.drawFaceNormals(2, mesh);

  speedx = speedx+1;
  speedy = speedy+1;
  WB_Point tpos = new WB_Point(speedx, speedy, 0);
  WB_Coord ptonmesh = mesh.getClosestPoint(tpos, vertexTree);
  HE_Vertex meshPt = mesh.getClosestVertex(tpos, vertexTree);

  float xPos = (Float) ptonmesh.xf();
  float yPos = (Float)  ptonmesh.yf();
  float zPos = (Float)  ptonmesh.zf();

  fill(60, 60, 200, 200);
  translate(xPos, yPos, zPos);
  sphere(15);
}
</code></pre>
]]></description>
   </item>
   <item>
      <title>correct path for windows using launch</title>
      <link>https://forum.processing.org/two/discussion/14163/correct-path-for-windows-using-launch</link>
      <pubDate>Sun, 27 Dec 2015 18:19:32 +0000</pubDate>
      <dc:creator>emo</dc:creator>
      <guid isPermaLink="false">14163@/two/discussions</guid>
      <description><![CDATA[<p>this code don't work on windows</p>

<p>launch (sketchPath("programa/test.exe"));</p>

<p>This code works on mac</p>

<p>launch (sketchPath("programa/test.app"));</p>

<p>myapp.exe</p>

<p>programa (directory)</p>

<p>--&gt;test.exe</p>

<p>What is the correct path n windows for launch a external app from my aplication?</p>
]]></description>
   </item>
   <item>
      <title>how to Add video or image, help me!</title>
      <link>https://forum.processing.org/two/discussion/13991/how-to-add-video-or-image-help-me</link>
      <pubDate>Tue, 15 Dec 2015 16:11:55 +0000</pubDate>
      <dc:creator>danglove_113</dc:creator>
      <guid isPermaLink="false">13991@/two/discussions</guid>
      <description><![CDATA[<p>void setup() {
    size(displayWidth, displayHeight);
    theMov = new Movie(this, "video1.mov");
    theMov2 = new Movie(this, "video2.mov");
    theMov3 = new Movie(this, "video3.mov");
    theMov4 = new Movie(this, "vid1o4.mov");
}</p>

<p>i don't know how to add video or image like in code?
error: Could not load movie file video1.mov</p>
]]></description>
   </item>
   <item>
      <title>How to load a .jnilib file into a Processing 3.0.1 sketch</title>
      <link>https://forum.processing.org/two/discussion/13844/how-to-load-a-jnilib-file-into-a-processing-3-0-1-sketch</link>
      <pubDate>Tue, 08 Dec 2015 22:03:50 +0000</pubDate>
      <dc:creator>retProf</dc:creator>
      <guid isPermaLink="false">13844@/two/discussions</guid>
      <description><![CDATA[<p>Trying to develop a sketch using Proc 3.0.1 in Java mode (OSX 10.9.3 and Java 8-65) that needs to use a .jnilib file that contains code that interfaces with an instrument (digital spectrometer) that is connected via the USB.</p>

<p>Followed the recommendation to load the native library:
<a href="https://www.chilkatsoft.com/java-loadLibrary-MacOSX.asp" target="_blank" rel="nofollow">https://www.chilkatsoft.com/java-loadLibrary-MacOSX.asp</a></p>

<p>and have been unsuccessful. The following provides the sketch and the errors from a debug execution,</p>

<p><img src="https://forum.processing.org/two/uploads/imageupload/676/R5C7MAO88JSS.png" alt="for_forum" title="for_forum" /></p>

<p>Note: the .jar files in the "code" folder support the wrapper class in the sketch and are used to see if an instrument is attached... can't get to that point until I can load the libNatUSB.jnilib</p>

<p>In case you can't read the error message on the screen shot : 
"Native code library failed to load- try again?.
java.lang.UnsatisfiedLinkError: /Users/westgallery/Desktop/Processing3testing/OmniDriverTests/code/libNatUSB.jnilib: dlopen(/Users/westgallery/Desktop/Processing3testing/OmniDriverTests/code/libNatUSB.jnilib, 1): no suitable image found.  Did find:
    /Users/westgallery/Desktop/Processing3testing/OmniDriverTests/code/libNatUSB.jnilib: no matching architecture in universal wrapper
Could not run the sketch (Target VM failed to initialize).
For more information, read revisions.txt and Help → Troubleshooting."</p>

<p>Read the revisions and the Help... still stuck!</p>

<p>Any suggestions would be greatly appreciated.</p>
]]></description>
   </item>
   <item>
      <title>sketchpath in the settings()</title>
      <link>https://forum.processing.org/two/discussion/12572/sketchpath-in-the-settings</link>
      <pubDate>Fri, 18 Sep 2015 15:34:15 +0000</pubDate>
      <dc:creator>Stanlepunk</dc:creator>
      <guid isPermaLink="false">12572@/two/discussions</guid>
      <description><![CDATA[<p>I try to catch the sketchpath in the settings() but i cannot use the sketchPath() method. I try few stuff but it's too much hard for me. bellow my try !</p>

<pre><code>void settings() {
  String folder = null ;
  String jarPath = PApplet.class.getProtectionDomain().getCodeSource().getLocation().getPath();
  if (jarPath.contains("Contents/Java/")) {
    String appPath = jarPath.substring(0, jarPath.indexOf(".app") + 4);
    File containingFolder = new File(appPath).getParentFile();
    folder = containingFolder.getAbsolutePath();
  }
  println(jarPath) ;
  println(folder) ;

  File currentDirectory = new File(new File(".").getAbsolutePath());
  println(currentDirectory) ;
  println(currentDirectory.getAbsolutePath()) ;

}

void setup() {
  println(sketchPath()) ;
}
</code></pre>
]]></description>
   </item>
   <item>
      <title>"The function saveTable(Table, String) does not exist"</title>
      <link>https://forum.processing.org/two/discussion/4218/the-function-savetable-table-string-does-not-exist</link>
      <pubDate>Tue, 08 Apr 2014 06:46:47 +0000</pubDate>
      <dc:creator>KesterR</dc:creator>
      <guid isPermaLink="false">4218@/two/discussions</guid>
      <description><![CDATA[<p>line 206 in <a href="http://piratepad.net/2qUISlwOK7" target="_blank" rel="nofollow">http://piratepad.net/2qUISlwOK7</a></p>

<p>error "The function saveTable(Table, String) does not exist"</p>

<p>saveTable() definitely exists in Processing Reference guide, and I think I've used the arguments right, so why am I getting this error?</p>

<p>Thanks!</p>
]]></description>
   </item>
   </channel>
</rss>