Hi everyone; I'm trying to use an EDIT ctl to display text for copying and pasting to somewhere else. In the case below, CTL(5) is an EDIT ctl which will...
Hi Richard, You need to define the edit control as ctl(0):edit(multiline) Harry ... From: FMML@yahoogroups.com [mailto:FMML@yahoogroups.com]On Behalf Of ...
... I've figured it out - you're using the wrong line endings for the edit control :) \n alone is a Unix line ending, but on Windows line endings are normally...
Thanks guys; That worked beautifully. -Richard ________________ Richard Rosenman Digital Animation Director http://www.pixila.com http://www.dofpro.com ...
Hi Alex?, Harry?, It would be handy if everytime Photoshop and FilterMeister is started, the last opened ffp is automatcally loaded. Currently FM only does...
Hi, Such a feature may annoy some FM users, so I think we rather leave it the way it is. Or would you want Photoshop to automatically open the last used image...
Hi Harry, ... From: Harald Heim To: FMML@yahoogroups.com Sent: Sunday, November 02, 2008 11:44 PM Subject: RE: [FMML] FM start-up Hi, Such a feature may annoy...
Hallo there is my filter for clearing of margins. Could somebody help me with it? I want to modify the preview window size. (It is quite small.) The result is...
Hi Vaclav What you are asking for is not so simple within the handler you are using (if at all possible within that handler). In order to unleash the power of...
Hi, A recent file list is probably a nice feature. But at the moment we have other more important things to add to FM. Harry ... From: FMML@yahoogroups.com...
I found the FME_ZOOMCHANGED event in the Wiki: " e is a global system variable which describes the type of event; the following FilterMeister Events (FME's)...
It's a reserved keyword and event number, but as yet not implemented. Will possibly be implemented in the future, if we ever find the time :) Do we have a...
Thanks Martijn, this makes already two items I know about in the wiki that aren't actually implemented. bEllipse is the other. I should have thought the place...
Hi, Not yet implemented features should NOT be mentioned in the Wiki at all. The only place they might be mentioned about is a wishlist which should be...
This is a command for resizing whole Dialog Window: Dialog: size=(600,300) I want to resize the Preview Window too. Is there any possibility to do this?...
... Yes, see this page: http://www.filtermeister.com/wiki/index.php?page=FAQ - Kohan __________________________________________________________________ kohan...
Hallo thank you for the link. Could you help me how can I use it? The line "setCtlPos(CTL_PREVIEW, 10, 10, 100, 200);" does not work me. Thank you. ... %ffp ...
There is my new code. Could somebody help me with the zoom. It works only when the zoom is set to 100 percent. ... %ffp Title :"Border cleaner" Filename...
Hi, Instead of for(x=0; x<X; x++){ for(y=0; y<Y; y++){ you should always use for(x=x_start; x<x_end; x++){ for(y=y_start; y<y_end; y++){ Harry ... From:...
Hi, I recognized the syntax Vaclav used for the for..do loop clearly from a description read very recently in a manual. I think it was a FilterMeister manual...
Hi Vaclav, It seems your filter is working over here in all zoom levels. What is not working in zoom levels other than 100% on your pc? By the way, I noticed...
Hi, I just found the C-language guide back again so don't bother looking :-P It's not on the internet but funny enough it was always here right under my nose:...
Thanks a million Roberto for discovering of this bug and checkouting of my program. I did not try it on the color pictures. ... for(x=0; x<X; x++){ for(y=0;...
Hi Harry, Surprisingly Vaclav's ForEveryTile handler's faulty syntax works although for some reason the correct syntax results in a "much" faster preview...
Hi Vaclav, I don't know if it's possible in FilterMeister (I hardly am familiar with the programming) but a workaround for the zoom issue might be: .. check...
Hi, Vaclav's code processes more image data then actually needed. That's why it is slower for certain image zoom levels. So as I said always use this code for...
... Can you tell me what keywords you used to search the Wiki for anything related? If you can I'll see if I can rewrite the appropriate listings on the Wiki...