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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 8957 - 8986 of 9969   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8957
Hi, Here is something peculiar. If you compile this code (or make a plugin), you get a ghost control in the top left corner. However, if you set the preview to...
Jan Esmann
very_secret_dk
Offline Send Email
Dec 1, 2008
2:20 pm
8958
Hi, Please use ctl(CTL_PREVIEW):modify, .... and the problem should not occur. Harry ... From: FMML@yahoogroups.com [mailto:FMML@yahoogroups.com]On Behalf Of...
Harald Heim
haraldheim2001
Offline Send Email
Dec 1, 2008
3:53 pm
8959
Hi Harry, I fell on a bug with the user control in vertical position STANDARD(VERT): while in case 1 everything works fine, in case 2 after cancelling the...
Paul Simoens
paulsimoens
Offline Send Email
Dec 3, 2008
8:18 pm
8960
Hi, Writing this code : .. . . ctl(2): STANDARD, text="Choose x for y=sin(x) :", range=(-512,511), value=0 .. . . ForEveryTile: { for...
Roberto
roberto_muscia
Offline Send Email
Dec 5, 2008
3:29 pm
8961
Sorry, don't bother: I got the same behaviour with other modifications (e.g. pset(x,y,0,0) )when zooming in and the zoomrate got at 20%. When I changed...
Roberto
roberto_muscia
Offline Send Email
Dec 5, 2008
3:43 pm
8962
hi Roberto, almost trivial, but ok here's solution: When you set x to 500, the condition x<x_end in the "for" loop, will never be reached. You'll get an...
extrabigmehdi
Offline Send Email
Dec 5, 2008
5:31 pm
8963
Hi Duncan, Sorry for replying a month later :-)))) but I just ran into your reply when cleaning up my Yahoo spam folder. It was in that folder so I never...
Roberto
roberto_muscia
Offline Send Email
Dec 6, 2008
9:22 am
8964
Hi there, Mehdi, Your reply was in my Yahoo spamfolder; luckily I just checked that folder out for cleaning up :-P Uhh... your solution you described is not a...
Roberto
roberto_muscia
Offline Send Email
Dec 6, 2008
9:46 am
8965
hi Roberto Strange, though, that an infinite loop crashes Photoshop ... shouldn't the plugin just be busy for an infinite while? FM postpone any user...
Guessous Mehdi
extrabigmehdi
Offline Send Email
Dec 6, 2008
5:00 pm
8966
Hi Mehdi, Oh boy, it will take a while until I can follow the code inthere! I wonder if you can still follow it after reading it back months later with all...
Roberto
roberto_muscia
Offline Send Email
Dec 6, 2008
7:11 pm
8967
Hey! Just noticed Mehdi's filter actually can be usefull afterall, when using Photoshop's saturation blending mode afterwards :-P After blending I ran into a...
Roberto
roberto_muscia
Offline Send Email
Dec 6, 2008
7:26 pm
8968
Mehdi, I forgot to mention: I meant really "Photoshop crashed" and not just a "hanging system": back then with using x=500 instead of x==500, after two or...
Roberto
roberto_muscia
Offline Send Email
Dec 6, 2008
7:40 pm
8969
Hi all, I would like to learn to work with float values, for obtaining more fluent results. I a manual I found that the float output of e.g. fsin(a) lies ...
Paul Simoens
paulsimoens
Offline Send Email
Dec 7, 2008
10:43 am
8970
hi Paul Simoens replace : angle=(float) 3.141592 *ctl(0) /180; with: angle=3.141592 *ctl(0) /180.0; Explanation: 180 is integer, while 180.0 is float (or...
extrabigmehdi
Offline Send Email
Dec 7, 2008
1:48 pm
8971
Hi Mehdi, Thanks for this info! There were indeed some "traps" you simply need to know. I adapted the core code to as below. It might eventually be at interest...
Paul Simoens
paulsimoens
Offline Send Email
Dec 7, 2008
4:34 pm
8972
Hi, I'm a bit bothered by the warning you get with last version of FM "Scaled pointer arithmetic is not yet implemented", when you type for instance "str4 +...
extrabigmehdi
Offline Send Email
Dec 9, 2008
5:29 pm
8973
Hi, The following should work: (int)str4 + val and int nbr= (int)createRectRgn(215,30,410,250); Harry ... From: FMML@yahoogroups.com...
Harald Heim
haraldheim2001
Offline Send Email
Dec 9, 2008
6:05 pm
8974
hi Harry , first the instruction: int nbr= (int)createRectRgn(215,30,410,250); doesn't work , it throws an error. And second , have you seen my code example ? ...
extrabigmehdi
Offline Send Email
Dec 9, 2008
6:44 pm
8975
... I could be totally wrong - but looking at the Wiki it would seem that createRectRgn doesn't return an integer at all, but a pointer/handle to a Region...
Kohan Ikin
syneryder
Offline Send Email
Dec 9, 2008
7:14 pm
8976
Hi, I posted the following to FMML list on 28th may 2008 regarding code changes needed for the warnings which were introduced with FM 1.0 Beta 9c earlier that...
Martijn van der Lee
mwvdlee
Offline Send Email
Dec 9, 2008
7:21 pm
8977
hi Van Der Lee, I don't understand why you made the handling of strings more complicated. The expression "scaled arithmetic pointer", just means nothing for...
extrabigmehdi
Offline Send Email
Dec 9, 2008
8:05 pm
8978
hi Kohan, I didn't know that createRectRgn was a standard windows function. The comment explanations about region in wiki was made by me to conciliate with...
extrabigmehdi
Offline Send Email
Dec 9, 2008
8:14 pm
8979
Hi, Does anybody know how to check whether a filter is being re-applied instead of started normally? I have some issues with ownerdraws and re-applying...
Martijn van der Lee
mwvdlee
Offline Send Email
Dec 9, 2008
8:53 pm
8980
hi VanDerLee, I've put an attachment that will display an info box only when re-applying filter. The code can probably be improved , but it works. Rapidshare ,...
Guessous Mehdi
extrabigmehdi
Offline Send Email
Dec 9, 2008
10:44 pm
8981
I think that "scaled" in this context means "pointers that increments in steps of sizeof(type) they point to"; they increment by the "scale" of the type. For...
Martijn van der Lee
mwvdlee
Offline Send Email
Dec 9, 2008
11:12 pm
8982
hi VanDerLee , thanks for the explanation, this makes more sense now. However I like to mix different data size in a buffer... I guess I can keep the...
extrabigmehdi
Offline Send Email
Dec 9, 2008
11:30 pm
8983
Hi Mehdi, From what I understood from an old reply (message #8404) from Alex (see below) FM understands both data types: float as well as double but they are...
Roberto
roberto_muscia
Offline Send Email
Dec 10, 2008
7:06 pm
8984
Hi, - What is the fsin supposed to have for an input and output range? - And is the following line supposed to be able to deal with doubles? setCtlTextv(4,...
Roberto
roberto_muscia
Offline Send Email
Dec 10, 2008
7:36 pm
8985
Oops; forgot to attach ffp file; attached it now. Roberto ... From: Roberto To: FMML@yahoogroups.com Sent: Wednesday, December 10, 2008 8:36 PM Subject: [FMML]...
Roberto
roberto_muscia
Offline Send Email
Dec 10, 2008
7:46 pm
8986
Roberto, float dSlider, dSlider=0.001*ctl(2); is a repeated declaration use float dSlider=0.001*ctl(2); I suggest you quit using floats and use doubles...
Jan Esmann
jan_esmann
Offline Send Email
Dec 10, 2008
8:00 pm
Messages 8957 - 8986 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