Mouse-position outside flash tutorial
 To use javascript with banners can be a true headache. I wan’t to share my exerience of the obstacles I found so far.
Before you start, make sure you have the permission to use javascript on the sites. Sometimes you can sneak in your javascript in the embed-code generated by the media agencies, the siteowner does’nt even have [...]
3D effect with filters
By mixing multiple layers of filtereffects you can make this nice little 3d-effect.
Flashcontent
var so = new SWFObject(”files/filterDemo.swf”, “filterDemo”, “470″, “200″, “8″, “#ffffff”); [...]
Mozilla eats “@” for breakfast
I found this weird little bug today.Â
If windowmode is set to transparent, Mozilla don’t register the altGr+2 as “@”. (I have not tested other characters with AltGr ). Only fix is to remove the wmode-param. So remember this when you need that html background-image under your flash and the same time register a email-adress.
Thanks god for google!
Stopped by the pop-up blocker in your browser?
I used the navigateToURL(new URLRequest(www.whateverURL.com),”_blank“)
But when I tried it my browser just activates the pop-up blocker sign… not very god…
So after some trial and errors I found out the if I use the External interface it works great on my explorer and Firefox.
Here is my example: ExternalInterface.call(”window.open”,”www.whateverURL.com”);