Re: Minimum amount of files to compile a Flex or FlexJS application

2016-02-26 Thread Alex Harui
On 2/26/16, 12:16 AM, "jude" wrote: >the first one is when you try to connect with a local connection and it >hasn't been closed previously. line 35 of MXMLLiveEditPlugin.as: > >commandconnection.connect("_MXMLLiveEditPluginCommands"); Yep, that's a problem with LocalConnection. A

Re: Minimum amount of files to compile a Flex or FlexJS application

2016-02-26 Thread jude
the first one is when you try to connect with a local connection and it hasn't been closed previously. line 35 of MXMLLiveEditPlugin.as: commandconnection.connect("_MXMLLiveEditPluginCommands"); from what i've read online, even on my own blog, there is no fix but to close all flash in

Re: Minimum amount of files to compile a Flex or FlexJS application

2016-02-25 Thread Alex Harui
On 2/25/16, 7:10 PM, "jude" wrote: >fyi flexjs is awesome. first time running it. but i encountered a couple >of >errors in the demo i'm sure you're already aware of. > >#2082: Connect failed because the object is already connected. >TypeError: Error #1034: Type Coercion failed: cannot convert >

Re: Minimum amount of files to compile a Flex or FlexJS application

2016-02-25 Thread jude
that's pretty slick. i posted a poc of a live mxml renderer here . you can see changes live by setting it to update on change. after you add a few components updating live becomes slow. if we used that falcon code we could apply delta changes. it could be a viab

Re: Minimum amount of files to compile a Flex or FlexJS application

2016-02-14 Thread Alex Harui
On 2/14/16, 10:44 PM, "jude" wrote: >I haven't had a chance to check it out although I'm intrigued. Is it >online >anywhere? I can't quite visualize a quick way to make an online version of this. Original instructions are here [1]. HTH, -Alex [1] http://mail-archives.apache.org/mod_mbox/fle

Re: Minimum amount of files to compile a Flex or FlexJS application

2016-02-14 Thread jude
I haven't had a chance to check it out although I'm intrigued. Is it online anywhere? On Feb 14, 2016 9:29 PM, "Alex Harui" wrote: > > > On 2/14/16, 2:21 PM, "jude" wrote: > > >I meant download size not file count. Without knowing all the issues I'm > >thinking of what it will cost in bandwidth

Re: Minimum amount of files to compile a Flex or FlexJS application

2016-02-14 Thread Alex Harui
On 2/14/16, 2:21 PM, "jude" wrote: >I meant download size not file count. Without knowing all the issues I'm >thinking of what it will cost in bandwidth to bundle the compiler(s). For >example, if I want someone to be able to compile a single page MXML (flex >or flex js) on their desktop, but t

Re: Minimum amount of files to compile a Flex or FlexJS application

2016-02-14 Thread jude
I meant download size not file count. Without knowing all the issues I'm thinking of what it will cost in bandwidth to bundle the compiler(s). For example, if I want someone to be able to compile a single page MXML (flex or flex js) on their desktop, but they don't need anything else but what it ta

Re: Minimum amount of files to compile a Flex or FlexJS application

2016-02-14 Thread Alex Harui
Why do you want to know about files instead of download size? If I break up UIComponent's 13000 lines into 13 files then number of files isn't really a fair metric? -Alex On 2/14/16, 5:59 AM, "jude" wrote: >FlexJS clocks in at about 500MB >Flex 4.15 is at 587MB > >Is all of that needed? > >Wha

Minimum amount of files to compile a Flex or FlexJS application

2016-02-14 Thread jude
FlexJS clocks in at about 500MB Flex 4.15 is at 587MB Is all of that needed? What is the least amount of files needed to compile an Spark and FlexJS Application?