Re: [flexcoders] Filters, Contributing

2006-02-10 Thread Trey Long
Yeah, that's the problem. I can't find an interface as a guide to 
designing the class and even though I can extend from BitmapFilter there 
isn't any information to be had.

I believe that the classes have a specific structure and the 
DisplayObject calls certain functions in the same manner that methods 
like createChildren() or updateDisplayList() is called, but I can't find 
any info.

So I was hoping that someone with more knowledge about the internals of 
those classes would step forward, should I even hope for a Flex engineer 
to see this?

-Trey

JesterXL wrote:
 Ohhh, you want to actually have it be a filter vs. using another one.  Sorry 
 about that; I reckon if your class doesn't extend at least a class in the 
 flash.filters.* package, it won't work.
 
 - Original Message - 
 From: Trey Long [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Thursday, February 09, 2006 5:15 PM
 Subject: Re: [flexcoders] Filters, Contributing
 
 
 I read through that, from what I understand it didn't exactly cover what
 I wanted to do.
 
 I was hoping to do something like the following:
 
 MyNewFilter would extend from the BitMapFilter class:
 
 var f:MyNewFilter = new MyNewFilter();
 var filtsCopy:Array = DisplayObject.filters;
 filtsCopy.push(MyNewFilter);
 DisplayObject.filters = filtsCopy;
 
 If that was covered in there, please correct me. It's possible that I
 missed something.
 
 -Trey
 
 JesterXL wrote:
 Here is the 1.5 way; 2 shouldn't be that different:

 http://www.jessewarden.com/archives/2006/01/how_to_use_the.html


 - Original Message - 
 From: Trey Long [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Thursday, February 09, 2006 1:54 PM
 Subject: [flexcoders] Filters, Contributing


 I created my own bitmap filter from scratch. I was hoping that I could
 follow the MM framework on this one but there is no info in the API nor
 is there an interface that I can follow.

 If any Adobe / MM guys have any advice on this one please let me know. I
 would like to just use it in the same way that standard Flex filters are
 used. I also wouldn't mind contributing the filter if it pleases anyone.

 -Trey

 Standard way filters are used to me is the following:
 Copy filters array out of DisplayObject, push filter on array, set back
 to filters array of display object.


 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links








 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links






 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links
 
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 Yahoo! Groups Links
 
 
 
  
 
 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] Filters, Contributing

2006-02-10 Thread JesterXL
Hey Trey, I saw your effect posted on Drisgill, how did you get it to work? 
She looks hot!

- Original Message - 
From: Trey Long [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, February 10, 2006 9:14 AM
Subject: Re: [flexcoders] Filters, Contributing


Yeah, that's the problem. I can't find an interface as a guide to
designing the class and even though I can extend from BitmapFilter there
isn't any information to be had.

I believe that the classes have a specific structure and the
DisplayObject calls certain functions in the same manner that methods
like createChildren() or updateDisplayList() is called, but I can't find
any info.

So I was hoping that someone with more knowledge about the internals of
those classes would step forward, should I even hope for a Flex engineer
to see this?

-Trey

JesterXL wrote:
 Ohhh, you want to actually have it be a filter vs. using another one. 
 Sorry
 about that; I reckon if your class doesn't extend at least a class in the
 flash.filters.* package, it won't work.

 - Original Message - 
 From: Trey Long [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Thursday, February 09, 2006 5:15 PM
 Subject: Re: [flexcoders] Filters, Contributing


 I read through that, from what I understand it didn't exactly cover what
 I wanted to do.

 I was hoping to do something like the following:

 MyNewFilter would extend from the BitMapFilter class:

 var f:MyNewFilter = new MyNewFilter();
 var filtsCopy:Array = DisplayObject.filters;
 filtsCopy.push(MyNewFilter);
 DisplayObject.filters = filtsCopy;

 If that was covered in there, please correct me. It's possible that I
 missed something.

 -Trey

 JesterXL wrote:
 Here is the 1.5 way; 2 shouldn't be that different:

 http://www.jessewarden.com/archives/2006/01/how_to_use_the.html


 - Original Message - 
 From: Trey Long [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Thursday, February 09, 2006 1:54 PM
 Subject: [flexcoders] Filters, Contributing


 I created my own bitmap filter from scratch. I was hoping that I could
 follow the MM framework on this one but there is no info in the API nor
 is there an interface that I can follow.

 If any Adobe / MM guys have any advice on this one please let me know. I
 would like to just use it in the same way that standard Flex filters are
 used. I also wouldn't mind contributing the filter if it pleases anyone.

 -Trey

 Standard way filters are used to me is the following:
 Copy filters array out of DisplayObject, push filter on array, set back
 to filters array of display object.


 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links








 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links








 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links







 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] Filters, Contributing

2006-02-10 Thread Trey Long
Thanks, thats actually Drisgill's wife, you should leave a comment about 
it :)

I didn't get the part I am talking about here to work. I simple gave the 
class a method which returns a bitmap. It's a lowbrow way to use a 
filter but until Macromedia / Adobe responds I think it's the only way I 
can go.

-Trey

JesterXL wrote:
 Hey Trey, I saw your effect posted on Drisgill, how did you get it to work? 
 She looks hot!
 
 - Original Message - 
 From: Trey Long [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Friday, February 10, 2006 9:14 AM
 Subject: Re: [flexcoders] Filters, Contributing
 
 
 Yeah, that's the problem. I can't find an interface as a guide to
 designing the class and even though I can extend from BitmapFilter there
 isn't any information to be had.
 
 I believe that the classes have a specific structure and the
 DisplayObject calls certain functions in the same manner that methods
 like createChildren() or updateDisplayList() is called, but I can't find
 any info.
 
 So I was hoping that someone with more knowledge about the internals of
 those classes would step forward, should I even hope for a Flex engineer
 to see this?
 
 -Trey
 
 JesterXL wrote:
 Ohhh, you want to actually have it be a filter vs. using another one. 
 Sorry
 about that; I reckon if your class doesn't extend at least a class in the
 flash.filters.* package, it won't work.

 - Original Message - 
 From: Trey Long [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Thursday, February 09, 2006 5:15 PM
 Subject: Re: [flexcoders] Filters, Contributing


 I read through that, from what I understand it didn't exactly cover what
 I wanted to do.

 I was hoping to do something like the following:

 MyNewFilter would extend from the BitMapFilter class:

 var f:MyNewFilter = new MyNewFilter();
 var filtsCopy:Array = DisplayObject.filters;
 filtsCopy.push(MyNewFilter);
 DisplayObject.filters = filtsCopy;

 If that was covered in there, please correct me. It's possible that I
 missed something.

 -Trey

 JesterXL wrote:
 Here is the 1.5 way; 2 shouldn't be that different:

 http://www.jessewarden.com/archives/2006/01/how_to_use_the.html


 - Original Message - 
 From: Trey Long [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Thursday, February 09, 2006 1:54 PM
 Subject: [flexcoders] Filters, Contributing


 I created my own bitmap filter from scratch. I was hoping that I could
 follow the MM framework on this one but there is no info in the API nor
 is there an interface that I can follow.

 If any Adobe / MM guys have any advice on this one please let me know. I
 would like to just use it in the same way that standard Flex filters are
 used. I also wouldn't mind contributing the filter if it pleases anyone.

 -Trey

 Standard way filters are used to me is the following:
 Copy filters array out of DisplayObject, push filter on array, set back
 to filters array of display object.


 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links








 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links







 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links







 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links






 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links
 
 
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 Yahoo! Groups Links
 
 
 
  
 
 
 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Filters, Contributing

2006-02-10 Thread Jason Hawryluk
t; change="ReflectObject();" value="0" id="ReflectionAlpha2" 
maximum="1" minimum="0" allowTrackClick="true" tickInterval=".1" 
/mx:Label 
text="{ReflectionAlpha2.value}"//mx:FormItemmx:FormItem 
label="Reflection Ratio (1)"mx:HSlider 
liveDragging="true" change="ReflectObject();" value="0" id="ReflectionRation1" 
maximum="255" minimum="0" allowTrackClick="true" tickInterval="10" 
/mx:Label 
text="{ReflectionRation1.value}"//mx:FormItemmx:FormItem 
label="Reflection Ratio (2)"mx:HSlider 
liveDragging="true" change="ReflectObject();" value="255" id="ReflectionRation2" 
maximum="255" minimum="0" allowTrackClick="true" tickInterval="10" 
/mx:Label 
text="{ReflectionRation2.value}"//mx:FormItemmx:FormItem 
label="Mask Position x"mx:HSlider 
liveDragging="true" change="ReflectObject();" value="100" id="Maskx" 
maximum="500" minimum="0" allowTrackClick="true" tickInterval="20" 
/mx:Label 
text="{Maskx.value}"//mx:FormItemmx:FormItem 
label="Background 
Color"mx:ColorPicker 
id="BackColor" 
selectedColor="#C0C0C0"/mx:Label 
text="{BackColor.selectedColor}"/

/mx:FormItem/mx:Form/mx:VBox/mx:HDividedBox/mx:Application
/SNIP




  -Message d'origine-De: 
  flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part 
  de JesterXLEnvoyé: vendredi 10 février 2006 
  17:18À: flexcoders@yahoogroups.comObjet: Re: 
  [flexcoders] Filters, ContributingHey Trey, I saw 
  your effect posted on Drisgill, how did you get it to work? She looks 
  hot!- Original Message - From: "Trey Long" 
  [EMAIL PROTECTED]To: 
  flexcoders@yahoogroups.comSent: Friday, February 10, 2006 9:14 
  AMSubject: Re: [flexcoders] Filters, ContributingYeah, that's 
  the problem. I can't find an interface as a guide todesigning the class 
  and even though I can extend from BitmapFilter thereisn't any information 
  to be had.I believe that the classes have a specific structure and 
  theDisplayObject calls certain functions in the same manner that 
  methodslike createChildren() or updateDisplayList() is called, but I can't 
  findany info.So I was hoping that someone with more knowledge 
  about the internals ofthose classes would step forward, should I even hope 
  for a Flex engineerto see this?-TreyJesterXL 
  wrote: Ohhh, you want to actually have it be a filter vs. using 
  another one.  Sorry about that; I reckon if your class doesn't 
  extend at least a class in the flash.filters.* package, it won't 
  work. - Original Message -  From: "Trey Long" 
  [EMAIL PROTECTED] To: 
  flexcoders@yahoogroups.com Sent: Thursday, February 09, 2006 
  5:15 PM Subject: Re: [flexcoders] Filters, 
  Contributing I read through that, from what I 
  understand it didn't exactly cover what I wanted to 
  do. I was hoping to do something like the 
  following: MyNewFilter would extend from the BitMapFilter 
  class: var f:MyNewFilter = new MyNewFilter(); var 
  filtsCopy:Array = DisplayObject.filters; 
  filtsCopy.push(MyNewFilter); DisplayObject.filters = 
  filtsCopy; If that was covered in there, please correct me. 
  It's possible that I missed something. 
  -Trey JesterXL wrote: Here is the 1.5 way; 2 
  shouldn't be that different: http://www.jessewarden.com/archives/2006/01/how_to_use_the.html 
  - Original Message -  From: "Trey Long" 
  [EMAIL PROTECTED] To: 
  flexcoders@yahoogroups.com Sent: Thursday, February 09, 
  2006 1:54 PM Subject: [flexcoders] Filters, 
  Contributing I created my own bitmap 
  filter from scratch. I was hoping that I could follow the MM 
  framework on this one but there is no info in the API nor is there 
  an interface that I can follow. If any Adobe / MM guys 
  have any advice on this one please let me know. I would like to 
  just use it in the same way that standard Flex filters are used. I 
  also wouldn't mind contributing the filter if it pleases 
  anyone. -Trey Standard way 
  filters are used to me is the following: Copy filters array out of 
  DisplayObject, push filter on array, set back to filters array of 
  display object. -- Flexcoders 
  Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
  Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  Yahoo! Groups 
  Links 
  -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 
  Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
  Yahoo! Groups 
  Links 
  -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt 

[flexcoders] Filters, Contributing

2006-02-09 Thread Trey Long
I created my own bitmap filter from scratch. I was hoping that I could 
follow the MM framework on this one but there is no info in the API nor 
is there an interface that I can follow.

If any Adobe / MM guys have any advice on this one please let me know. I 
would like to just use it in the same way that standard Flex filters are 
used. I also wouldn't mind contributing the filter if it pleases anyone.

-Trey

Standard way filters are used to me is the following:
Copy filters array out of DisplayObject, push filter on array, set back 
to filters array of display object.


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] Filters, Contributing

2006-02-09 Thread JesterXL
Here is the 1.5 way; 2 shouldn't be that different:

http://www.jessewarden.com/archives/2006/01/how_to_use_the.html


- Original Message - 
From: Trey Long [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, February 09, 2006 1:54 PM
Subject: [flexcoders] Filters, Contributing


I created my own bitmap filter from scratch. I was hoping that I could 
follow the MM framework on this one but there is no info in the API nor 
is there an interface that I can follow.

If any Adobe / MM guys have any advice on this one please let me know. I 
would like to just use it in the same way that standard Flex filters are 
used. I also wouldn't mind contributing the filter if it pleases anyone.

-Trey

Standard way filters are used to me is the following:
Copy filters array out of DisplayObject, push filter on array, set back 
to filters array of display object.


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Filters, Contributing

2006-02-09 Thread Trey Long
I read through that, from what I understand it didn't exactly cover what 
I wanted to do.

I was hoping to do something like the following:

MyNewFilter would extend from the BitMapFilter class:

var f:MyNewFilter = new MyNewFilter();
var filtsCopy:Array = DisplayObject.filters;
filtsCopy.push(MyNewFilter);
DisplayObject.filters = filtsCopy;

If that was covered in there, please correct me. It's possible that I 
missed something.

-Trey

JesterXL wrote:
 Here is the 1.5 way; 2 shouldn't be that different:
 
 http://www.jessewarden.com/archives/2006/01/how_to_use_the.html
 
 
 - Original Message - 
 From: Trey Long [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Thursday, February 09, 2006 1:54 PM
 Subject: [flexcoders] Filters, Contributing
 
 
 I created my own bitmap filter from scratch. I was hoping that I could 
 follow the MM framework on this one but there is no info in the API nor 
 is there an interface that I can follow.
 
 If any Adobe / MM guys have any advice on this one please let me know. I 
 would like to just use it in the same way that standard Flex filters are 
 used. I also wouldn't mind contributing the filter if it pleases anyone.
 
 -Trey
 
 Standard way filters are used to me is the following:
 Copy filters array out of DisplayObject, push filter on array, set back 
 to filters array of display object.
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 Yahoo! Groups Links
 
 
 
  
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
 Yahoo! Groups Links
 
 
 
  
 
 


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Filters, Contributing

2006-02-09 Thread JesterXL
Ohhh, you want to actually have it be a filter vs. using another one.  Sorry 
about that; I reckon if your class doesn't extend at least a class in the 
flash.filters.* package, it won't work.

- Original Message - 
From: Trey Long [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, February 09, 2006 5:15 PM
Subject: Re: [flexcoders] Filters, Contributing


I read through that, from what I understand it didn't exactly cover what
I wanted to do.

I was hoping to do something like the following:

MyNewFilter would extend from the BitMapFilter class:

var f:MyNewFilter = new MyNewFilter();
var filtsCopy:Array = DisplayObject.filters;
filtsCopy.push(MyNewFilter);
DisplayObject.filters = filtsCopy;

If that was covered in there, please correct me. It's possible that I
missed something.

-Trey

JesterXL wrote:
 Here is the 1.5 way; 2 shouldn't be that different:

 http://www.jessewarden.com/archives/2006/01/how_to_use_the.html


 - Original Message - 
 From: Trey Long [EMAIL PROTECTED]
 To: flexcoders@yahoogroups.com
 Sent: Thursday, February 09, 2006 1:54 PM
 Subject: [flexcoders] Filters, Contributing


 I created my own bitmap filter from scratch. I was hoping that I could
 follow the MM framework on this one but there is no info in the API nor
 is there an interface that I can follow.

 If any Adobe / MM guys have any advice on this one please let me know. I
 would like to just use it in the same way that standard Flex filters are
 used. I also wouldn't mind contributing the filter if it pleases anyone.

 -Trey

 Standard way filters are used to me is the following:
 Copy filters array out of DisplayObject, push filter on array, set back
 to filters array of display object.


 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links








 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/