I have a set of 2 radiobuttons that both work fine on first invocation of the filter, but often fails at later invocations. Later invocations meaning:...
Hi Richard, I guess you mean drawing text into the output buffer so that it appears on the preview and in the final image. That's not possible yet. I have some...
Harald Heim
1595-958@...
Mar 6, 2004 9:48 am
2331
You could write you're own, though it'd be a mammoth undertaking without procedures. You could malloc some space and poke into that the data for each character...
Any thoughts on multiple invocations of filters? Some data are saved between invocations and can cause problems after the first invocation it seems... ... ...
In general, not just in FMML, radiobuttons get funky when you set the options badly -- like turning all the options on. When you use FMML, settings are left as...
Hi, As I have mentioned in a previous post, FM can cause some problems at the second invocation with certain graphics applications. One problem is that the...
Harald Heim
1595-958@...
Mar 11, 2004 3:03 pm
2335
I don't remember if this has been up before, but there's a bug in the preview for 16 bit images when working on layers above background. The preview displays...
... A few times :] The bug is apparently fixed in the forthcoming FM release. - Kohan _____________________________________________________________________ ...
Hi, The problem is that 16bit layers were not supported by previous versions of Photoshop, so FilterMeister didn't count with such a possibility. I have fixed...
Harald Heim
1595-958@...
Mar 14, 2004 12:35 pm
2338
I did not understand Margaret's remarks about the problem with the radiobuttons I mentioned. I would think it's impossible to set the wrong options (a user...
Hi, ... You can put that code in: OnCtl(n):{ if (n == CTL_OK && e == FME_CLICKED) { } else if (n == CTL_CANCEL && e == FME_CLICKED) { } } or put it in: ...
Harald Heim
1595-958@...
Mar 14, 2004 2:37 pm
2340
... This reinitializes settings *before* they are applied to the image (after pressing OK). So that won't work. ... This doesn't have any effect, maybe cause...
Can it be that your are looking for an option that is executed before the preview is updated the first time? You mentioned something about resetting radio...
Harald Heim
1595-958@...
Mar 15, 2004 1:38 pm
2342
OK, let me recapitulate... There is a real problem with reinvoking a filter. Apart from variables that are or are not reset (causing big problems!) strange ...
... I've got radio buttons in my filter-in-progress. I do have a problem with the reinvoked filter hanging, but that occurs at a particular place in the code...
Hi, ... Why upon exit? The problem occurs with the sceond invocation, so resetting everything at the end of the first invocation is useless. ... I guess you...
Harald Heim
1595-958@...
Mar 15, 2004 7:00 pm
2345
uh... read that again lol, that was what didn't work in the first (or second) place. Can't get a stable filter for more than one invocation this way. ... ...
Why don't you reset the variables in OnFilterStart???? Achim ... From: pshoplifter To: FMML@yahoogroups.com Sent: Tuesday, March 16, 2004 1:20 AM Subject:...
... The problem with that is that it doesn't only carry out the OnFilterStart part every time the plugin starts, but everytime a preview is generated as well....
... problem with ... in the ... Did you solve it? It's only my second set of radiobuttons that has the problem under certain circumstances, the first set never...
Hi, You have to set k0 to zero again when the user presses OK or Cancel to solve the problem. It's that simple! Harry...
Harald Heim
1595-958@...
Mar 19, 2004 7:28 pm
2350
... Just getting to that bit. I've finally finished my image processing function which I'm very pleased with, so it's a case of tidying up the code to get it ...
I'm gonna do all my resetting there, but how do I do this in the OnCtl (n) part? ctl[CTL_OK] works a bit different from ctl(10)... Have the feeling I am almost...
... ctl[CTL_OK] is a control definition defining the OK button, and ctl(10) is an alias for getCtlVal(10). So you don't really want to use those. Try this...
Thanks that was really helpful :)) Now I just have one problem left: the mutually exclusive radiobuttons. What happens is this: On first invocation it works...
... Well, pshoplifter, I've encountered no difficulties. On subsequent invocations I found my filter was using previous settings which I had stored in an array...
Hi, I've been trying to figure out how to do a simple 2 color radial type gradient with FM. The type where one color blends from the inside of the image to...