Adobe Flex

Technology/Adobe Flex 2008. 3. 31. 11:46

Adobe Flex is a collection of technologies released by Adobe Systems for the development and deployment of cross platform, rich Internet applications based on the proprietary Adobe Flash platform. The initial release in March 2004 by Macromedia included a software development kit, an IDE, and a J2EE integration application known as Flex Data Services. Since Adobe acquired Macromedia in 2005, subsequent releases of Flex no longer require a license for Flex Data Services, which has become a separate product rebranded as LiveCycle Data Services.

In April 2007, Adobe announced plans to open source the Flex 3 SDK. Adobe Flash Player, the runtime on which Flex applications are viewed, and Flex Builder, the IDE used to build Flex applications, remain proprietary.

Reference:
http://en.wikipedia.org/wiki/Adobe_Flex

Posted by 알 수 없는 사용자
,

RMI 실행 시 VM arguments 값을 설정해야 한다.

하지만 Executable jar에 VM arguments 값을 어떻게 적용할 것인가?

manifest 파일에서 처리할 수 있다면 best겠지만,

필자는 모르겠다. (안다면 comment 부탁 ㅠㅠ)

다른 방법으로 다음과 같이 소스 코드 내에서 처리할 수 있다.

System.setProperty("java.security.manager", "");
System.setProperty("java.security.policy", "policy/policy");
Posted by 알 수 없는 사용자
,

MainApp.BaseFrame이 JFrame 객체라고 하자.

우선 toFront() 메소드를 고려할 수 있으나,

플랫폼에 따라 원하는대로 동작하지 않을 수 있다.

Windows XP에서 제대로 동작하지 않았다.

      //MainApp.BaseFrame.toFront(); // it doesn't work!
      MainApp.BaseFrame.setExtendedState(JFrame.NORMAL);
      MainApp.BaseFrame.setAlwaysOnTop(true);
      MainApp.BaseFrame.setAlwaysOnTop(false);

위와 같은 꽁수로 어찌어찌 넘어가 본다.
Posted by 알 수 없는 사용자
,