Memory Drive

Computer_IT/FLEX_AIR +27
반응형
반응형

'Computer_IT > FLEX_AIR' 카테고리의 다른 글

[wonderfl] Lightning Effect (as3)  (0) 2015.06.15
[wonderfl] particle 참고 할 샘플  (0) 2015.03.05
Adobe Flash Player Download Link  (0) 2015.01.14
wonderfl - MoviePuzzleTest  (0) 2014.10.31
wonderfl-긴 이미지 붙여서 스크룰  (0) 2014.10.29

반응형




http://wonderfl.net/c/8Z2I



반응형

'Computer_IT > FLEX_AIR' 카테고리의 다른 글

Creative Cloud 직접 다운로드  (0) 2018.04.07
[wonderfl] particle 참고 할 샘플  (0) 2015.03.05
Adobe Flash Player Download Link  (0) 2015.01.14
wonderfl - MoviePuzzleTest  (0) 2014.10.31
wonderfl-긴 이미지 붙여서 스크룰  (0) 2014.10.29

반응형



http://wonderfl.net/c/dcTU



특징

마우스 따라다니는 tail

부셔지는 Particle

Base64텍스트를 Base64ImageLoader 를 이용하여 BitMap화





반응형

'Computer_IT > FLEX_AIR' 카테고리의 다른 글

Creative Cloud 직접 다운로드  (0) 2018.04.07
[wonderfl] Lightning Effect (as3)  (0) 2015.06.15
Adobe Flash Player Download Link  (0) 2015.01.14
wonderfl - MoviePuzzleTest  (0) 2014.10.31
wonderfl-긴 이미지 붙여서 스크룰  (0) 2014.10.29

반응형

Flash Player for Internet Explorer - ActiveX

http://fpdownload.macromedia.com/pub/flashplayer/latest/help/install_flash_player_ax.exe


Flash Player for Firefox - NPAPI

http://fpdownload.macromedia.com/pub/flashplayer/latest/help/install_flash_player.exe


Flash Player for Opera and Chromium-based browsers - PPAPI

http://fpdownload.macromedia.com/pub/flashplayer/latest/help/install_flash_player_ppapi.exe


Windows8 은 해당사항 없음

반응형

'Computer_IT > FLEX_AIR' 카테고리의 다른 글

[wonderfl] Lightning Effect (as3)  (0) 2015.06.15
[wonderfl] particle 참고 할 샘플  (0) 2015.03.05
wonderfl - MoviePuzzleTest  (0) 2014.10.31
wonderfl-긴 이미지 붙여서 스크룰  (0) 2014.10.29
Apache Flex SDK 4.13.0 release  (0) 2014.07.28

반응형
반응형

반응형
반응형

반응형

 

 

Release Note

FLEX-34368 percentWidth for GridColumn

FLEX-34377 Add Chinese translations for all the installers of Flex

FLEX-34376 TreeItemRenderer can in some situations throw an RTE

FLEX-34375 FormItem label doesn't show when formItem visible and

includeInLayout are set FLEX-34353 Focus not going into Flex application when user press

the Shfit + Tab button

FLEX-34347 propagate breakpoint shouldn't throw an NPE when the location is not found

FLEX-34346 BP in mxml inline item renderer shouldn't be consider as Ambiguous

FLEX-34343 Remove the fdbworkers directory before to merge to the develop branch

FLEX-34342 Break and Clear command should accept paths

FLEX-34334 FDB should allow to set / removed breakpoint by default in all existed

and new created instances of a worker

FLEX-34333 print #<number> should be evaluated in the context of the current worker

FLEX-34332 frame should return info in the context of the current worker

FLEX-34324 Operation class improperly builds rest call parameters

FLEX-34315 Building framework 4.12.1 manually does not work due to OSMF uppercase renaming

FLEX-34304 Wrong version of AIR / FP installed

FLEX-34303 Installer licenses refer to wrong product

FLEX-34302 Installer not cleaning up after itself

FLEX-34301 Installer missing javascript directory

FLEX-34300 Installer not installing airsdk.xml

FLEX-34297 FDB set a breakpoint in the wrong file when asked to be set for a file

existing in another Worker

FLEX-34296 Disable and Remove Breakpoint should now respect the Worker logic

FLEX-34295 info breakpoints should now display the worker ID

FLEX-34294 Create a base Class for workers making them debuggable via FDB

FLEX-34292 Can't select another worker while a pending prompt is required

FLEX-34291 Merge the donated FDB with the current one

FLEX-34219 Tooltip displays in a wrong tag

FLEX-34193 Bugs from Spark ColorPicker

FLEX-34131 ResourceManagerImpl bug fix fails

FLEX-34078 mx:DateField and datechange

FLEX-33986 Validator, make "source" property [Bindable]

FLEX-23915 LabelWidth not updating properly in Forms

FLEX-13036 NestLevel never gets set for a control added to a container whilst the

container is not parented if the scrollbars are on

반응형

반응형


문제  :  Nexus 7 4.2 업그레이드된 기기에서는 Adobe Air 를 통해 개발된 게임의 한글이 깨지거나 출력이 안된다.


무턱대로 올린 4.2 버전





adobe Air로 제작된 Flash게임은 FONT 출력이 안된다.




그럼 개발환경에서 직접 테스트를...


대충 만들고...





..뭐지.. 뭐지!!!~

Flex Mobile Project에서 기본적으로 나와야할 한글도 깨짐...



뭐지!!!~




해결할려면 AIR에 FONT EMBEDED 해서 출력...


<?xml version="1.0" encoding="utf-8"?>

<s:TabbedViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009" 

 xmlns:s="library://ns.adobe.com/flex/spark" applicationDPI="160">

<fx:Style>

@namespace s "library://ns.adobe.com/flex/spark";

@font-face {

src: url("NanumGothic.otf");

fontFamily: "NaNumGothic_CFF";

embedAsCFF: true;

}


@font-face {

src: url("NanumGothic.otf");

fontFamily: "NaNumGothic";

embedAsCFF: false;

}

s|Application

{

embedFonts: true; 

fontWeight: normal; 

fontFamily: NaNumGothic;

}

s|ViewNavigator{ 

embedFonts: true; 

fontWeight: normal; 

fontFamily: NaNumGothic; 

}

s|RichText {

embedFonts: true; 

fontWeight: normal; 

fontFamily: NaNumGothic_CFF;

}

</fx:Style>

<s:ViewNavigator label="목록" width="100%" height="100%" firstView="views.ListView" fontFamily="NaNumGothic"/>

<s:ViewNavigator label="보기" width="100%" height="100%" firstView="views.View"/>

<s:ViewNavigator label="설정" width="100%" height="100%" firstView="views.SettingView"/>

<fx:Declarations>

<!-- Place non-visual elements (e.g., services, value objects) here -->

</fx:Declarations>

</s:TabbedViewNavigatorApplication>







반응형

반응형



사용된 소스
반응형

반응형



사용된 파일
반응형

반응형



메모리 모니터링 : https://github.com/mrdoob/Hi-ReS-Stats

사용된 소스 zip

반응형

반응형
반응형

반응형
반응형

반응형
trace('ArrayCollection : ' +  getSize( new ArrayCollection ) );
trace('XMLListCollection : ' +  getSize( new XMLListCollection ) );
trace('String : ' +  getSize( new String ) );
trace('Array : ' +  getSize( new Array ) );
trace('Number : ' +  getSize( new Number ) );
trace('RemoteObject : ' +  getSize( new RemoteObject ) );
trace('Group : ' +  getSize( new Group ) );
trace('VGroup : ' +  getSize( new VGroup ) );
trace('HGroup : ' +  getSize( new HGroup ) );
trace('Button : ' +  getSize( new Button ) );
trace('UIComponent : ' +  getSize( new UIComponent ) );
trace('MovieClip : ' +  getSize( new MovieClip ) );
trace('Sprite : ' +  getSize( new Sprite ) );


ArrayCollection : 60
XMLListCollection : 60
String : 24
RemoteObject : 104
Number : 4
Group : 1224
VGroup : 1224
HGroup : 1224
Button : 1248
반응형

반응형

Error...

VerifyError: Error #1014: Class IIMEClient could not be found.
 at flash.display::MovieClip/nextFrame()
 at mx.managers::SystemManager/deferredNextFrame()[E:\dev\4.x\frameworks\projects\framework\src\mx\managers\SystemManager.as:267]
 at mx.managers::SystemManager/preloader_preloaderDocFrameReadyHandler()[E:\dev\4.x\frameworks\projects\framework\src\mx\managers\SystemManager.as:2460]
 at flash.events::EventDispatcher/dispatchEventFunction()
 at flash.events::EventDispatcher/dispatchEvent()
 at mx.preloaders::Preloader/timerHandler()[E:\dev\4.x\frameworks\projects\framework\src\mx\preloaders\Preloader.as:488]
 at flash.utils::Timer/_timerDispatch()
 at flash.utils::Timer/tick()

오류...


발생되는 원인
Air 1.5 에서 SDK를 1.5SDK -> 2.0이 적용된 2.0SDK 를 적용하면 메세지가 발생된다.


Solution..
AIR 프로젝트 생성시 생성되는 프로젝트명.xml 파일을 열어 보면
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<application xmlns="http://ns.adobe.com/air/application/1.5">

<!-- Adobe AIR Application Descriptor File Template.
.......
의 내용을

<?xml version="1.0" encoding="utf-8" standalone="no"?>
<application xmlns="http://ns.adobe.com/air/application/2.0">

<!-- Adobe AIR Application Descriptor File Template.
...
로 변경하면 2.0 SDK가 적용됨.

반응형

반응형

X좌표 = (전체 윈도우 창 WIDTH/2)-(현재윈도우창 WIDTH /2)
Y좌표 = (전체 윈도우 창 HEIGHT/2)-(현재윈도우창 HEIGHT/2)

in AIR
stage.nativeWindow.x = ( (Screen.mainScreen.bounds.width/2) - (stage.nativeWindow.width / 2 ) );
stage.nativeWindow.y = ( (Screen.mainScreen.bounds.height/2) - (stage.nativeWindow.height /2 ) );

반응형

반응형

FlashBuilder 4 배포판이 2개가 있죠.
하나는 FlashBuilder4 Premium Standalone 과
또다른 하나인 FlashBuilder 4 Plugin (MAC/Windows)

맥에선 Plugin 버전을 받아 갈릴레오(3.5.0)에 정상적으로 설치가 되었으나

본인의 Windows7(64bit)에선 갈릴레오에 FlashBuilder4 Plugin 이 설치중에 진행이 안되는 현상이 발생~

그래서 FlashBuilder 4 StandAlone + JavaDevelopmentTool 추가 하는 방법으로 설치


Help -> Install New Software...선택


Add... 선택



Name : 아무거나 Location : http://download.eclipse.org/releases/galileo 입력


http://download.eclipse.org/releases/galileo

설치할 프로그램 선택JDT(Java Development Tool)Eclipse Java EE DeveoperJST Server Adapter / UI 설치



선택한 패키지들 확인


이후 설치 과정을 거침...

확인차 Windows / OtherViews 에서 추가된 항목 확인



3가지 모두 추가된것을 확인

최종 설치 확인...
반응형

반응형
반응형

반응형

http://beautifl.net/

http://beautifl.net/





http://wonderfl.net

http://wonderfl.net



기타 : wonderfl 아이디는 sarangsai 구글 어카운트... 학습용;;
반응형

반응형

MXML
<mx:VBox  horizontalAlign="center" />


Actionscript
setStyle("horizontalAlign", "center");

가끔 생각이 안남...


MXML
<mx:VBox paddingTop="12" />

Actionscript
.setStyle("paddingTop", 12);.setStyle("paddingBottom", 12);

참고페이지


반응형

반응형
해외
ObjectHandles
official site : http://www.rogue-development.com/objectHandles.html
source : http://code.google.com/p/flex-object-handles/
특징 : 키보드 이동 / 그룹 이동등...

국내
KH Kim's FreeTransformer v1.1
http://blog.naver.com/hh963103?Redirect=Log&logNo=50039801881

반응형

반응형

http://www.beadlefox.com/ 사이트 백업용

Flex와 XMLSocket 괸찮은 예제...

Flex Developer's Journal Sample Code

 

반응형

반응형








기존에 FlexBuilder3 시리얼을 보유한 사용자만 신청가능하며 (EDUCATION) 가능...
https://freeriatools.adobe.com/flashbuilder4beta/ 에서 해당 정보를 입력후 Request Serial Number를 입력하게 되면 FlashBuilder 4 Beta1 과 마찬가지로 Beta2 시리얼 키를 메일로 받아볼수 있다.




완료~~
반응형

반응형

var numItemsInWindow:int = ICollectionView(dataGrid.dataProvider).length - dataGrid.maxVerticalScrollPosition;


출처 : Flex Developer Center http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&productId=2&postId=4741
반응형

'Computer_IT > FLEX_AIR' 카테고리의 다른 글

XMLSocket for Server Push  (0) 2009.10.22
FlashBuilder 4 Beta2 시리얼 받기  (0) 2009.10.14
[AIR] 투명 Windows - Transparent  (0) 2008.10.13
한글 Flash ActionScript 3.0 Reference Document  (0) 2008.08.25
Flash Sample...  (0) 2008.05.20

반응형
<?xml version="1.0" encoding="utf-8"?>
<mx:Window xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="400" height="300"
 systemChrome="none"
 transparent="true"
 resizable="false"
 borderThickness="0"
 backgroundAlpha="0"
 showTitleBar="false"
 showStatusBar="false"
 showGripper="false">
</mx:Window>
반응형

반응형
반응형

'Computer_IT > FLEX_AIR' 카테고리의 다른 글

XMLSocket for Server Push  (0) 2009.10.22
FlashBuilder 4 Beta2 시리얼 받기  (0) 2009.10.14
[FLEX] 현재 창에 출력된 DATAGRID의 행수 구하기  (0) 2008.10.14
[AIR] 투명 Windows - Transparent  (0) 2008.10.13
Flash Sample...  (0) 2008.05.20

반응형
반응형