lzx

Disabling the Flash Player default context menu in OpenLaszlo applications

爷,独闯天下 提交于 2020-02-29 03:04:56
问题 When an OpenLaszlo application is deployed using the SWF10/11 runtime, is it possible to completely disable the Flash Player context menu on desktop computers? 回答1: That's only possible starting with Flash Player 11.2. I have done a test run with a modified version of OpenLaszlo based on the flex4.6 branch, adding Flash 11.2+ support to the OpenLaszlo compiler. With the following LZX code I managed to remove the default Flash Player context menu completely: <canvas width="100%" height="800"

Disabling the Flash Player default context menu in OpenLaszlo applications

|▌冷眼眸甩不掉的悲伤 提交于 2020-02-29 03:04:14
问题 When an OpenLaszlo application is deployed using the SWF10/11 runtime, is it possible to completely disable the Flash Player context menu on desktop computers? 回答1: That's only possible starting with Flash Player 11.2. I have done a test run with a modified version of OpenLaszlo based on the flex4.6 branch, adding Flash 11.2+ support to the OpenLaszlo compiler. With the following LZX code I managed to remove the default Flash Player context menu completely: <canvas width="100%" height="800"

Disabling the Flash Player default context menu in OpenLaszlo applications

那年仲夏 提交于 2020-02-29 03:04:10
问题 When an OpenLaszlo application is deployed using the SWF10/11 runtime, is it possible to completely disable the Flash Player context menu on desktop computers? 回答1: That's only possible starting with Flash Player 11.2. I have done a test run with a modified version of OpenLaszlo based on the flex4.6 branch, adding Flash 11.2+ support to the OpenLaszlo compiler. With the following LZX code I managed to remove the default Flash Player context menu completely: <canvas width="100%" height="800"

Disabling the Flash Player default context menu in OpenLaszlo applications

梦想与她 提交于 2020-02-29 03:04:08
问题 When an OpenLaszlo application is deployed using the SWF10/11 runtime, is it possible to completely disable the Flash Player context menu on desktop computers? 回答1: That's only possible starting with Flash Player 11.2. I have done a test run with a modified version of OpenLaszlo based on the flex4.6 branch, adding Flash 11.2+ support to the OpenLaszlo compiler. With the following LZX code I managed to remove the default Flash Player context menu completely: <canvas width="100%" height="800"

Which OpenLaszlo version should I use for new projects and when migrating applications to the latest version in 2012?

戏子无情 提交于 2020-01-02 09:41:19
问题 As a former committer on the OpenLaszlo project, I've been getting a lot of questions regarding the best OpenLaszlo version to be used when migrating applications using either a 3.x version or 4.x version lower than 4.2, or when starting a new project with OpenLaszlo. The difficulty in making this decision is related to the fact that there has not been a minor or major release of OpenLaszlo since October 2010, and that there has been close to zero information by Laszlo on planned releases,

Which OpenLaszlo version should I use for new projects and when migrating applications to the latest version in 2012?

岁酱吖の 提交于 2020-01-02 09:40:31
问题 As a former committer on the OpenLaszlo project, I've been getting a lot of questions regarding the best OpenLaszlo version to be used when migrating applications using either a 3.x version or 4.x version lower than 4.2, or when starting a new project with OpenLaszlo. The difficulty in making this decision is related to the fact that there has not been a minor or major release of OpenLaszlo since October 2010, and that there has been close to zero information by Laszlo on planned releases,

Targeting Flash Player 11.2 - 11.4 APIs with the OpenLaszlo SWF11 runtime

蹲街弑〆低调 提交于 2019-12-11 01:36:54
问题 I've read here that there is an OpenLaszlo version capable of compiling LZX into SWF11 files for Flash Player 11.1. The SDK included with the flex4.6 branch of OpenLaszlo is - as we can tell by the name - Flex SDK 4.6. In another discussion on the Flash context menu in OpenLaszlo it was mentioned that it is possible to target Flash Player APIs higher than 11.1 with the flex4.6 branch of OpenLaszlo. What changes would have to be made the the flex4.6 branch to achieve this? Does that involve

How to generate the ActionScript 3 source code of an OpenLaszlo LZX SWF runtime app

人走茶凉 提交于 2019-12-08 07:35:43
问题 When developing OpenLaszlo applications, it's sometimes useful to generate the ActionScript 3 source code of an application written in lzx, e.g. when you want to compile OpenLaszlo into an Adobe AIR application. What is the simplest way to generate the ActionScript 3 source code into a predefined folder? 回答1: The lzc command line tool which can be found in the $LPS_HOME/WEB-INF/lps/server/bin/ has on option for that: --lzxonly for as3 runtime, emit intermediate as files, but don't call

Debugging OpenLaszlo SWF runtime applications and the Laszlo Foundation Classes (LFC) with Flash Builder

六月ゝ 毕业季﹏ 提交于 2019-12-07 23:40:14
问题 I just learned how to profile OpenLaszlo applications using Flash Builder. The approach mentioned in that discussion means that an OpenLaszlo application is compiled into an SWF file with the debug option enabled for the Flex compiler. The generated SWF file can then be profiled using Flash Builder. It would be much more powerful if we could use the full power of the Flash Builder debugger to debug an OpenLaszlo SWF11 runtime application. I'm specifically looking for a way to be able to set

Disabling the Flash Player default context menu in OpenLaszlo applications

狂风中的少年 提交于 2019-12-06 14:46:18
When an OpenLaszlo application is deployed using the SWF10/11 runtime, is it possible to completely disable the Flash Player context menu on desktop computers? That's only possible starting with Flash Player 11.2. I have done a test run with a modified version of OpenLaszlo based on the flex4.6 branch, adding Flash 11.2+ support to the OpenLaszlo compiler. With the following LZX code I managed to remove the default Flash Player context menu completely: <canvas width="100%" height="800" proxied="false"> <passthrough when="$as3"> import flash.events.MouseEvent; </passthrough> <handler name=