- Home
- » As.it
- » Staff
- » Fabio Biondi
Fabio Biondi
di Fabio Biondi
Adobe Flash / Flex Developer, progetta e sviluppa siti web e rich internet applications in Adobe Flash dal 2002. Ha collaborato con diverse web agency italiane e realizzato progetti per clienti di fama nazionale e internazionale.
L'amore per ActionScript e tutto cio' che circonda il mondo Adobe, durante il corso degli anni, lo spinge a studiare e ad approfondire tutto cio' che riguarda la Flash Platform, come Flex, AIR, FlashLite, Flash Media Server e ponendo inoltre particolare attenzione verso le tecnologie emergenti come Adobe Flash Collaboration Service, Papervision3D e Flash Catalyst.
Attualmente lavora con la societa' GNstudio con il ruolo di Actionscript Developer, occupandosi in prevalenza della parte front-end di web/desktop applications in Flex, Flash e AIR e contribuisce inoltre da anni alla stesura di materiale editoriale per i due maggiori usergroup italiani Adobe: Actionscript.it e Augitaly.
Nel corso del 2009 inizia ad interessarsi alla programmazione di microcontroller soprattutto in ambito domotica e robotica sviluppando sia prototipi standalone che applicazioni Flash/Flex/Air interfacciati ad hardware esterno e a componenti elettronici di vario genere (www.fabiobiondi.com/blog per ulteriori dettagli).
Personal Blog | Sito Web | Adobe Profile | LinkedIn Profile |
Certificazioni Adobe:
2009 - Adobe Flex 3 & AIR Certified Expert and Instructor (ACE - ACI)
2009 - Adobe Flash CS3 Certified Expert and Instructor (ACE - ACI)
2009 - Adobe Flash Lite 2 Certified Expert (ACE)
2007 - Adobe Flash Mx 2004 Certified Instructor (ACI)
2004 - Adobe Flash Mx 2004 Developer (ACE)
Vota
Votazione media (2 voti)
Fabio Biondi RSS Actionscript.it
- 1 gennaio 2010
- Esploriamo le novità di Flex 4 realizzando una galleria video XML
Read More
Analizziamo le nuove funzionalità di Flex 4 realizzando una galleria video gestita da XML al fine di coprire diverse casistiche tipiche durante lo sviluppo di rich internet applications: utilizzo e skinning dei nuovi spark components, states e itemRenderer in FX4, dispatch custom events, caricamento XML, value objects, css, embedding fonts e molto altro.- By Fabio Biondi
- 0 Comments
- 12 ottobre 2009
- Galleria di immagini in Flash Cs4 e Papervion 3D
Read More
In questo articolo realizzeremo una galleria di immagini visualizzate in un contesto tridimensionale utilizzando Flash Cs4, ActionScript 3.0, Papervision 3D e la libreria Tweener Caurina.
- By Fabio Biondi
- 4 Comments
- 6 ottobre 2009
- Flash Cs5 e ActionScript 3.0 sull'IPhone
Read More
Ancora novità dal Max 2009 di Los Angeles: Flash CS5 supporterà finalmente lo sviluppo su dispositivi IPhone in ActionScript 3.0.- By Fabio Biondi
- 0 Comments
- 6 ottobre 2009
- Augmented Reality e Papervision 3D
Il concetto di Augmented Reality sta recentemente prendendo piede in ambito web grazie ad una libreria, FLARToolkit, disponibile per Actionscript 3.0, che permette di localizzare una particolare immagine in un ambiente tridimensionale (un cosiddetto “marker” definito dalla sviluppatore) e di sovrapporvi elementi 3D.
Read More
In questo esempio sfrutteremo Flex3, Papervision3D e il FLARToolkit per creare degli oggetti 3d in movimento che saranno sovrapposti al nostro marker (un sorta di pattern) ogni qualvolta verrà inquadrato dalla webcam.
All’interno dell’articolo è disponibile un video dimostrativo, una demo live e il codice sorgente.- By Fabio Biondi
- 0 Comments
- 5 ottobre 2009
- Novità dall'Adobe MAX 2009
Read More
Tantissime le novità interessanti proposte all'evento Adobe Max 2009 di Los Angeles : FFlex Mobile Framework, nuove beta di Flash Catalyst, Flash Builder, Coldfusion Builder e molto altro....- By Fabio Biondi
- 0 Comments
Fabio Biondi RSS
- 27 agosto 2010
- Air for Android and Flash CS5: remote xml requests and the uses-permission tag
- In my last Air for Android article I have explained how to load a local XML file in a Flash CS5 Android application. Anyway, if you need to load a REMOTE xml file, you can use the same AS3 code, making a little change to your xml-descriptor file, otherwise you won’t be able to load a remote file. So, compile your .fla in Flash CS5, open the generated xml descriptor file and add the following node just after the root node (< application xmlns="...." >). Upload your app on your phone and your ...
- 25 agosto 2010
- Air for Android (Flash Cs5): read XML files and use standard flash components
- When you’re working with Air for Android, you could often need to load application settings (or something else) from a local XML file. So I got a similar exercise from my AIR and Flash CS5 Training course, I fixed just a bit the UI for a better view in a mobile device and I have tried if it worked on my Google Nexus One. The answer is YES, it perfectly works without any important change. Following the features of this sample: 1) loading data from an external XML files (info.xml) 2) displaying all ...
- 25 agosto 2010
- Air for Android and Flash CS5: animate movieclips in according with the phone orientation
- Another new feature in AIR for Android is the way to manage the orientation event. To accomplish this task you can now use the orientationChange event that is dispatched every time the user changes its phone orientation. However, in the current beta release I got some problems to use this event because I wasn’t able to get the right stage size. So I have decided to use the standard Event.RESIZE event and the new deviceOrientation property. In other words, when the user changes the phone orientation, the Event.RESIZE will be dispatched and inside the ...
- 23 agosto 2010
- Adobe Air for Android: IPhone goodbye! ;) Browse and load images from your phone library
- Wow!!! Finally Adobe Flash on my phone… again. I was waiting for it from the first Flashlite version on Nokia S60. Infact, after the previous FlashLite experience, Adobe is working on the Adobe AIR version for mobile devices available on all Android phones with OS > 2.2 (the last version in this moment, codename Froyo) Now it’s still in a beta, so it’s not officially available on your Flash CS5, but it will be available soon. I want remember you that from this Android OS version (2.2) you can also view Flash content in ...
- 23 agosto 2010
- FLASH CS4/CS5 and Adobe AIR: Application and Windows Menu
- When you write AIR desktop applications you can create menu bars very similar to the OS native menu. In this sample we set a custom Window menu (on Microsoft os) or an application menu (using MAC os) in according with the installed OS. To demostrate how it works I have included an Exit menu item and some basic actions on a movieclip positioned on the Stage. Here the result on my Windows 7: Following the simple document class : package com.fabiobiondi.training.airlevel1.core.menu { import flash.desktop.NativeApplication; import flash.display.MovieClip; import flash.display.NativeMenu; import flash.display.NativeMenuItem; import flash.display.NativeWindow; import flash.events.Event; import flash.events.MouseEvent; /** * ... * @author Fabio ...