2 3 4 5 6 7 8 Page 1 of 8 1 2 3 4 5 6 7 8

Adobe Flash CS4: Create an Ajax Loader or Activity Indicator

Wednesday, November 4, 2009

Create an Ajax Loader (or Activity indicator for those accustomed to using the Apple iPhone) for the Web is not a difficult thing: there are services that create animated GIF images of all kinds. However, the GIF format has a big drawback of not supporting transparent as it should. Transparency in the format [...]

How to use Google Maps in Adobe Flash CS4

Saturday, August 29, 2009

Tutorial on how to use the Google Maps API in Flash CS4 to create interactive maps really accativante effects (even 3D) spectacular

ActionScript for Objective-C

Friday, June 12, 2009

I thought it might be useful to those who came up recently to develop applications for Apple iPhone, comparing Adobe Actionscript - the language used in Adobe Flash and Adobe Flex, the most popular among new programs - and Objective-C language used by Apple to develop its applications. Objective-C is all [...]

Very short snippet: Actionscript extend an array by the method shuffle ()

Thursday, April 2, 2009

I had already spoken of how to implement the method shuffle () in Javascript and Actionscript. I realized, tuttaavia, not pointing out that ActionScript can be extended in the same way JavaScript, its Array object: PLAIN TEXT Actionscript: Array.prototype.shuffle = function () (for (var j: uint , x: *, i: uint = this.length, i, j = Math.floor (Math.random () * i), [...]

Papervision 3D: show the hand cursor on the 3D interactive elements

Sunday, March 15, 2009

Set in a material way interactive and hook up an event with a plan: PLAIN TEXT Actionscript: var myMaterial: BitmapAssetMaterial = new BitmapAssetMaterial ( "Photo1"); mymaterial.interactive = true; var myplane: Plane = new Plane (my_material, 200, 100 , 0, 0); myplane.addEventListener (InteractiveScene3DEvent.OBJECT_PRESS, function (e: InteractiveScene3DEvent): void (/ / todo)); you can turn [...]

Very short snippet: shuffle () in Javascript and Actionscript

Monday, February 16, 2009

In PHP there is a handy feature called shuffle () which allows you to mix an array (see Very short trick: take random elements from an array in PHP). An excellent version of JavaScript I've found here. Below the code slightly revised: PLAIN TEXT JavaScript: Array.prototype.shuffle = function () (for (var j, x, i = this.length, i, j = Math.floor (Math.random () * i) , x [...]

Actionscript 3.0 for beginners: lesson # 5

Thursday, January 22, 2009

Who started developing code with scripting languages like Javascript or Actionscript same, you may not really know the concept of the given type. With some high-level languages, in fact, he used to - at best - to declare the variable without assigning a specific data type, not counting those languages [...]

Very short trick: ADDED_TO_STAGE

Thursday, January 8, 2009

As we have seen repeatedly, in the constructor of a class that extends a MovieClip you may need to add the event to find out when our ADDED_TO_STAGE MovieClip is actually drawn on the Stage: PLAIN TEXT Actionscript: / / constructor public function MyClass (): void ( addEventListener (Event.ADDED_TO_STAGE, main);) would be a good idea to remove that event within the function main (): PLAIN TEXT Actionscript: / / constructor public function MyClass (): void ([...]

Very short trick: addEventListener () AS3, a handler more events

Tuesday, January 6, 2009

In ActionScript 3.0 you must use addEventListener () to intercept any event: PLAIN TEXT Actionscript: / ** * Given a MovieClip mc, you register event handlers * / mc.addEventListener (MouseEvent.CLICK, on_click); mc.addEventListener ( MouseEvent.ROLL_OVER, on_roll_over); mc.addEventListener (MouseEvent.ROLL_OUT, on_roll_out) / ** * Functions hander for the events mentioned above * / function on_click (e: MouseEvent): void (/ / click) function on_roll_over (and : MouseEvent): void (/ /) function roll over on_roll_out ([...]

Wordpress Plugin: Flash Scroll Feed Reader

Monday, December 22, 2008

Aggregates and shakes feeds you want on your blog

2 3 4 5 6 7 8 Page 1 of 8 1 2 3 4 5 6 7 8