Re: [FalconJX]assets copied for js

2017-02-08 Thread Josh Tynjala
In IntelliJ IDEA, the compiler options for a Flash project include an option to "Copy resource files to output folder". You can either choose "all except *.as or *.mxml" or you can specify files "according to resource patterns". This second option looks like it can be based on specific file types a

Re: [FalconJX]assets copied for js

2017-02-08 Thread Alex Harui
On 2/8/17, 9:09 AM, "Josh Tynjala" wrote: >I think Flash Builder will copy any file that is found in the source-path >that isn't a source file (.as or .mxml) and also isn't included with >something like [Embed]. Cool. Makes sense but sounds slow to check for embed usage. Does anybody who has

Re: [FalconJX]assets copied for js

2017-02-08 Thread Josh Tynjala
I think Flash Builder will copy any file that is found in the source-path that isn't a source file (.as or .mxml) and also isn't included with something like [Embed]. - Josh On Wed, Feb 8, 2017 at 8:36 AM, Alex Harui wrote: > > > On 2/8/17, 6:10 AM, "Harbs" wrote: > > >I just made changes for

Re: [FalconJX]assets copied for js

2017-02-08 Thread Christofer Dutz
Well IntelliJ used to read the config for the maven-resource-plugin and use that. But that was that currently only works if I use a Flexmojos project as this is the only type of flex-maven IntelliJ currently understands ☹ Chris Am 08.02.17, 17:36 schrieb "Alex Harui" : On 2/8/17,

Re: [FalconJX]assets copied for js

2017-02-08 Thread Alex Harui
On 2/8/17, 6:10 AM, "Harbs" wrote: >I just made changes for both of these and it seems to work for me. > >Someone please look at my commit to make sure it covers the issue >correctly. Seems ok for now. I'm wondering, though, what the rules are in the IDEs for copying files to the output folde

Re: [FalconJX]assets copied for js

2017-02-08 Thread Harbs
I just made changes for both of these and it seems to work for me. Someone please look at my commit to make sure it covers the issue correctly. > On Feb 8, 2017, at 3:53 PM, Harbs wrote: > > There seems to be two classes which deal with copying files: > MXMLFlexJSPublisher and GoogDepsWriter >

Re: [FalconJX]assets copied for js

2017-02-08 Thread Harbs
There seems to be two classes which deal with copying files: MXMLFlexJSPublisher and GoogDepsWriter Is that right? Do they both need to be changed? > On Feb 8, 2017, at 3:01 PM, Christofer Dutz wrote: > > The problem is that the compiler has a hand-coded set of file types it > handles. Current

Re: [FalconJX]assets copied for js

2017-02-08 Thread Christofer Dutz
The problem is that the compiler has a hand-coded set of file types it handles. Currently this seems to be: - Png - Gif - Jpg - Json It ignores any other file types (even jpeg) … eventually you could give a maven build a try as the maven resource plugin handles the copying of resources and that

[FalconJX]assets copied for js

2017-02-08 Thread Harbs
It looks like Falcon does not recognize svg files as image assets and they are not copied to js-debug and js-release. Can they be added? Harbs