lzx

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

你说的曾经没有我的故事 提交于 2019-12-06 10:25:50
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 breakpoints in the generated ActionScript 3 code of my application (the cross-compiled LZX code), and

How to build an OpenLaszlo DHTML application using Apache Ant

拈花ヽ惹草 提交于 2019-11-29 15:56:47
I've read about OpenLaszlo's lzdeploy tool , but there seems to be only little documentation available. It should be possible to build an OpenLaszlo DHTML application using Apache Ant (e.g. as part of an automated build process). How can the lzc and lzdeploy tool be used out of Ant to generate a compiled version of an OpenLaszlo application for the DHTML runtime, including the wrapper page? Here is a full Ant build script which you can use with OpenLaszlo 5.0 (haven't tested with older versions). <?xml version="1.0" encoding="UTF-8"?> <project name="olApp" default="build" basedir=".">

How to build an OpenLaszlo DHTML application using Apache Ant

家住魔仙堡 提交于 2019-11-28 10:04:17
问题 I've read about OpenLaszlo's lzdeploy tool, but there seems to be only little documentation available. It should be possible to build an OpenLaszlo DHTML application using Apache Ant (e.g. as part of an automated build process). How can the lzc and lzdeploy tool be used out of Ant to generate a compiled version of an OpenLaszlo application for the DHTML runtime, including the wrapper page? 回答1: Here is a full Ant build script which you can use with OpenLaszlo 5.0 (haven't tested with older