Jump to content
Search Community

accessdev

Members
  • Posts

    1
  • Joined

  • Last visited

Contact Methods

Profile Information

  • Location
    Montpellier - France

accessdev's Achievements

0

Reputation

  1. Hello, I have a ColorMatrixfilter on somes MCs. the transformation looks like that ( sort of greyscale filter) matrix = new Array(); matrix=matrix.concat([0.4,0.333,0.333,0,0]);// red matrix=matrix.concat([0.333,0.4,0.333,0,0]);// green matrix=matrix.concat([0.333,0.333,0.4,0,0]);// blue matrix=matrix.concat([0,0,0,1,0]);// alpha my_filter = new ColorMatrixFilter(matrix); my_mc.filters = new Array(my_filter); What is the simple way to update this filter to move to "normal" state with 1,1,1 respectively in R,G,B channels ?
×
×
  • Create New...