Search found 4 matches
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1275: count(): Parameter must be an array or an object that implements Countable- 13 May 2014 11:17
- Forum: Visual Results
- Topic: Enable Node selection in Preview Applet
- Replies: 22
- Views: 23051
Re: Enable Node selection in Preview Applet
Hi, Sorry for late response. You are only seeing preProcess called message and not clicked message because Netbeans Platform applications ignore System.out for some reason. So you should use System.err for debugging, or other kinds of output like a dialog. I attach an updated, tested, template.zip ...
- 13 May 2014 11:15
- Forum: Visual Results
- Topic: Enable Node selection in Preview Applet
- Replies: 22
- Views: 23051
Re: Enable Node selection in Preview Applet
Hi, I have used the listener and render in the template-updated.zip above,and then I add the class RenderTemplate to the preview model like this: ManagedRenderer [] mr = previewModel.getManagedRenderers(); ManagedRenderer [] mr2 = Arrays.copyOf(mr, mr.length+1); mr2[mr.length] = new ManagedRenderer(...
- 14 Jan 2014 11:07
- Forum:
- Topic: [SOLVED] Using plugin-in : Seadragon exporter
- Replies: 7
- Views: 2491
Re: Using plugin-in : Seadragon exporter
For using the plugin from the Toolkit, you actually only need org-gephi-plugins-seadragon.jar , the others are related to UI. You can look how the UI is calling the right instructions and use that to do the export programmatically. I would do SeadragonExporter exporter = new SeadragonExporter(); ex...
- 14 Jan 2014 10:51
- Forum:
- Topic: jython: seadragon export, can't write xml
- Replies: 2
- Views: 668
Re: jython: seadragon export, can't write xml
I also met the same question when I use toolkit in java Mycode is like this: SeadragonExporter seadragonExporter = new SeadragonExporter(); seadragonExporter.setPath(new File("E:/lab/test")); seadragonExporter.setWorkspace(workspace); seadragonExporter.setWidth(4000); seadragonExporter.setHeight(400...