openlaszlo

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,

Experiences with OpenLaszlo? [closed]

前提是你 提交于 2020-01-02 01:55:11
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 2 years ago . In a related question, I asked about Web Development. I came across something called OpenLaszlo yesterday and thought it looked interesting for doing some website development. The site has a bunch of good information on it and they've got some nice tutorials and such, but

Is it possible to directly access the div of a view in the OpenLaszlo DHTML runtime?

核能气质少年 提交于 2019-12-22 18:06:03
问题 Is there a public API for accessing the HTML div object of an OpenLaszlo view in the DHTML runtime? There doesn't seem to be an example for that in the OpenLaszlo documentation, but technically it should be possible. 回答1: When the DHTML runtime was created, the OpenLaszlo team decided to hide the implementation details of the HTML div structure from the developer using LZX. While it's not recommended to directly access the underlying object structure of views, there are situations where you

OpenLaszlo kills some mouse events of a loaded Flex application

左心房为你撑大大i 提交于 2019-12-13 12:37:42
问题 This is a question about OpenLaszlo (or rather Flex?) internals: I was able to load a full Flex application swf into a OpenLaszlo (trunk release, older releases failed). It works in Flash 10 as well as in 11. But OpenLaszlo seems to capture or block certain mouse events. When I add the SWF into YFilesSWF.content.sprite (YFilesSWF is extending the window class) then most mouse actions work (e.g. Flex buttons), but some don't (some clickable items on a kindo f canvas). I observed further that

How can I add ActionScript 3 import statements to LZX class definitions with OpenLaszlo 5.0?

别说谁变了你拦得住时间么 提交于 2019-12-11 10:07:59
问题 I'm working on an OpenLaszlo application using the unreleased version of OpenLaszlo 5.0 (trunk). In one of my classes I need to import ActionScript 3 classes. What is the recommended way to add such import statements? 回答1: LZX supports the passthrough tag. The passthrough tag in turn has a when attribute, where you can specify a boolean expression, e.g. $as3 or $swf10: <canvas debug="true"> <class name="foo"> <passthrough when="$as3"> import flash.system.Capabilities; </passthrough> <handler