Author Archive
Flash Builder 4 now its Release
by aura_anar on Mar.25, 2010, under Flex, Tutorial Flash
It feels like a long road, but today we’re releasing the final versions of Flash Builder 4 and the Flex 4 SDK. If you were one of the attendees at Flash Camp Boston, you got the final versions on the DVD (but we had to call it a release candidate) so there’s no need to update. For the rest of you, make sure to grab the latest and greatest right now. If you’ve installed previous betas/prerelease versions, you will need to uninstall those before you install the new versions.
I’ve been a Flex developer for a long time, since version 1.5, and I genuinely think this is the most significant release in the history of Flex. We made some huge architectural changes in this version of the SDK. The new skinning model, which separates the logic of a component from the look and feel, is going to let you create some very complex and unique user interfaces. An improved states model along with a much more efficient transitions/effects engine mean that it will be easier to create multi-screen applications with meaningful rich transitions. And arguably the most important thing we did was optimize. The compiler is much faster, which means you’ll be spending less time compiling and more time building (continue reading…)
MP3 Player from Adobe AIR
by aura_anar on Oct.04, 2009, under Flex, Project, Tutorial Flash
Nie kemarin iseng-iseng buat player buat mp3, simple sich, mungkin semua pada bisa ya
, Ni bisa langsung di instal di comp. kalian semua
Untuk download silahkan klik disini, atau ingin langsung instal silahkan di menu sebelah
Thanks ya, klo ada saran atau minta source bisa kasih comment nanti bisa langsung dikirim
Membuat Simple Effect Resize
by aura_anar on Jun.09, 2009, under Tutorial Flash
Nich sekarang mau buat simple effect resize. Hasilnya sich seperti ini:
Create Custom Preloader
by aura_anar on Jun.02, 2009, under Tutorial Flash
Ni sekarang bagaimana cara untuk membuat simple preloader dari Flash untuk di masukkan di Flex. Pertama-tama buka Flash Document anda kemudian buat semacam preloader. Saya buat simple dan hasilnya seperti di bawah ini:
Create HTML text Alert
by aura_anar on May.26, 2009, under Tutorial Flash
Ni kemarin habis googling, maunya sich nampilin link di Alert. Terus setelah nyari sana-sini, akhirnya dapet juga nich dari web aslinya disini, Terus aku ubah dikit sich…hehhe, ni script nya:<?xml version=”1.0″ encoding=”utf-8″?>
<mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml” layout=”absolute”>
<mx:Script>
<![CDATA[
import mx.controls.Alert;
import mx.core.mx_internal;
use namespace mx_internal;
private function handleHTMLTextAlertClick():void
{
var link:String = 'http://detrik.co.cc';
var text:String = "Thanks for coming to my website, <u><a href='" + link + "' target='_blank'>click here </a></u>" + "to view again";
var a:Alert = Alert.show(text, 'Confirmation', Alert.YES | Alert.NO);
a.mx_internal::alertForm.mx_internal::textField.htmlText = text;
}
]]>
</mx:Script>
<mx:Button click=”{handleHTMLTextAlertClick()}” label=”tes”/>
</mx:Application>
Yang penting yaitu use namespace mx_internal; yaitu menggunakan mx_internal.
Contohnya kayak gini :



