Ni Nasir, On May 6, Nasir Khan wrote: [snip] > 2. Is there an option to cache these binaries at the client level? Nope. You can't cache the client runtime (LFC) independently of your app, but this is a possibility in the future. It's likely that Laszlo apps compiled for DHTML will have this capability. Also, you can create libraries of code that are downloaded at runtime and will cache independently. http://www.openlaszlo.org/lps-latest/docs/guide/program-structure.html#d0e6606
> 3. My client is Flash 8.5 inside Netscape 7.2 on Windows XP Pro. It > works fine but after a while if I have an Laszlo application running > (idling) in one of the Netscape windows then the Nescape process just > churns i.e. it consumes CPU (>80%). It becomes normal when I close the > Netscape windows which are running Laszlo. The applications are all from > the online tutorials that come with the distribution. Could be a bug in the tutorial code. Problems like these tend to be app bugs. Deployed Laszlo apps like LaszloMail don't do this. > 3. I was playing around with the example - [snip] > <canvas height="300" width="500"> > <window x="20" y="20" width="200" height="250" > title="Simple Window" resizable="true"> > <simplelayout axis="y" spacing="10"/> > <view bgcolor="#bdbdbd" > width="${parent.width}" > height="${this.refButton.height + 8}" > valign="middle"> This view is under control of both the layout and a constraint on its y position (valign="middle") You want to remove the valign attribute. If you just want to make a toolbar, you probably want something more like: <window> <view placement="toolbar"> <simplelayout axis="x" spacing="5"/> <button name="refButton">1</button> <button>2</button> <button>3</button> </view> http://www.openlaszlo.org/lps-latest/docs/reference/node.html#attr-placement A _______________________________________________ Laszlo-dev mailing list Laszlo-dev@openlaszlo.org http://www.openlaszlo.org/mailman/listinfo/laszlo-dev