Search the web
Sign In
New User? Sign Up
FMML · FilterMeister plug-in discussion group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 9668 - 9697 of 9969   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9668
I got to playing with several things and it was getting kind of difficult to come up with a plan-of-attack without seeing what I was dealing. I was flying...
jlhalmich
Offline Send Email
May 1, 2009
8:58 am
9669
Hey guys; Here is a snippet of code from something I'm working on. I'm trying to specify a hotspot (inner circle), and a falloff (outer circle) that the user...
Richard Rosenman
richard_rose...
Offline Send Email
May 2, 2009
12:26 am
9670
%ffp ctl(0): "rad1", range=(0,100), val=25, track ctl(1): "rad2", range=(0,100), val=75, track ForEveryTile: { int rad=ctl(0); int rad2=ctl(1); int radius,...
Klaus Staab
kstaab1618
Offline Send Email
May 2, 2009
7:45 am
9671
Hi Klaus; This is perfect. Thank you very much for your help! ;) -Richard...
Richard Rosenman
richard_rose...
Offline Send Email
May 2, 2009
5:48 pm
9672
What is this? setZoomEx(n,x); Anyone know? RON C...
Ron C
rechmbrs
Offline Send Email
May 2, 2009
9:23 pm
9673
How does one guarantee that when an FM plugin is reloaded in the same Photoshop flow that it starts as the first time? Now we get the last set of parameters...
Ron C
rechmbrs
Offline Send Email
May 3, 2009
1:32 pm
9674
... My way (I'm sure there are many others) is to define the dialog box and all its controls in the OnCtl() // (e==FME_INIT) block. This way, irrespective of...
fishpixels
Offline Send Email
May 3, 2009
2:04 pm
9675
Just had another thought about free() ... it's possible that OnFilterEnd gets executed multiple times (like the preview sometimes gets redrawn twice). Try if...
fishpixels
Offline Send Email
May 3, 2009
2:12 pm
9676
I wasn't aware that OnFilterEnd was opened more than once. Seems there should be OnFilterStop for cleanup etc. and an OnFilterStart to initialize things etc....
Ron C
rechmbrs
Offline Send Email
May 3, 2009
3:36 pm
9677
I want to write a file with the x and y values along with the r,g,b values for each pixel into a csv file that I can import into a statistics program. The...
jhalinar
Offline Send Email
May 5, 2009
11:08 pm
9678
Hi Joe, The only thing I would suggest would be to explicitly store NULL into the put/get(0) storage so that you don't attempt to close the file after you ...
Duncan Suss
fishpixels
Offline Send Email
May 5, 2009
11:31 pm
9679
Duncan: Thanks for the tip. It doesn't hurt to set the 0 buffer value to 0, but it's not going to make any difference as the program is going to close anyway....
jhalinar
Offline Send Email
May 9, 2009
10:39 pm
9680
Joe, Use the latest version of FilterMeister (9.1) and %fml instead of %ffp at the start of the file. This lets you declare your own global variables, it's...
Duncan Suss
fishpixels
Offline Send Email
May 9, 2009
10:57 pm
9681
... I've only seriously started getting into FM recently. All the reference material that comes with FM refers to ffp code. Where do I get the specifications...
Joe Halinar
jhalinar
Offline Send Email
May 10, 2009
8:21 am
9682
Hi all FM users, As we all know, Harry left the FMDEV team quite unexpectedly. As a result, some of the things he was working on when he left, have been left...
Martijn van der Lee
mwvdlee
Offline Send Email
May 10, 2009
6:27 pm
9683
Hi Martijn, ... Should just return an HWND to the main filter dialog (as far as I'm aware). The purpose was so that dialogs could be launched from a DLL, but...
Kohan Ikin
syneryder
Offline Send Email
May 10, 2009
6:46 pm
9684
Joe, you'll find the download link for FM Beta 9.1 here: http://tech.groups.yahoo.com/group/FMML/message/9259 I believe this is the most recent version. You...
jazzscriveyn
Offline Send Email
May 11, 2009
12:38 pm
9685
Hi Joe, Sorry for the delay, I had trouble remembering how I got the latest download ... here is the message thread with links to both the FM plugin (as a...
fishpixels
Offline Send Email
May 11, 2009
1:03 pm
9686
I forgot Yahoo strips out spaces from the beginning of lines ... and it doesn't seem to support tags ... what I was trying to point out was the extra pair of...
fishpixels
Offline Send Email
May 11, 2009
1:11 pm
9687
Duncan:   ... The problem was with the parentheses - I hate small things like that.  C isn't my favorite programing language to start with, but I'm starting...
Joe Halinar
jhalinar
Offline Send Email
May 12, 2009
6:53 am
9688
Joe, Glad that worked -- I've used so many programming languages, each with slightly different syntax, that over the years I've developed a "defensive ...
Duncan Suss
fishpixels
Offline Send Email
May 12, 2009
1:17 pm
9689
These are good ideas, along with developing a style of ' liberal commenting '. Every { } pair should be commented, and perhaps also within them if the ...
Bill MacBeth
macbethbill
Offline Send Email
May 12, 2009
3:13 pm
9690
And another thing ... ;D It's worth using a code editor like TextPad or SciTEX. They both have a function to "find the matching bracket/parenthesis/brace" and...
Duncan Suss
fishpixels
Offline Send Email
May 12, 2009
4:05 pm
9691
I have a small program that creates a two color gradient on a 256 x 256 pixel image so that I have one color per pixel. I decided to spruce it up a bit and...
jhalinar
Offline Send Email
May 17, 2009
5:11 am
9692
Hey Joe; X and Y refer to the preview window's width and height. Therefore, you will get the width and height of the preview window at whatever zoom level it's...
Richard Rosenman
richard_rose...
Offline Send Email
May 17, 2009
5:35 am
9693
Richard: Thanks for the answer. I guess I just missed getting it right. Still hope someone has any insights into forcing forEveryTile handle to use a single...
Joe Halinar
jhalinar
Offline Send Email
May 17, 2009
4:24 pm
9694
Joe, FM (and ForEveryTile) will process the whole image as one tile unless you set isTileable = true; (e.g. in the OnFilterStart section) From the release...
scriveyn@...
jazzscriveyn
Offline Send Email
May 18, 2009
6:05 am
9695
Hi, I've never released a plug-in with this before and I know this info is out there somewhere, so hoping that somebody knows... How do you make an FM plug-in...
Martijn van der Lee
mwvdlee
Offline Send Email
May 18, 2009
7:45 am
9696
Hi Martijn, from the Wiki-FAQ: [QUOTE] How do I create a filter without a dialog? Take a look at the FilterWithoutDialog.ffp source code in the ...
jazzscriveyn
Offline Send Email
May 18, 2009
8:23 am
9697
Obviously :) Thanks for that. Kind regards, Martijn W. van der Lee VanDerLee Creative Photoshop Plug-Ins Aagje Dekenlaan 34 1403 HH, Bussum Netherlands Fax:...
Martijn van der Lee
mwvdlee
Offline Send Email
May 18, 2009
8:40 am
Messages 9668 - 9697 of 9969   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help