Top RIA blogs award

Top RIA blogs

Confessions of an Flash Addict Rotating Header Image

Posts under ‘Featured’

New Projects! iDEAL and ASCoords

I’m currently working on several new projects is want to donate to the opensource community; The first one is an Actionscript 2.0 API for iDEAL (iDEAL is an e-banking application for commerce sites). The second is ASCoords; A rewrite from Jonathan Stott’s JSCoord Javascript Class. JScoord is a JavaScript script that provides functions for handling [...]

forceSmoothing property

To smooth dynamically loaded bitmaps: [cc lang="actionscript"] var mcl:MovieClipLoader = new MovieClipLoader(); var mclObj:Object = new Object(); mcl.addListener(mclObj); mcl.loadClip(“path/to/image”, clipToLoadImageIn); mclObj.onLoadInit = onLoadInit; function onLoadInit(theLoadedImage:MovieClip) { theLoadedImage.forceSmoothing = true; } [/cc]

FullScreen mode in AS2

UPDATE: Source files are added and code is now in-post. Here is also a follow up on this article for AS3 and AIR A client asked if it was possible to go FullScreen in AS2 and i said: “No, only from AS3, FlashPlayer 9″. However i recently found out that this is possible to do [...]