Posted by admin in September 23rd, 2010 |
no comment
Great article and easy to understanding looping in ActionScript 3.0. I will be usefull when working on animation, array modification, or some event handling. Check out this link for complete article : http://active.tutsplus.com/tutorials/actionscript/as3-101-loops/
go to permalink....
Posted by admin in July 28th, 2010 |
1 comment
About a week ago I got request to make password field not appearing asterisks (*) but a dot (•). After trying to goggling to find something similar, then I got a good example by Carlos Yanez at ActiveTuts. But still some bugs with his class, where problem on fast typing, using home, left, right arrow, [...]
go to permalink....
Posted by admin in January 4th, 2010 |
no comment
PureMVC is the one of great Framework that we can use to build our applications. Not just for ActionScript, but also can work for java, etc. Here a slide share by Marco Casario about using PureMVC to build ActionScript 3 applications architecture. Enjoy!
Architecting ActionScript 3 applications using PureMVC
View more documents from marcocasario.
go to permalink....
Posted by admin in September 23rd, 2009 |
3 comments
In many case I want flash Images uploader form detect not just filesize or filename, but also can detect Image width and Height. So I can alert user to upload a correct Image size before start uploading. I know we can crop or resize Image with server script processing, but in some reason keep user [...]
go to permalink....
Posted by admin in September 12th, 2009 |
no comment
Robert Penner has develop new approach for AS3 events, inspired by C# events and signals/slots in Qt. This project call Signals. This can be an alternative solutions to manage your Events.
Here are the Concept and Philosophy sections for a start:
The Concept
A Signal is essentially a mini-dispatcher specific to one event, with its [...]
go to permalink....
Posted by admin in November 9th, 2008 |
no comment
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: [...]
go to permalink....
Posted by admin in July 12th, 2008 |
2 comments
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
go to permalink....
Posted by admin in July 2nd, 2008 |
no comment
Introductory AS3, an one day workshop diwujudkan Grant Skinner berupa beberapa slide presentasi yang berisi pengantar Action Script 3.0.
Dengan total slide sebanyak 165 buah presentasi ini membahas banyak hal mulai dari AVM2, migrasi AS2, event handling, regular expresion, hingga Flex & AIR
go to permalink....
Posted by admin in June 21st, 2008 |
no comment
Mau ngetest syntax-hiliter
*update using wp_syntax plugins* :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.janumedia.event
{
import flash.events.Event;
public class MenuViewEvent extends Event
{
public static var ON_MENU_SELECTED:String = "onSelected";
private var _label:String;
[...]
go to permalink....