MySpace Face Recognition App

I was called into complete a Face Recognition Flash app for MySpace last week.  It was a promo for the Black Eye Peas.

After you give permission for Flash to turn on your camera, it locks in on your face (center your face for this) and then song begins. Cute 8bit art gets blasted on to your face (sunglasses, old game icons, etc).  You can move your face around and the art will follow you.  And then you can snap stills of the silliness with a button. When the song ends you can select screen grabs to upload to your MySpace account.

We did encounter one problem with Flash accessing the camera on some macs.  Apparently there is a bug with Mac OS 10.6.5 and the camera.  However there is a work around.

Posted in gigs, Professional, Uncategorized | Tagged , , | Leave a comment

Goodbye Facebook

Today I deactivated my Facebook account  - twice.  I looks like you can sign back in and, bingo, you exist in FB again.  But for now, I do not.

Other than reconnecting with an old friend that I thought was dead or in jail (no on the first, 3 monts in Rikers), it’s been pretty much a waste of time. And very creepy.  Especially speaking to anyone that I have not seen since before puberty.  Why are they all Christians and/or Republicans.

And the level of dialouge never rises above snarky zingers. As Tyler Durden said, ‘how’s that working for ya?”

I’m not some sort of purist.  I suppose I’ll give Tumblr another look. But for now, the party line game is over for me.

Posted in Uncategorized | Tagged | Leave a comment

Cloning a MouseEvent

I’ve seen the question of how to dispatch a MouseEvent through code, but i’ve never seen it answered. I figured it out so i’ll share it with your here.

Let’s say you have a BallSprite class and a RectSprite class (BallSprite being a graphic of a ball…..etc). And i want a MouseEvent.Click on an instance of BallSprite to trigger a MouseEvent.Click on an instance of RectSprite

Give the instance of BallSprite access to the instance of RectSprite. Note how i dispatch a clone of the click on the BallSprite instance. Now any MouseEvent.Click listeners on RectSprite instance will be triggered.

package myClasses
{
    import flash.display.Sprite;
    import flash.display.DisplayObject;
    import flash.events.MouseEvent;
    public class Ball extends Sprite
    {
       
        private var _rect:Rect;
        public function Ball(dispObj:DisplayObject)
        {
            _rect = dispObj:DisplayObject;
            this.addEventListener(MouseEvent.CLICK,clickHandler);
// add a graphic to our Ball instance
            this.graphics.beginFill(0x00ff);
            this.graphics.drawCircle(50,50,50);
            this.graphics.endFill();
        }
       
       
        private function clickHandler(e:MouseEvent):void {
            trace('ball click, now rect dispatches click');
            _rect.dispatchEvent(e.clone());
        }
    }
}
Posted in code, Professional | Tagged , | Leave a comment

My ‘Interesting’ Photos on Flickr

These are the photos I have on Flickr that they deem as ‘interesting’

Powered by Flickr Gallery

Posted in Uncategorized | Leave a comment

H1N1 Vaccine

When I was at Burning Man this year some guy warned me that I should avoid the 2009 H1N1 vaccine. He said it part of a sinister plot by ‘the people who hired’ Obama to reduce the population by 80-90%.

Seriously.

He then went from swine flu to contrails… apparently the government is slipping poison into jet fuel in an attempt to kill us or control us.

Seriously. Everyone put on your tin foil hats.

I went the doctor on Thursday to get a seasonal flu shot. I the nurse about an H1N1 shot. She told me the doctor is not giving because “it’s not FDA approved.”
But that does not appear to be true. In Sept, the FDA approved four vaccines against the 2009 H1N1 influenza virus.

I have a friend that was warning me about mercury in the H1N1 vaccine. So I looked into that. Apparently there is some truth to that.

Below are some quotes from the FDA that address the approval issue and the mercury issue.

Here’s my take on this. We need to turn down the dial on the tin foil nut jobs.
Can the FDA be trusted to protect us against the interest of big pharma?
It did in the 1960s by refusing Richardson-Merril Inc’s application for approval of Thalidomide… a drug prescribed for morning sickness in mothers that lead to thousands of deformities in England.

Can we trust the FDA today? I don’t know. But I’m looking into it. And I’m weighing the facts.

Bob Dobbs

Bob Dobbs

You have to ask yourself ‘what are the risk’? and what credibility do the people who are spreading rumors have?  I suspect that a lot these conspiracy theorist are getting a thrill about being in on the secret.  Hey, I’m all for  a good conspiracy.  Just not the ones that prey upon people’s fears.

As for the vaccine, it seems that I’m not in the 2009 H1N1 risk group. So that is why I’m not getting it. If I was a health-care worker, I think I would.

FDA info on H1N1

Posted in Brain Blips | Tagged , | Leave a comment

Li’l Big Rig Jig

Heavy equipment team at Burning Man honors Mike Ross and crew with this small replication of Big Rig Jig.

Posted in art, featured | Tagged , , | Leave a comment

Keith Haring Trader Joe Signs?

What’s not to love? A dead artist doing a little moonlighting.

Posted in art | Tagged , , , | Leave a comment

Flash Micro-site: 2010 World Cup

Specialty Flash Micro-site design and development  for Pappas Creative client, ActionImages. The site includes integration with a content management system to allow for quick image edits on the client-side.

Design and project management by Dave Pappas. Flash Development by Mike Connor.

Posted in featured, gigs, Professional | Tagged , , | Comments closed

Silly Sine/Consine Animation

Here is an old animation I coded up in AS2 in 2007 for my dad on Father’s day. (I’ve been coding in AS3 since late 2007). I adapted some code I found in Flash Math Creativity.

Get Adobe Flash player

Posted in Fash Experiment | Tagged , | Leave a comment

Vote Trejo

vote trejo, originally uploaded by EdavidC.

Obama’s VP in 2010?  I hope so.  Danny Trejo is super cool.

Posted in art, film, Good Guys, Super Cool | Tagged | Leave a comment
  • Rocket Number 9

    Rocket 9 is the personal and professional online presence of Flash developer and citizen Mike Connor. Cloud Swing, Inc. is our software development shop.