목록Flex General/Guide (20)
Enterprise APP
http://www.testandtry.com/2010/01/18/4-ways-to-automate-flex-gui-testing/ RoutineBot Test Automation Tool Review – Technology does not Matter Interesting tool that will quickly and easily automate any application, the technology does not matter because we look at the pictures. FlexMonkey Flex Test Automation Tool Review Most popular community tool with good visions for the future, uses the Autom..
http://livedocs.adobe.com/flex/3/html/help.html?content=ascomponents_advanced_2.html Simple visual components are subclasses of existing Flex components that modify the appearance of the component by using skins or styles, or add new functionality to the component. For example, you add a new event type to a Button control, or modify the default styles or skins of a DataGrid control. For more inf..
FlexUnit (Adobe Open Source) – conceptually based on famous JUnit Flex 개발자를 위한 자동화된 테스팅 매뉴얼 : Part 1 Flex 개발자를 위한 자동화된 테스팅 매뉴얼 : Part 2 FlexPMD Code Formatter. Tool that helps to improve code quality by auditing any AS3/Flex source directory and detecting common bad practices, such as: Unused code (functions, variables, constants, etc.) Inefficient code (misuse of dynamic filters, heavy construc..
TDD 테스트: app개발에 앞서 사용자 스토리를 만들고 이를 기반으로 코드를 구현해 나아가는 폭포수 개발 방법론 중의 하나. 독립된 클래스 단위의 무결성을 검증하는 unit 테스트와는 달리 app의 기능 수행에 있어 문제점을 검증하는 테스트를 의미한다. Unit 테스트: Unit 테스트를 보통 데이터를 검증하는 정로로 생각하는데 완전한 하나의 기능만 수행하는 클래스(예를 들면 데이터 클래스, 컨트롤러 클래스, 뷰 클래스)들을 각각 테스트하는 방법은 단순한 테이터 검증과는 달리 클래스 자체 기능 수행에 중점을 둔 무결성 테스트를 의미한다. TDD테스트와 달리 app 전체 기능 수행과 관련된 테스트와는 다르다 볼 수 있다. 따라서 XP 개발 방법론에서는 개별적인 Unit 테스트는 의미가 없고 TDD 테스트..
Flex Embedded SWF: LocalConnection Receiver: package 02.{ 03. import flash.net.LocalConnection; 04. import flash.text.TextField; 05. import flash.display.MovieClip; 06. import flash.events.StatusEvent; 07. 08. public class Receiver extends MovieClip 09. { 10. private var mLocalConnection:LocalConnection; 11. 12. public function Receiver() 13. { 14. mLocalConnection=new LocalConnection(); 15. mLo..
Ant basic: http://www.allapplabs.com/ant/ant_basics.htm http://dispatchevent.org/mims/ant-for-flex-part-1/ Ant compiler options : http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_14.html Flex Ant task: http://livedocs.adobe.com/flex/3/html/help.html?content=anttasks_1.html http://74.125.155.132/search?q=cache:0VxWaxVcWlQJ:blog.jidolstar.com/505+flash+builder+4+using+ant&cd=1&hl=..
Image [Embed(source="assets/photo.jpg")] private const PhotoImage:Class; 1. var myPhoto:DisplayObject = DisplayObject(new PhotoImage()); 2. var imgObj:BitmapAsset = new PhotoImage() as BitmapAsset; // Modify the object. imgObj.bitmapData.noise(4); // Write the modified object to the Image control. myImage.source=imgObj; SWF [Embed(source="MenuAssets.swf", symbol="com.partlyhuman.assets.TopMenuIt..
플래시 네임스페이스 정으 및 활용법 설명 http://www.gskinner.com/blog/archives/2010/01/a_complete_guid.html
가장 많이 사용하면서도 간과하기 쉬운 부분을 명쾌하게 정의 Events: http://unitedmindset.com/jonbcampos/2009/08/12/flex-best-practices-events/ MVC: http://unitedmindset.com/jonbcampos/2009/08/18/flex-best-practices-models-views-and-controllers/ Font Embedding: http://unitedmindset.com/jonbcampos/2009/11/24/getting-through-black-magic-font-embedding/ Memory management: http://unitedmindset.com/jonbcampos/2009/10/08/max-pre..
Event listener model in cs3 looks nice it is not same as we were heaving earlier in as2 or till flash 8. Here is an example of using and making your own custom event in as3. This example allow user to load n number of XML file when XML file is loaded then dispatch an event “XMLLoaded” which can be listen by any other class any where. There are two class 1. CustEvent 2. DEvt Here are the definiti..