Hi, I thought you may be interested to hear that I updated my Plugin Essentials article, which is an introduction to Photoshop plugins, with two new paragraphy...
Thanks a lot for pointing me in this direction. The function setTimerEvent solved the problem. I really appreciate your help because I struggled over this for...
Hi all, I am a little baffled by a behaviour I encoutered. I am trying to toggle the dialog size with the code shown below. When I set the dialog size to...
OK, I have solved part of this. It's to do with the screen size being measured in pixels and all the positions and sizes in the dialog boy are measured in...
Thanks Harry & Martijn, works exactly as I had hoped. - I might try my hand at some event handling / simulating functions now. Do these work from within the...
triggerEvent() works from every handler even OnCtl itself. Harry ... From: FMML@yahoogroups.com [mailto:FMML@yahoogroups.com]On Behalf Of jazzscriveyn Sent:...
Hello Harald, It may be good idea to add the "shortcut trick" to installation guide. I mean, if you install the plugins outside Photoshop, then add the...
Oops, sorry, I see the shortcut trick is already mentioned. Well, at least you may add Fireworks to the list of applications that support it :-) -- Best...
I'm trying to make a star like a glow with the transparent background any documentation that can guide me do this? I tried color=transparent, but the color...
Thanks! I added it! Harry ... From: FMML@yahoogroups.com [mailto:FMML@yahoogroups.com]On Behalf Of Ilya Razmanov Sent: Mittwoch, 10. Januar 2007 12:46 To:...
Hallo, try channel number 3 with pset. For example: pset Syntax void pset(int x, int y, int z, int v) Arguments x An integer pixel x-coordinate in the output...
I am writing from a New York art studio. We are looking for a programmer who would be able to create a custom plugin or stand alone product with the same...
Hi, Have you looked at my commercial plug-in "Halftone"? It creates perfectly round anti-aliassed circles at 16-bit color depth in any resolution. You'd have...
Hi, I want to create images by complete random. so far I have tried it this way: %ffp R: rnd(0,255) G: rnd(0,255) B: rnd(0,255) but I always get exactly the...
Hi Ralph, To get random values that change each time you run the filter, you first need to "seed" the random generator using the srand() function. However, if...
Just thinking out loud here - has anyone written their own lint tool before, or know how to go about making one? Sometimes I make the same mistakes in my FM...
Perhaps the "Pro" version of FM could include a builtin "lint" option. -Alex ... tool before, or know how to go about making one? ... could easily be caught...
... That would be cool, but would it be possible to add custom lint rules? I'm not that familiar with Lint, so I'm not sure if custom rules are common with...
From: Kohan Ikin ... No, I certainly don't mean to discourage anyone from writing an independent lint for FM. In fact, it's probably desirable to have the...
... Cool. That said, it probably isn't a project I'm likely to take on soon (unless it's just a case of customizing rules on a pre-existing lint tool). But...
Actually, my OldMovie plug-ins calls srand() multiple times for the explicit purpose of allowing reproducable results with a random look. ;) One could make...
I'm very (VERY!) short on time right now, but I do have some experience with creating language parsers of the type that a lint tool would use, though mostly in...
... True, some of these would be simple text-search stuff. I thought of searching for srand() twice, but that wouldn't quite work - you'd still need a warning...
Hi all, when segmenting an image into areas, e.g. by luminance (black when darker as a selected value, white otherwise) the border between the areas is usually...
... Sounds to me like you're looking for anti-aliasing? - Kohan __________________________________________________________________ kohan ikin / namesuppressed ...
Kohan, not sure about that. I know anti-aliasing for the "staircase" effects on straight lines, circles etc. What I had in mind has a much rougher effect to be...
Ahh okay, now I see what you mean. A median effect could get you some of the way to cleaning it up, but I'm not sure it's the exact effect that you're looking...