janumedia.blog();

Improving Flex application performance using the Flash Player cache

Posted by admin in November 17th, 2008 | no comment 
Published in Flex, Resources

It is important to make application as light as it can. First impression is always a great deal. People will leaving if the process take too long and not good for user experience.
The Flash Player cache is a new feature available in Flash Player 9 Update 3 (9,0,115,0). The cache allows files signed by Adobe to be cached by Flash Player. These files end in the file extension .swz.

The Flash Player cache differs from the browser cache in some useful ways. Because the cached SWZ files are signed by Adobe, they can be reused in more than one domain and are not limited to reuse within the domain in which they originated. For example, imagine that framework.swz is loaded from http://www.a.com and is placed in the cache of Flash Player. If the same framework.swz file needs to be downloaded from http://www.b.com, Flash Player looks in its cache to find a.com’s framework.swz file. When it finds a match, it uses the cached file rather than loading a new file from b.com.

The SWZ file persists in the cache even after the browser is closed. The file remains in the cache indefinitely, provided that the end user does not change settings in the Flash Player Settings Manager to reduce their caching ability. However, future SWZ files may eventually cause older, unused SWZ files to cycle out of the cache when the cache size limit is reached.

Fortunately, you need only one copy of a framework, since Flash Player uses a common cache for all browsers on a system. This means that if a user downloads a SWZ file using Microsoft Internet Explorer, that same SWZ file will also be available in Mozilla Firefox.

Read it more at http://www.adobe.com/devnet/flex/articles/flash_player_cache_print.html

100 Awesome Adobe AIR Application for Your Productivity

Posted by admin in November 11th, 2008 | no comment 
Published in AIR

If you a social addict, widget collector, developer, flickr user, etc, you should try this 100 tools / application built with Adobe AIR that can help you to maximizing your productivity.

Mudah Membuat Fastforward & Slowforward Button

Posted by admin in November 9th, 2008 | no comment 
Published in Action Script, Tutorial

Kuncinya adalah fps, nextPage() / prevPage(), & setInterval().
Karena idenya adalah mempercepat maka fps / frame per second / frame rate perlu didefinisikan paling awal. Untuk selanjutnya melakukan looping dengan menggunakan setInterval() sebagai pengganti play() yg menggunakan kecepatan normal (sesuai fps).
Terakhir adalah setting kecepatan. Untuk mempercepat diset interval looping n x fps. Misal utk percepatan 2x: 2 x fps. Sedangkan utk perlambatan fps / n.

Berikut adalah contoh penulisannya:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// di timeline
var IntervalID:Number;
var FPS:Number = 31; // nilainya disesuaikan dengan framerate FLA
var speed:Number = 10;
 
function PlayForward () : Void
{
	nextFrame ();
}
 
// di button fast forward
on("release")
{
	clearInterval(IntervalID);
	IntervalID = setInterval(PlayForward, FPS * speed);
}
 
// di button slow forward
on("release")
{
	clearInterval(IntervalID);
	IntervalID = setInterval(PlayForward, FPS / speed);
}

Google Chrome, a promissing new browser

Posted by admin in September 3rd, 2008 | 6 comments 
Published in Misc

Google Chrome

After announced yesteday, about a few hour ago Google Chrome finally available for download.
This browser faster compare to IE7 or even to Firefox 3.0. Much lighter and really cool for the chrome feels. This is recommended browser and you should try it.

Check out Google Chrome related links bellow:

SWF searchability FAQ

Posted by admin in August 8th, 2008 | no comment 
Published in Flash Platform, SEO

an Official FAQ about SWF and SEO from Adobe can be found here: SWF searchability FAQ

Amazing Music Video, Created with No Cameras, No Lights, Just Data

Posted by admin in July 14th, 2008 | 2 comments 
Published in Music, Video

Radiohead - House of Cards
(Either JavaScript is not active or you are using an old version of Adobe Flash Player. Please install the newest Flash Player.)

The Making of House of Cards Video
(Either JavaScript is not active or you are using an old version of Adobe Flash Player. Please install the newest Flash Player.)

Radiohead new video “House of Cards” totally rocks!. The video created without using cameras, lights, just data. The creators using two technologies to capture 3D images: Geometric Informatics and Velodyne LIDAR.
Checkout the video and how they made it at Google Code

Galuh Goes To School Today

Posted by admin in July 14th, 2008 | no comment 
Published in Misc

Akhirnya hari yg tunggu-tunggu tiba. Galuh memulai sekolahnya di playGroup St. Immaculata hari ini.
Untuk mengurangi bebannya bisa melewati sekolah pertamanya tanpa ditemani orang tuanya terpaksa dia hanya diantar oleh bundannya saja.
Sebagai orang tua dengan anak yg memulai sekolah pertamanya sudah mempersiapkan segala perlengkapannya semenjak semalam, tak lupa pas mau berangkat jeprat-jepret dulu :D

Bayinteractive.Inc Official Site Relaunch

Posted by admin in July 12th, 2008 | 1 comment 
Published in Action Script, Action Script 3.0, Flex, Flex Project, Project

After having a few months delayed, our official site finally relaunched in Flex version.

Technology: Adobe Flex
Role: Action Script 3.0, RemoteObject/Cold Fusion, SWFTracker, Javascript

Diablo 3 Trailer

Posted by admin in July 11th, 2008 | 1 comment 
Published in Games, Video

The Diablo III is one of my most favorites games. Great characters as always Blizzard does. Here a few Diablo 3 interesting trailer:

Diablo 3 Cinematic Trailer
(Either JavaScript is not active or you are using an old version of Adobe Flash Player. Please install the newest Flash Player.)

Diablo 3 Game Trailer part I
(Either JavaScript is not active or you are using an old version of Adobe Flash Player. Please install the newest Flash Player.)

Diablo 3 Game Trailer part II
(Either JavaScript is not active or you are using an old version of Adobe Flash Player. Please install the newest Flash Player.)

Drawing with CSS

Posted by admin in July 10th, 2008 | no comment 
Published in CSS

Drawing with CSS

An interesting show off, drawing with CSS: http://www.romancortes.com/blog/homer-css/

Next Page »