Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to be able to change the attribute of an SVG document while the program is running by pressing a button (eg turn a black square into blue by changing the fill color). Here is my code:

  this.addSVGDocumentLoaderListener(new SVGDocumentLoaderAdapter() {
    @Override
    public void documentLoadingCompleted(SVGDocumentLoaderEvent e) {
      setupSVGDocument();

    }});

}
private SVGDocument doc;
private void setupSVGDocument(){
    doc = this.getSVGDocument();
}

Then I want to be able to use the doc to get the element by id and change the attribute of an element when pressing a button like this:

 private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
         el = doc.getElementById("statusColor");
        el.setAttributeNS(null, "stop-color", "green");

    }

The graphic won't update! Please help!

share|improve this question
Some guesses: Did you use .setDocumentState(JSVGCanvas.ALWAYS_DYNAMIC)? Otherwise, the document might be treated as static and isn't updateable. Is "stop-color" actually the attribute you want to change? – Thomas W Jan 14 at 7:25
Yes to both questions. If I bring the lines: el = doc.getElementById("statusColor"); el.setAttributeNS(null, "stop-color", "green"); inside the document loaderlistener declaration it works but outside it doesn't. This is killing my time so much. So frustrated. :( – Joe Michael Jan 14 at 7:31

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.