Category: Work
Bitmap and Bitmap Data.
Bitmap is a display object which wraps the BitmapData within it. The BitmapData is the array of data used to form the pixels in the image. Now a point to note here is that you can’t use use the BitmapData of one state of a movieclip and expect it to gather all the frames. What it does is it takes a photograph sort of and gets its pixel data value.
Iphone with Flash apps?
Soon, flash developers will be able to develop iphone apps which can run natively on the iphone without any browser call. This means that no wrapper like flash plugin or air plugin will be required. Only Actionscript 3 based content is supported when developing content for the iphone. AS1 and 2 are not supported and …
Singtel Youth Portal – tons of prizes to be won!
Singtel is giving away 8 Tickets to the Formula One™ race with chauffeured limo ride, 8 LG handsets and 8 Free Exclusive Passes to Zouk’s Formula One™ week special parties to 1 super-friendly person!
Going to attend TAC 2009
Hello! TAC 2009 is coming up on the 14th and 15th of September. This year though we wont be seeing Lee Brimelow, we will be hearing speakers such as Peter Elst, Andre Michelle, Marco Casario. Its going to be during the fasting month of Ramadan though, but I’m sure it will be cool. Alrite here …
Flickr and using its API – post 1
Hello everyone, Its time to talk about and its API, how to use it and things associated with it. This is going to be the first of a series of blogs of how to use flickr and its API. In this first post, we are going to talk about the API Key and its uses. …
Super in AS3 – An explanation.
Hello, today I was wondering what the super keyword in AS3 did while they were used in classes. Initially it seemed like it was the constructor for the base class. However after exploring a bit deeper, I realised that there was more to super than it seemed. So here is a scenario. ChildClass.as extends ParentClass.as …
Passing parameters from a holder to loaded swf
Well there are many instances when we need to pass flashVars from the html to a preloader and then on to a loaded movieClip. This is how I’ve done it. HTML — <param name=”FlashVars” value=”baseURL=http://www.sowebme.com/murtaza” /> For AC_RunActiveContent.js users, There should be 3 instances where you would place this For swfObject users, there will be …
Open new browser window from flash.
Hey, In this first tutorial today we are going to talk about how to use javascript to open a new browser window from flash. The code that is required is fairly simple actually. var request:String = “javascript: window.open(‘http://www.sowebme.com/murtaza’,’win’,’height=400,width=600,toolbar=no,scrollbars=yes’); void(0)”; var url:URLRequest = new URLRequest(request); navigateToURL(url, “_self”); Within your HTML housing the flash, you are going …