Filtermeister problem

Comments and discussions about 8bf plugins which can be use in various applications like Photoshop, Paint Shop Pro or Photo-Paint
Post Reply
Guest

Filtermeister problem

Post by Guest »

Hi, I have been trying to join the fm mailing list, but im waiting to be accepted.. Im looking for a little help with using arrays in filtermeister, dunno if anybody here can help - cant think of anywhere else other than the mailing list to try..

ok, i am trying to initialise a simple 1 dimensional array:

OnFilterStart:{

allocArray(0,10,NULL,NULL,4);
return false;
}

I recieve Symbol 'allocArray' is undefined

and:
OnFilterStart:{

int allocArray(0,10,NULL,NULL,4);
return false;
}

I recieve "Error while looking for direct_declarator near "0"

I have also tried pasting the example script from:
http://www.graphicsgalaxy.com/wiki/filt ... allocArray

I recieve "Symbol 'allocArray' is undefined"

am i missing something obvious?

im using the latest version of filtermeister on win xp.

apologies if this is the wrong place to post, have looked everywhere for a solution to this..

Rob

HaraldHeim
Plugin Guru
Plugin Guru
Posts: 3363
Joined: Fri Mar 08, 2002 1:00 am
Location: The Plugin Site
Contact:

Post by HaraldHeim »

Hi, I have been trying to join the fm mailing list, but im waiting to be accepted..
You don't have to wait to get subscribed, so I suspect that there was a problem. Please send me your email address and I will add you manually.

ok, i am trying to initialise a simple 1 dimensional array:

OnFilterStart:{

allocArray(0,10,NULL,NULL,4);
return false;
}

I recieve Symbol 'allocArray' is undefined
You probably are using the old FilterMeister 0.4.18 or 0.4.19 version that doesn't support allocArray. The latest version is only available to subscribers of the FMML mailing list.

and:
OnFilterStart:{

int allocArray(0,10,NULL,NULL,4);
return false;
}

I recieve "Error while looking for direct_declarator near "0"
The problem is the "int" in front of allocArray. allocArray is a function, so you can't declare it as a variable.

Post Reply