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
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
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
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,
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
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
>
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
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
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