Friday, August 21, 2009

Error #1123: Filter operator not supported on type builtin.as$0.MethodClosure.

If you get this error:

TypeError: Error #1123: Filter operator not supported on type builtin.as$0.MethodClosure.

It could easily mean you have an extra 'dot' where it shouldn't be:

This:
pvScene.addChild.(plane);


Should be:
pvScene.addChild(plane);


4 comments:

  1. OH my God thank you so much, I've been driving myself crazy with my Flash assignment trying to work out what was wrong.

    >.<

    I was wondering, do you know what this error means?
    "Error #1009: Cannot access a property or method of a null object reference."

    I have a scrolling gallery that's meant to open up an image when I click on the smaller thumbnail... but right now, it's not opening any of them, and giving me this error.

    thanks xxx

    ReplyDelete
  2. @Nick This was extremely helpful the . was exactly the problem. You saved me from so much frustration thanks.

    ReplyDelete
  3. Thank You! This fixed my problem.

    ReplyDelete
  4. Yes. 170 lines of code. No compiler errors but this cryptic message in the output.

    Looking....looking....yup. blaBlaBla.(Arrrg) instead of blaBla(Arrrg)

    Thanks sooooo much

    ReplyDelete