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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 9055 - 9085 of 9969   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9055
Hi, I do not advice anyone to use malloc in FM at all. Better use allocArray and then use getArrayAddress in case you want to use memset, memcpy, memmove and ...
Harald Heim
haraldheim2001
Offline Send Email
Jan 1, 2009
7:49 pm
9056
Hi, There are also some RapidShare search engines which let you look for your product in order to get the URLs for getting them removed. Unfortunately it is...
Harald Heim
haraldheim2001
Offline Send Email
Jan 1, 2009
7:51 pm
9057
Hi Harry, ... Does using allocArray, allows to allocate much more memory than malloc ? Deallocation of memory, is not a big concern for me, especially since FM...
extrabigmehdi
Offline Send Email
Jan 2, 2009
3:42 am
9058
Does using allocArray, allows to allocate much more memory than malloc ? Yes, because allocArray makes the host free up memory if there is not enough ...
Harald Heim
haraldheim2001
Offline Send Email
Jan 2, 2009
3:42 pm
9059
hi Harry, ... yes, that would be more convenient. Unless you find a way to override the behavior of the default malloc. I don't know if we'll need a...
extrabigmehdi
Offline Send Email
Jan 3, 2009
1:12 am
9060
Hi all, I 'm working on a tool whereby I want to zoom into the preview, while staying on track with the real pixels of the image. The double measurements of...
Paul Simoens
paulsimoens
Offline Send Email
Jan 3, 2009
7:54 pm
9061
Hi Paul, ... From what I've understood, if you increase default font size of the system, the size of all controls will be increased as well, and there won't be...
extrabigmehdi
Offline Send Email
Jan 3, 2009
10:35 pm
9062
I'd suggest having a free_host(), if possible, because in the future there may be user functions that want to malloc and free. I think this will limit the...
Eric von Bayer
eric_bayer
Offline Send Email
Jan 5, 2009
5:54 pm
9064
Hi, we have come across a weird slider behavior when using triggerThread. To isolate the problem I have written a minimal code (attached) which shows the bug....
martinvicanek
Offline Send Email
Jan 6, 2009
7:24 pm
9065
Hi Martin, There seems to be a problem with the message pump in waitForThread(). Not sure what it exactly is at the moment, but will find out. Harry ... From:...
Harald Heim
haraldheim2001
Offline Send Email
Jan 7, 2009
12:43 am
9066
Thanks Harry. In the meantime I found out that the problem disappears if you change the first parameter in waitForThread() from 0 to 1. Makes sense to me given...
martinvicanek
Offline Send Email
Jan 7, 2009
7:18 am
9067
Hi, Your solution still causes the problem here. Please check it again. At the moment you always need to use 0 for the first parameter of waitForThread. Using...
Harald Heim
haraldheim2001
Offline Send Email
Jan 7, 2009
1:30 pm
9068
Ooops, you are right. Setting the first parameter to 1 prevents the preview from being updated, although it does fix the slider behavior but that of course is...
martinvicanek
Offline Send Email
Jan 7, 2009
6:25 pm
9069
Hi, I am using multi-threading with my ContrastMaster plugin and did not come across this problem. But maybe because I am not using the OnCtl handler for the...
Harald Heim
haraldheim2001
Offline Send Email
Jan 7, 2009
10:28 pm
9070
Hi, Filtermeister is really something special I wonder if I can pre-chacked checkedbox as it's default stat ? so the first time users invoke the filter the...
tony lee
affter333
Offline Send Email
Jan 7, 2009
11:36 pm
9071
Hi Mehdi, Host memory allocation requires two values to be returned and stored: the memory pointer and the buffer ID. The buffer ID is needed for freeing the ...
Harald Heim
haraldheim2001
Offline Send Email
Jan 8, 2009
12:02 am
9072
See the code below: %ffp ctl(0):checkbox,"Checkbox 1",val=1 ... From: FMML@yahoogroups.com [mailto:FMML@yahoogroups.com]On Behalf Of tony lee Sent: Mittwoch,...
Harald Heim
haraldheim2001
Offline Send Email
Jan 8, 2009
12:06 am
9073
Has anyone tried to enlarge an image using FilterMeister? Can I re-set X and x_start and x_end and have it work? I will test if someone has not but didn't...
Ron C
rechmbrs
Offline Send Email
Jan 8, 2009
4:15 am
9074
Hi All, I'm wondering if anyone has been able to use FM Patcher to make MuRa Clouds Vista compatable? I can get FM Patcher to work on other plugins, but when...
Steve
sfritz2994
Offline Send Email
Jan 8, 2009
5:19 am
9075
Hi Harry, ... memory and ... Since, the user itself never need to handle directly bufferID, maybe you can find a solution to completely hide it, and let FM ...
extrabigmehdi
Offline Send Email
Jan 8, 2009
5:20 am
9076
... Haven't tested it, but I'm 99% certain that's not possible. I don't think it's just a FilterMeister restriction - pretty sure you need the new Adobe-only...
Kohan Ikin
syneryder
Offline Send Email
Jan 8, 2009
6:39 am
9077
Hi, Sounds like the plugin file is read/write protected. Harry ... From: FMML@yahoogroups.com [mailto:FMML@yahoogroups.com]On Behalf Of Steve Sent: Donnerstag,...
Harald Heim
haraldheim2001
Offline Send Email
Jan 8, 2009
11:34 am
9078
Hi, Filter plugins cannot resize the image. Only automation plugins can do that, but they only work in Photoshop and Elements and are not supported by ...
Harald Heim
haraldheim2001
Offline Send Email
Jan 8, 2009
11:34 am
9079
Hi Mehdi, If you want to write the code in C to handle the IDs internally, I can send you the source code of the three functions. Photoshop does memory...
Harald Heim
haraldheim2001
Offline Send Email
Jan 8, 2009
11:34 am
9080
... Oh, silly me - I was thinking that resizing plug-ins like Genuine Fractals etc were filter plugins, but of course it makes no sense for them to be (it...
Kohan Ikin
syneryder
Offline Send Email
Jan 8, 2009
12:24 pm
9081
hi Harry, ... can send ... well, I just found a pretty trivial solution: With allocHost, just allocate 8 more bytes to store the bufferID in memory (well,...
extrabigmehdi
Offline Send Email
Jan 8, 2009
3:36 pm
9082
Hi, I just got an email from someone who told me that combo boxes are not visible in Corel Photo-Paint X3 under Vista x64, but you can click on the empty space...
Harald Heim
haraldheim2001
Offline Send Email
Jan 8, 2009
9:39 pm
9083
That was it! I looked at the properties for mmcloud.8bf. I unchecked "read only". Then I was able to run fmpatcher on mmcloud.8bf. AND, I was able to make...
Steve
sfritz2994
Offline Send Email
Jan 9, 2009
3:55 am
9084
Is it possible to get the handle of the main plug-in window? I've just started experimenting a little with DLLs, and I can see a couple of cases where the...
Kohan Ikin
syneryder
Offline Send Email
Jan 9, 2009
9:04 pm
9085
Hi Everybody, I have been working on scripting support recently and now implemented a rudimentary version of it. At the moment scripting works automatically by...
Harald Heim
haraldheim2001
Offline Send Email
Jan 9, 2009
9:42 pm
Messages 9055 - 9085 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