Hi everyone,
I have a newbie question about ImageJ applet.
I'm working on an ImageJ signed applet and my objective is to pass some links to images (already working) and some parameters that will start automatically the execution of some macros loaded from my StartupMacros.txt.
I created a macro called "Montage From Set" which take the urls passed to the applet, put them into a stack and execute a montage. This macro works if I use the button on ImageJ bar, but if I try to pass this command as parameter in the html page, it doesn't work.
I'm passing some urls to images in this form (inside "applet" tag, obviously):
<param name=url1 value='http://someserver/someimage1.jpg'>
<param name=url2 value='http://someserver/someimage2.jpg'>
[...]
<param name=url9 value='http://someserver/someimage9.jpg'>
And then
<param name=run value='Montage From Set'>
The result is that ImageJ applet opens, it also opens correctly all images, but it doesn't execute the macro. I'm pretty sure that this is a syntaxis error, but I need help to find the right syntaxis or (even better) a manual where this case is well explained.
Hope that someone can give me a hand, thanks in advance,
David