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...
Show off your group to the world. Share a photo of your group with us.

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 9613 - 9642 of 9972   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9613
I have a need to convert the 64 bit double to 32 bit float for output on a disk. In that FM doesn't have true float, does anyone have a suggestion on how to...
Ron C
rechmbrs
Offline Send Email
Apr 2, 2009
9:02 pm
9614
I expect you'll have to play some game about writing it into a malloced block so you can use things as integers versus floats and doubles, but here is how...
Eric von Bayer
eric_bayer
Offline Send Email
Apr 3, 2009
4:48 pm
9615
I finally got the BUZZ (Symmetrical Nearest Neighbor) filter. The code is below. If anyone sees where it could be speeded up, I'd like to know. The C code I...
Jim Clatfelter
jimclatfelter
Offline Send Email
Apr 8, 2009
9:19 pm
9616
Hi Jim, I use standard this setting: int Zn; //IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII IIIIIIIIIIIIIIII setChannel Zn //...
Paul Simoens
paulsimoens
Offline Send Email
Apr 8, 2009
9:28 pm
9617
*Hi Paul. I'm trying to understand how the Z loop works. If I write (z=0; z<3; z++) does it loop through 0, 1, and 2 or does it also loop a fourth time for the...
Jim Clatfelter
jimclatfelter
Offline Send Email
Apr 8, 2009
9:46 pm
9618
Hi Jim, for ( z =0; z <=Zn; z++) "for" creates a loop, z =0; =start value, z <=Zn; =end condition, z++ = step (++ is C-code for adding 1 each time a complete...
Paul Simoens
paulsimoens
Offline Send Email
Apr 8, 2009
10:05 pm
9619
Jim, *for(z=0; z<3; z++) { *... do code ...* }* is equivalent to the following code (to make it clearer): *z = 0*; while( *z < 3* ) { *... do code ...* *z++*; ...
Eric von Bayer
eric_bayer
Offline Send Email
Apr 8, 2009
11:45 pm
9620
Thanks for the explanation, Eric. Now I understand it. I thought maybe it would increment if z<3. Now I see that it executes only if z<3. I'm glad I got it...
Jim Clatfelter
jimclatfelter
Offline Send Email
Apr 9, 2009
12:09 am
9621
You can now download Buzz Pro 3 for free. http://asnailpace.com/blog/buzz-pro-v30/ <http://asnailpace.com/blog/buzz-pro-v30/> I got this message today. I'm...
Jim Clatfelter
jimclatfelter
Offline Send Email
Apr 9, 2009
2:39 am
9622
hi Jim, thanks, the blog / the plugin seems interesting. I hope however this is something legal. ... did you tried to apply the effect multiple time ? I've...
extrabigmehdi
Offline Send Email
Apr 9, 2009
7:11 am
9623
Hi Medhi, I think the buZZ plugin must be legal. The old buZZ pligin required a registration key to operate. This one doesn't. I tried applying my code...
Jim Clatfelter
jimclatfelter
Offline Send Email
Apr 9, 2009
4:05 pm
9624
Hi Medhi, You were right about adding iterations. It removes much more detail with several iterations. The problem is that a crosshatch pattern shows up. The...
Jim Clatfelter
jimclatfelter
Offline Send Email
Apr 9, 2009
9:22 pm
9625
I'd like to see the following additions made to the dialog building: getCtlDiv ( ic ) to go with undocumented setCtlDiv. dctl ( ic ) which is double of ctl(...
Ronald E. Chambers
rechmbrs
Offline Send Email
Apr 13, 2009
5:03 am
9626
Add to these: setCtlMul and getCtlMul so that one states the actual range and val parameters. The dctl ( ic ) would then be CTn = round ( (double)ctl ( ic ) /...
Ron C
rechmbrs
Offline Send Email
Apr 13, 2009
1:06 pm
9627
getCtlDiv() is already implemented as getCtlDivisor(). It must have slipped through the release notes somehow. dctl() seems utterly useless to me as a...
Martijn van der Lee
mwvdlee
Offline Send Email
Apr 13, 2009
4:26 pm
9628
Martijn, Thanks. Good to know about getCtlDivisor. dctl() would return a double and when true float appears, there would be an fctl(). ctl(n): MODIFY (my...
Ron C
rechmbrs
Offline Send Email
Apr 13, 2009
5:58 pm
9629
Martijn, Part 2 of the previous e-mail. ctl(n): MODIFY works very well. I would like to be able to use char arrays like str0-9 etc. to Text and also ToolTip...
Ron C
rechmbrs
Offline Send Email
Apr 13, 2009
6:20 pm
9630
Martijn/All, Part 3 of previous e-mails. First off, forget the set/getCtlMul. I finally understand the divisor usage and will try to document on the Wiki. ...
Ron C
rechmbrs
Offline Send Email
Apr 14, 2009
6:26 pm
9631
I've been looking the array allocation and use routines but can't see how I might pass that array to a dll. Is there a pointer somewhere that is available to...
Ron C
rechmbrs
Offline Send Email
Apr 14, 2009
6:55 pm
9632
All, Once again, I have to comment. Requests such as Ron's are sent in good faith, but are what I would characterize as 'math extensions of the FM language.' ...
Bill MacBeth
macbethbill
Offline Send Email
Apr 14, 2009
11:29 pm
9633
... Try "getArrayAddress(ia)". It's only stubbed in wiki, but I think it is exactly what you seek. Cheers, -Alex...
Alex Hunter
afhsys
Offline Send Email
Apr 15, 2009
7:38 am
9634
Alex, Thanks. Will try it and then document it. RON C Ron Chambers 1713 Twila Ln. Conroe, TX 77301-1175 Home-936.539.1630 Cell-713.806.6304 ... From:...
Ron C
rechmbrs
Offline Send Email
Apr 15, 2009
6:36 pm
9635
Is anyone else missing emails from the FMML? I'm not receiving any of the emails from Alex or Martijn, and I've felt for a while that I'm only seeing half the...
Kohan Ikin
syneryder
Offline Send Email
Apr 15, 2009
7:39 pm
9636
Hi Kohan, Haven't followed FMML much lately but it is very well possible; Yahoo! Groups occasionally has it's moments. Haven't noticed it recently but in the...
Roberto
roberto_muscia
Offline Send Email
Apr 16, 2009
4:06 pm
9637
Hi all If any of you can solve this problem, I would be gratefull. Currently we can not make truely scriptable plug-ins using doubles or floats. 1) Make the...
Jan Esmann
jan_esmann
Offline Send Email
Apr 20, 2009
12:29 pm
9638
Is there a way to reduce the scroller in the scrollbar without coding the whole scrollbar myself? Is there a way to resize the preview window? We can't find a...
Ron C
rechmbrs
Offline Send Email
Apr 22, 2009
6:55 pm
9639
We found setCtlThumbSize( CTL , ???? ); Setting ???? to one (1) made the scroller narrow but we don't know what the parameter spec is. DBU's?? RON C Is...
Ron C
rechmbrs
Offline Send Email
Apr 22, 2009
7:45 pm
9640
Ron, Here's the only info that I have on that.. ... Tuesday, February 12, 2008 12:00 PM Hi, Thanks for pointing me to it, Timo. FM does not set the pagewith...
Bill MacBeth
macbethbill
Offline Send Email
Apr 22, 2009
8:08 pm
9641
Bill, Thanks. Can you add the page in the Wiki for this? Then we can add what we know about it. Can anyone add a page in the Wiki? Couldn't fine a way but I...
Ron C
rechmbrs
Offline Send Email
Apr 22, 2009
8:14 pm
9642
... Yep, anyone can add pages to the Wiki. Details here: http://www.filtermeister.com/wiki/index.php?page=How+to+use+this+Wiki - Kohan ...
Kohan Ikin
syneryder
Offline Send Email
Apr 22, 2009
9:30 pm
Messages 9613 - 9642 of 9972   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