Re: [FlexJS] Nightly Build Installation Freezes

2015-09-17 Thread Alex Harui
Try right-click and “Enable verbose logging” and post the results. Unfortunately, I have to stop work for the evening. I will look tomorrow. Thanks for your patience, -Alex On 9/17/15, 10:46 PM, "yishayw" wrote: >Hi, > >It freezes right after stating "Finished uncompressing ... 0.5.0-bin.zip"

[FlexJS] Nightly Build Installation Freezes

2015-09-17 Thread yishayw
Hi, It freezes right after stating "Finished uncompressing ... 0.5.0-bin.zip". I cleared all my browser caches just in case. This is the log I copied Installer version 3.2.0 (windows) Using Locale: en_US Fetched the SDK download mirror URL from the CGI. SDK version Apache FlexJS Nightly Build A

Re: IntelliJ IDEA Player session terminated

2015-09-17 Thread Alex Harui
Try FDB from the command line just to see if it will connect. On 9/17/15, 4:31 PM, "Igor Costa" wrote: >Hi there Guys > >Looking at the history of list, stackoverlow. I didn't find anyone with >this problem, besides of not able to connect to Flash player debugger on >Linux. > >My problem is I do

Re: Lists with focusable children problem

2015-09-17 Thread Alex Harui
I did not find a JIRA issue. Go ahead and file one, but don’t hold your breath waiting for it. I still think a single column DG would work as well. I haven’t looked at this attempt at a solution in detail, but by using hasFocusableChildren, you are going down the path of turning the List into a

Re: Lists with focusable children problem

2015-09-17 Thread Chris Velevitch
useVirtualLayout=false does not perform very well for lists over 800. I ended up modifying your focusIn handler to this:- if (event.shiftKey) theList.ensureIndexIsVisible(itemIndex-1) else theList.ensureIndexIsVisible(itemIndex+1); Thanks for your help. @Alex, do you know if there is

IntelliJ IDEA Player session terminated

2015-09-17 Thread Igor Costa
Hi there Guys Looking at the history of list, stackoverlow. I didn't find anyone with this problem, besides of not able to connect to Flash player debugger on Linux. My problem is I do have Flash player debugger on Linux, and works great with simple Hello World problem using IntelliJ IDEA 14.x B

Genymotion?

2015-09-17 Thread Jason Taylor
Hi All, hoping someone else might be able to point me in the right direction. I'm using IntelliJ Idea, Genymotion 2.5, installed the arm translation 1.1, GApps Package running custom tablet with Android 4.4, but have tried many different configurations. Originally couldn't get IntelliJ to eve

Re: [FlexJS] Framework using externs (was: Setup Error)

2015-09-17 Thread Alex Harui
On 9/17/15, 10:05 AM, "Frédéric THOMAS" wrote: > >> Do you still have the missing goog.require problem? > >Yes but I will fix that, the compiler.clients.* used directly does not >create the issue. By commenting out the use of ViewBase from Application.as, I was able to get Application.as to com

Re: [FlexJS] Framework using externs (was: Setup Error)

2015-09-17 Thread Josh Tynjala
I hope to release the first version of my dts2as tool soon. I haven't finished testing it yet. - Josh On Thu, Sep 17, 2015 at 10:05 AM, Frédéric THOMAS wrote: > > So I assume that takes care of the package-level getter/setter issue > > right? There really shouldn’t need to be package level get

RE: [FlexJS] Framework using externs (was: Setup Error)

2015-09-17 Thread Frédéric THOMAS
> So I assume that takes care of the package-level getter/setter issue > right? There really shouldn’t need to be package level getters and > setters if we can create classes like goog.events, which IMO, better > mirrors what is actually happening in JS (where goog and goog.events are > actually o

Re: [FlexJS] Framework using externs (was: Setup Error)

2015-09-17 Thread Alex Harui
On 9/17/15, 9:32 AM, "Frédéric THOMAS" wrote: >> I’m interested to see what you put in GCL.swc. I created a few stubs >>for >> the calls I needed and also changed the compiler so it will allow >> goog.events.fireListener to be a class called goog.events with a >> fireListener member and not fai

RE: [FlexJS] Framework using externs (was: Setup Error)

2015-09-17 Thread Frédéric THOMAS
> > Also, I observed that in HTMLElementWrapper, the element is typed as > > EventTarget, but I think we’ll need to create a class like FlexHTMLElement > > that adds flexjs_wrapper to an HTMLElement. That’s interesting because it > > means we won’t be able to do a straight port if we want more typ

RE: [FlexJS] Framework using externs (was: Setup Error)

2015-09-17 Thread Frédéric THOMAS
> I’m interested to see what you put in GCL.swc. I created a few stubs for > the calls I needed and also changed the compiler so it will allow > goog.events.fireListener to be a class called goog.events with a > fireListener member and not fail by assuming goog.events was a package and > not findi

Re: HTTP Live Streaming

2015-09-17 Thread Jun Heider
Outstanding, great work David :) > On Sep 16, 2015, at 4:32 PM, David Frank wrote: > > Hey Jun, > > It worked!! Thank you very much for your help. > > Simply used the flashls.swc and used the basic/Player.as example to build the > video component. Phew…what a relief!! > > Thanks again! >

Re: Lists with focusable children problem

2015-09-17 Thread Marcus Fritze
Thanks Alex for the suggestion useVirtualLayout=false . I didn’t know that (or I have forgotten this). :-) So I added this to the list and removed the +1 on itemIndex. Chris, be sure you use the correct tabIndex for the TextInput. I changed this from data to itemIndex. I used data in the old ex