Brendan Fagan | 2 Sep 2008 22:10
Picon

Tested OL in Google Chrome

Just a couple observations on having tested Google Chrome.

I had been expecting to see a separate Flash plugin process for each of the Flash apps I had running in different tabs from different sites.  Not the case.

I saw just one plugin process for all the Flash movies running in Chrome.

Did anyone share my expectation?

- Brendan
Henry Minsky | 3 Sep 2008 17:56

Re: Tested OL in Google Chrome

One thing that has always intrigued me is that if you run the Flash player in Firefox and Safari at the same time on the same machine, you can communicate between them via the Flash LocalConnection API. So there is some kind of shared memory at least going on there. 



On Tue, Sep 2, 2008 at 4:10 PM, Brendan Fagan <suburbanantihero-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
Just a couple observations on having tested Google Chrome.

I had been expecting to see a separate Flash plugin process for each of the Flash apps I had running in different tabs from different sites.  Not the case.

I saw just one plugin process for all the Flash movies running in Chrome.

Did anyone share my expectation?

- Brendan



--
Henry Minsky
Software Architect
hminsky-oDN+GTs16Eu/3pe1ocb+swC/G2K4zDHf@public.gmane.org


P T Withington | 3 Sep 2008 19:22
Picon
Favicon
Gravatar

Re: Tested OL in Google Chrome

It's nice that Flash takes the heat for hogging memory instead of  
us!  :P

On 2008-09-02, at 16:10EDT, Brendan Fagan wrote:

> Just a couple observations on having tested Google Chrome.
>
> I had been expecting to see a separate Flash plugin process for each  
> of the
> Flash apps I had running in different tabs from different sites.   
> Not the
> case.
>
> I saw just one plugin process for all the Flash movies running in  
> Chrome.
>
> Did anyone share my expectation?
>
> - Brendan
> <chrome-memory.jpg>

Tim Dauer | 4 Sep 2008 14:32
Picon

The ' <at> ' in an edittext...

Hi Laszlo-Users!

I'm experiencing a bug when I try to type the ' <at> ' sign in an edittext 
component. There is showing up a little square in front of the  <at>  - in 
fact this square appears as soon as I hit the "ALT-GR"-Key on my keyboard.
During my search on the internet I fell over a Flash-Player Problem in 
Flash Player Version 6 that sounds alike. You can find that article here 
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16496.

I am currecnty working under Flash Player Version 9,0,124,0. The funny 
thing is, that with a version any lower than mine there is no square.

Does anyone knows anything about this bug? Maybe there is a nice 
workaround? Or do I habe to wait until this issue is fixed by Adobe?

Greets
Tim

Henry Minsky | 4 Sep 2008 15:54

Re: The ' <at> ' in an edittext...

Could you please file a bug in our bug database


with this message, as much information about your system (client OS, browser version, and
LPS version) and ideally a little test application to make sure we have the
ability to reproduce the bug. 




On Thu, Sep 4, 2008 at 8:32 AM, Tim Dauer <tim.dauer-81SHvAbkJquELgA04lAiVw@public.gmane.org> wrote:
Hi Laszlo-Users!

I'm experiencing a bug when I try to type the ' <at> ' sign in an edittext component. There is showing up a little square in front of the <at> - in fact this square appears as soon as I hit the "ALT-GR"-Key on my keyboard.
During my search on the internet I fell over a Flash-Player Problem in Flash Player Version 6 that sounds alike. You can find that article here http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16496.

I am currecnty working under Flash Player Version 9,0,124,0. The funny thing is, that with a version any lower than mine there is no square.

Does anyone knows anything about this bug? Maybe there is a nice workaround? Or do I habe to wait until this issue is fixed by Adobe?

Greets
Tim



--
Henry Minsky
Software Architect
hminsky-oDN+GTs16Eu/3pe1ocb+swC/G2K4zDHf@public.gmane.org


Tim Dauer | 4 Sep 2008 16:49
Picon

Re: The ' <at> ' in an edittext...

Done. You can now find the bug report and a little workaround at

http://www.openlaszlo.org/jira/browse/LPP-6928

Thanks for your time!

Greetings
Tim

Henry Minsky schrieb:
> Could you please file a bug in our bug database
>
> http://www.openlaszlo.org/jira
>
> with this message, as much information about your system (client OS, 
> browser version, and
> LPS version) and ideally a little test application to make sure we 
> have the
> ability to reproduce the bug. 
>
>
>
>
> On Thu, Sep 4, 2008 at 8:32 AM, Tim Dauer <tim.dauer@... 
> <mailto:tim.dauer@...>> wrote:
>
>     Hi Laszlo-Users!
>
>     I'm experiencing a bug when I try to type the ' <at> ' sign in an
>     edittext component. There is showing up a little square in front
>     of the  <at>  - in fact this square appears as soon as I hit the
>     "ALT-GR"-Key on my keyboard.
>     During my search on the internet I fell over a Flash-Player
>     Problem in Flash Player Version 6 that sounds alike. You can find
>     that article here
>     http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16496.
>
>     I am currecnty working under Flash Player Version 9,0,124,0. The
>     funny thing is, that with a version any lower than mine there is
>     no square.
>
>     Does anyone knows anything about this bug? Maybe there is a nice
>     workaround? Or do I habe to wait until this issue is fixed by Adobe?
>
>     Greets
>     Tim
>
>
>
>
> -- 
> Henry Minsky
> Software Architect
> hminsky@... <mailto:hminsky@...>
>
>

César Mendoza | 11 Sep 2008 03:43
Picon

Hi, I'm new on Laszlo

Hi, I'm from Argentina and a beginner into the world of Laszlo. Sorry
for my english :).

--

-- 
Saludos.
César Javier Mendoza.

André Bargull | 13 Sep 2008 11:11

[Laszlo-dev] How do I read the app query args in swf9?

All query arguments are stored in the "parameters"-object of the stage's 
LoaderInfo [1].

---
<canvas debug="true" >
    <handler name="oninit" ><![CDATA[
        var params:Object = LFCApplication.stage.loaderInfo.parameters;
        for (var key:String in params) {
            Debug.write(key, params[key]);
        }
    ]]></handler>
</canvas>
---

[1] 
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/LoaderInfo.html

> Does anyone know what the API is in as3 to access the query args  at runtime
> of the currently running app?
> In swf8, they just appear magically in the runtime as globals. However, in
> swf9, I don't know
> how to write code to access them. Is there a new API for doing this?
>
>
>
>
> -- 
> Henry Minsky
> Software Architect
> hminsky at laszlosystems.com <http://www.openlaszlo.org/mailman/listinfo/laszlo-dev>
>   

Henry Minsky | 13 Sep 2008 14:12

Re: [Laszlo-dev] How do I read the app query args in swf9?

Thanks!!


On Sat, Sep 13, 2008 at 5:11 AM, André Bargull <andre.bargull-KJIyc1CJxjQ@public.gmane.org> wrote:
All query arguments are stored in the "parameters"-object of the stage's LoaderInfo [1].

---
<canvas debug="true" >
  <handler name="oninit" ><![CDATA[
      var params:Object = LFCApplication.stage.loaderInfo.parameters;
      for (var key:String in params) {
          Debug.write(key, params[key]);
      }
  ]]></handler>
</canvas>
---

[1] http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/LoaderInfo.html

Does anyone know what the API is in as3 to access the query args  at runtime
of the currently running app?
In swf8, they just appear magically in the runtime as globals. However, in
swf9, I don't know
how to write code to access them. Is there a new API for doing this?




--
Henry Minsky
Software Architect
hminsky at laszlosystems.com <http://www.openlaszlo.org/mailman/listinfo/laszlo-dev>
 




--
Henry Minsky
Software Architect
hminsky <at> laszlosystems.com


Max Carlson | 17 Sep 2008 17:35
Favicon

Re: [Laszlo-dev] How do I read the app query args in swf9?

The official way to do this in Laszlo is to use LzBrowser.getInitArg('key').

Henry Minsky wrote:
> Thanks!!
> 
> 
> On Sat, Sep 13, 2008 at 5:11 AM, André Bargull <andre.bargull@... 
> <mailto:andre.bargull@...>> wrote:
> 
>     All query arguments are stored in the "parameters"-object of the
>     stage's LoaderInfo [1].
> 
>     ---
>     <canvas debug="true" >
>       <handler name="oninit" ><![CDATA[
>           var params:Object = LFCApplication.stage.loaderInfo.parameters;
>           for (var key:String in params) {
>               Debug.write(key, params[key]);
>           }
>       ]]></handler>
>     </canvas>
>     ---
> 
>     [1]
>     http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/LoaderInfo.html
> 
>         Does anyone know what the API is in as3 to access the query args
>          at runtime
>         of the currently running app?
>         In swf8, they just appear magically in the runtime as globals.
>         However, in
>         swf9, I don't know
>         how to write code to access them. Is there a new API for doing this?
> 
> 
> 
> 
>         -- 
>         Henry Minsky
>         Software Architect
>         hminsky at laszlosystems.com <http://laszlosystems.com>
>         <http://www.openlaszlo.org/mailman/listinfo/laszlo-dev>
>          
> 
> 
> 
> 
> 
> -- 
> Henry Minsky
> Software Architect
> hminsky@... <mailto:hminsky@...>
> 
> 

--

-- 
Regards,
Max Carlson
OpenLaszlo.org


Gmane