Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a strange issue with my flash application. I'll start with example:

If you are using Chrome follow this link: http://miriti.ru/games/t/
It is a simple application, 50 PNG sprites renders on one Bitmap using BitmapData::draw() method.
If you will try to click repeatedly or right-click you will see lag.
I tested it on different systems with latest Chrome and got the same behavior. Nothing like this happens on IE nor Fx.

Source code of this example below:

package
{
    import flash.display.Bitmap;
    import flash.display.BitmapData;
    import flash.display.Sprite;
    import flash.events.Event;

    /**
     * ...
     * @author Michael Miriti
     */
    public class Main extends Sprite
    {
        private var _bmp:Bitmap = new Bitmap(new BitmapData(800, 600, false, 0x0));

        private var objs:Array = new Array();

        [Embed(source="638283338.png")]
        private static var _objbmp:Class;

        public function Main():void
        {
            if (stage)
                init();
            else
                addEventListener(Event.ADDED_TO_STAGE, init);

        }

        private function init(e:Event = null):void
        {
            removeEventListener(Event.ADDED_TO_STAGE, init);

            addEventListener(Event.ENTER_FRAME, onEnterFrame);
            addChild(_bmp);

            for (var i:int = 0; i < 50; i++)
            {
                var no:SomeObject = new SomeObject(new _objbmp());
                no.pos.x = Math.random() * 800;
                no.pos.y = Math.random() * 600;
                objs[objs.length] = no;
            }
        }

        private function onEnterFrame(e:Event):void
        {
            _bmp.bitmapData.fillRect(_bmp.bitmapData.rect, 0x0);
            for (var i:int = 0; i < objs.length; i++)
            {
                objs[i].update();
                _bmp.bitmapData.draw(objs[i].render(), objs[i].matrix());
            }
        }

    }
}
import flash.display.BitmapData;
import flash.geom.Matrix;
import flash.geom.Point;

class SomeObject
{
    private var _data:BitmapData;
    public var pos:Point = new Point();
    private var ma:Matrix = new Matrix();
    private var xdir:Number;
    private var ydir:Number;

    function SomeObject(bmp:flash.display.Bitmap):void
    {
        _data = bmp.bitmapData;
        xdir = Math.floor(-1 + Math.random() * 3) * 5;
        ydir = Math.floor(-1 + Math.random() * 3) * 5;

        if (xdir == 0)
            xdir = 5;
        if (ydir == 0)
            ydir = 5;
    }

    public function matrix():Matrix
    {
        ma.identity();
        ma.translate(pos.x, pos.y);
        return ma;
    }

    public function render():flash.display.BitmapData
    {
        return _data;
    }

    public function update():void
    {
        pos.x += xdir;
        pos.y += ydir;

        if ((pos.x > 800) || (pos.x < 0))
            xdir = -xdir;
        if ((pos.y > 600) || (pos.y < 0))
            ydir = -ydir;
    }
}
share|improve this question
1  
My guess is it's "pepper flash" a new, buggy Flash plugin used in chrome. You can disable it and see if that helps. – Sunil D. Sep 7 '12 at 22:50
Yes. Looks like problem is exactly in this buggy Papper Flash plugin. When I disable it everything works fine. But still I need to know how to avoid this if my users using this buggy plugin.. I cannot force them to disable this.. – Michael Miriti Sep 8 '12 at 10:57

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.