You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flex.apache.org by Carol Frampton <cf...@adobe.com> on 2012/04/04 00:22:52 UTC

update: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Hi,

Since yesterday I've committed to asdocs and bin directories, and I just added the top-level build.xml file, a README that goes with it and a few other Apache required files.  I also updated modules/downloads.xml in my whiteboard area.

You should be able to build if combine the files in
 https://svn.apache.org/repos/asf/incubator/flex/trunk
with the files in my whiteboard area,
https://svn.apache.org/repos/asf/incubator/flex/whiteboard/cframpton/trunk

See the README.

The key thing to be aware of is the thirdparty dependencies are downloaded once and not again until you explicitly clean them.  They don't change often so no need to keep downloading them.  The normal "ant clean" does not delete these files.  You can use "ant super-clean" or "ant thirdparty-clean" to delete them.  See the README.

The build files are a "work in progress" and there will be rough spots.  I've cleaned out some of the crud but there is much more to go.

If you need to fix a build file because something just doesn't work on your platform, then go ahead, but let's save style changes/rewrites to after the parity release.  If you want to improve on or correct the README, go ahead.

I'm a neat-nik and like clean to really be clean but it isn't there yet.  I like to see files generated by the build marked as ignored so they don't show up unversioned when I'm looking at svn status.  Also not there yet.

Carol

Re: Error in build script

Posted by Manik Magar <ma...@gmail.com>.
Thanks, I am able to build it with msysgit - Git For windows
http://code.google.com/p/msysgit/


This might help someone -
1. Download & install -
http://code.google.com/p/msysgit/downloads/detail?name=msysGit-fullinstall-1.7.9-preview20120201.exe
2. after install run {installdir}/msys
3. cd /f/Projects/Flex/ApacheSdk/Trunk
[** My svn code checkout is at that path]
4. type ant and hit enter.
You should be all set.

-- MM




On Tue, Apr 3, 2012 at 11:10 PM, Michael A. Labriola <
labriola@digitalprimates.net> wrote:

> > The offending lines are:
> > <echo file="${FLEX_HOME}/air_unzip.sh">#!/bin/sh
> > tar -xjf "AIR Integration Kit.tbz2"
> > </echo>
> > <exec executable="sh" dir="${FLEX_HOME}"> <arg
> line="${FLEX_HOME}/air_unzip.sh"/>
> > </exec>
>
> >You might be able to get away with expanding the AIR Integration Kit.tbz2
> by hand.
>
> >It has been suggested to use Cygwin or gitbash to compile the SDK on
> windows.
>
> Those particular offending lines should be solved by running this in one
> of these shells. The main windows command line doesn't know how to execute
> the shell script that is being referenced.
>
> Mike
>
>


-- 

धन्यवाद.

माणिक मगर,
------------------------------------------------------------
दरीखोरयातुन नाद घुमूदे एकच दिनराती ....!!
"मी मराठी"..."मी मराठी"...!!!
------------------------------------------------------------

Re: Error in build script

Posted by Carol Frampton <cf...@adobe.com>.

On 4/3/12 11 :10PM, "Michael A. Labriola" <la...@digitalprimates.net>
wrote:

>> The offending lines are:
>> <echo file="${FLEX_HOME}/air_unzip.sh">#!/bin/sh
>> tar -xjf "AIR Integration Kit.tbz2"
>> </echo>
>> <exec executable="sh" dir="${FLEX_HOME}"> <arg
>>line="${FLEX_HOME}/air_unzip.sh"/>
>> </exec>
>
>>You might be able to get away with expanding the AIR Integration
>>Kit.tbz2 by hand.
>
>>It has been suggested to use Cygwin or gitbash to compile the SDK on
>>windows.
>
>Those particular offending lines should be solved by running this in one
>of these shells. The main windows command line doesn't know how to
>execute the shell script that is being referenced.

In fact it is required and always has been which I've always found
annoying.  Just checked the README and that was left out so I will fix it.

Carol


>
>Mike
>


RE: Error in build script

Posted by "Michael A. Labriola" <la...@digitalprimates.net>.
> The offending lines are:
> <echo file="${FLEX_HOME}/air_unzip.sh">#!/bin/sh
> tar -xjf "AIR Integration Kit.tbz2" 
> </echo>
> <exec executable="sh" dir="${FLEX_HOME}"> <arg line="${FLEX_HOME}/air_unzip.sh"/>
> </exec>

>You might be able to get away with expanding the AIR Integration Kit.tbz2 by hand.

>It has been suggested to use Cygwin or gitbash to compile the SDK on windows.

Those particular offending lines should be solved by running this in one of these shells. The main windows command line doesn't know how to execute the shell script that is being referenced.

Mike


Error in build script

Posted by Justin Mclean <ju...@classsoftware.com>.
Hi,

> prepare:
>     [copy] Copying 1 file to F:\Projects\Flex\ApacheSdk\trunk
>     [copy] Copying F:\Projects\Flex\ApacheSdk\trunk\in\air\mac\AIR
> Integration
> Kit.tbz2 to F:\Projects\Flex\ApacheSdk\trunk\AIR Integration Kit.tbz2
> 
> BUILD FAILED

The build scripts are still a work in progress and may be a little broken on windows at the moment.

The offending lines are:
<echo file="${FLEX_HOME}/air_unzip.sh">#!/bin/sh
tar -xjf "AIR Integration Kit.tbz2" 
</echo>
<exec executable="sh" dir="${FLEX_HOME}">
<arg line="${FLEX_HOME}/air_unzip.sh"/>
</exec>

You might be able to get away with expanding the AIR Integration Kit.tbz2 by hand.

It has been suggested to use Cygwin or gitbash to compile the SDK on windows.

Thanks,
Justin

Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Justin Mclean <ju...@classsoftware.com>.
Hi,

Just a note to anyone reading this thread. If you use build_framework.xml instead of build.xml there should be no issues on windows.

Thanks,
Justin

Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Left Right <ol...@gmail.com>.
>
> I was able to build it using msysgit console on windows:)
>
> Well, it's not possible to make it a requirement for everyone else :) You
could actually use less then the whole Git console (I suspect it installs
quite a lot of stuff), you could only use bash + tar (if you alias bash as
sh). But it's better not to give users that kind of a trouble.

Best.

Oleg

Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Manik Magar <ma...@gmail.com>.
Thanks Oleg,

I was able to build it using msysgit console on windows:)

Regards,
Manik Magar

On Apr 4, 2012, at 6:13 AM, Left Right <ol...@gmail.com> wrote:

> Marik Magar:
> 
> find these lines:
> 
> <echo file="${FLEX_HOME}/air_unzip.sh">#!/bin/sh
> tar -xjf "AIR Integration Kit.tbz2"
> </echo>
> <exec executable="sh" dir="${FLEX_HOME}">
> <arg line="${FLEX_HOME}/air_unzip.sh"/>
> </exec>
> 
> In the build could you try changing it to something like
> <untar src="${FLEX_HOME}/AIR Integration Kit.tbz2" compression="gzip"/>
> I might not have it all right b/c I don't know if gzip caters for bz
> archives, but you get the idea. Worst case: remove these lines altogether,
> extract the archive with whatever extractor you use and place the results
> in the $FLEX_HOME before the script runs.
> 
> On Tue, Apr 3, 2012 at 10:42 PM, Manik Magar <ma...@gmail.com> wrote:
> 
>> Am i still missing anything? downloads completed and while building it
>> failed. I am windows 7, why it is looking for sh??
>> 
>> 
>> prepare:
>>    [copy] Copying 1 file to F:\Projects\Flex\ApacheSdk\trunk
>>    [copy] Copying F:\Projects\Flex\ApacheSdk\trunk\in\air\mac\AIR
>> Integration
>> Kit.tbz2 to F:\Projects\Flex\ApacheSdk\trunk\AIR Integration Kit.tbz2
>> 
>> BUILD FAILED
>> F:\Projects\Flex\ApacheSdk\trunk\build.xml:222: The following error
>> occurred wh
>> le executing this line:
>> F:\Projects\Flex\ApacheSdk\trunk\frameworks\build.xml:230: Execute failed:
>> java
>> io.IOException: Cannot run program "sh": CreateProcess error=2, The system
>> cann
>> t find the file specified
>>       at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)
>>       at java.lang.Runtime.exec(Runtime.java:593)
>>       at
>> org.apache.tools.ant.taskdefs.Execute$Java13CommandLauncher.exec(Exe
>> ute.java:862)
>>       at org.apache.tools.ant.taskdefs.Execute.launch(Execute.java:481)
>>       at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:495)
>>       at
>> org.apache.tools.ant.taskdefs.ExecTask.runExecute(ExecTask.java:631)
>>       at org.apache.tools.ant.taskdefs.ExecTask.runExec(ExecTask.java:672)
>>       at org.apache.tools.ant.taskdefs.ExecTask.execute(ExecTask.java:498)
>>       at
>> org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
>> 
>> 
>> 
>> On Tue, Apr 3, 2012 at 10:33 PM, Justin Mclean <justin@classsoftware.com
>>> wrote:
>> 
>>> Hi,
>>> 
>>>> Where did you get your textLayout sources?  It should have come from
>>> in/downloads/textLayout_build/src.
>>> 
>>> A "thirdparty-clean" followed by "thirdparty-download" in the frameworks
>>> directory fixed the issue. I must of had the wrong version of the text
>>> layout framework.
>>> 
>>> Thanks,
>>> Justin
>> 
>> 
>> 
>> 
>> --
>> 
>> धन्यवाद.
>> 
>> माणिक मगर,
>> ------------------------------------------------------------
>> दरीखोरयातुन नाद घुमूदे एकच दिनराती ....!!
>> "मी मराठी"..."मी मराठी"...!!!
>> ------------------------------------------------------------
>> 

Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Left Right <ol...@gmail.com>.
https://issues.apache.org/jira/browse/FLEX-38
I've attached patch, which should (hopefully) solve the issue for Windows.

Best.

Oleg

Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Left Right <ol...@gmail.com>.
> Getting:
http://fpdownload.macromedia.com/pub/flashplayer/updaters/11/flashplayer_11_sa_debug.i386.tar.gz
Hi, I just realized that the build downloads flashplayer standalone
debugger for Linux. I have two questions about it:
- Wouldn't it be better to make it a separate _installation_. Well, in hope
that some day the SDK would be installable as an RPM/Deb package, it would
be really nice.
- People usually have already some flashplayer installed, when they are
downloading the SDK. There isn't one single common practice of how to call
it and where to put it - because Adobe never provided a normal installer,
but I would imagine that most of us would put it into something like
/usr/bin/flashplayer i.e. it would be available on command line as
"flashplayer" and command -v flashplayer would return it's location. Even
though there isn't a tradition of placing this file anywhere, it could be,
potentially, a good practice to ask / expect users to put it into some
place we can account for later (well, most programs do it...).

Now, the player isn't required for the build. It's nice to have it, but the
build would work w/o it too.

Last thing: it's a 32-bit executable, wasn't there a 64-bit? Just asking,
not sure. Besides, this, afaik is the last standalone version for Linux
(it's way behind the one for Win/Mac), and it might not be compatible / it
won't surely be compatible very shortly, because no new version will
exist... So, idk, I'd rather it be optional download (on Linux).

Best.

Oleg

Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Left Right <ol...@gmail.com>.
Marik Magar:

find these lines:

<echo file="${FLEX_HOME}/air_unzip.sh">#!/bin/sh
tar -xjf "AIR Integration Kit.tbz2"
</echo>
<exec executable="sh" dir="${FLEX_HOME}">
<arg line="${FLEX_HOME}/air_unzip.sh"/>
</exec>

In the build could you try changing it to something like
<untar src="${FLEX_HOME}/AIR Integration Kit.tbz2" compression="gzip"/>
I might not have it all right b/c I don't know if gzip caters for bz
archives, but you get the idea. Worst case: remove these lines altogether,
extract the archive with whatever extractor you use and place the results
in the $FLEX_HOME before the script runs.

On Tue, Apr 3, 2012 at 10:42 PM, Manik Magar <ma...@gmail.com> wrote:

> Am i still missing anything? downloads completed and while building it
> failed. I am windows 7, why it is looking for sh??
>
>
> prepare:
>     [copy] Copying 1 file to F:\Projects\Flex\ApacheSdk\trunk
>     [copy] Copying F:\Projects\Flex\ApacheSdk\trunk\in\air\mac\AIR
> Integration
> Kit.tbz2 to F:\Projects\Flex\ApacheSdk\trunk\AIR Integration Kit.tbz2
>
> BUILD FAILED
> F:\Projects\Flex\ApacheSdk\trunk\build.xml:222: The following error
> occurred wh
> le executing this line:
> F:\Projects\Flex\ApacheSdk\trunk\frameworks\build.xml:230: Execute failed:
> java
> io.IOException: Cannot run program "sh": CreateProcess error=2, The system
> cann
> t find the file specified
>        at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)
>        at java.lang.Runtime.exec(Runtime.java:593)
>        at
> org.apache.tools.ant.taskdefs.Execute$Java13CommandLauncher.exec(Exe
> ute.java:862)
>        at org.apache.tools.ant.taskdefs.Execute.launch(Execute.java:481)
>        at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:495)
>        at
> org.apache.tools.ant.taskdefs.ExecTask.runExecute(ExecTask.java:631)
>        at org.apache.tools.ant.taskdefs.ExecTask.runExec(ExecTask.java:672)
>        at org.apache.tools.ant.taskdefs.ExecTask.execute(ExecTask.java:498)
>        at
> org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
>
>
>
> On Tue, Apr 3, 2012 at 10:33 PM, Justin Mclean <justin@classsoftware.com
> >wrote:
>
> > Hi,
> >
> > >  Where did you get your textLayout sources?  It should have come from
> > in/downloads/textLayout_build/src.
> >
> > A "thirdparty-clean" followed by "thirdparty-download" in the frameworks
> > directory fixed the issue. I must of had the wrong version of the text
> > layout framework.
> >
> > Thanks,
> > Justin
>
>
>
>
> --
>
> धन्यवाद.
>
> माणिक मगर,
> ------------------------------------------------------------
> दरीखोरयातुन नाद घुमूदे एकच दिनराती ....!!
> "मी मराठी"..."मी मराठी"...!!!
> ------------------------------------------------------------
>

Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Manik Magar <ma...@gmail.com>.
Am i still missing anything? downloads completed and while building it
failed. I am windows 7, why it is looking for sh??


prepare:
     [copy] Copying 1 file to F:\Projects\Flex\ApacheSdk\trunk
     [copy] Copying F:\Projects\Flex\ApacheSdk\trunk\in\air\mac\AIR
Integration
Kit.tbz2 to F:\Projects\Flex\ApacheSdk\trunk\AIR Integration Kit.tbz2

BUILD FAILED
F:\Projects\Flex\ApacheSdk\trunk\build.xml:222: The following error
occurred wh
le executing this line:
F:\Projects\Flex\ApacheSdk\trunk\frameworks\build.xml:230: Execute failed:
java
io.IOException: Cannot run program "sh": CreateProcess error=2, The system
cann
t find the file specified
        at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)
        at java.lang.Runtime.exec(Runtime.java:593)
        at
org.apache.tools.ant.taskdefs.Execute$Java13CommandLauncher.exec(Exe
ute.java:862)
        at org.apache.tools.ant.taskdefs.Execute.launch(Execute.java:481)
        at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:495)
        at
org.apache.tools.ant.taskdefs.ExecTask.runExecute(ExecTask.java:631)
        at org.apache.tools.ant.taskdefs.ExecTask.runExec(ExecTask.java:672)
        at org.apache.tools.ant.taskdefs.ExecTask.execute(ExecTask.java:498)
        at
org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)



On Tue, Apr 3, 2012 at 10:33 PM, Justin Mclean <ju...@classsoftware.com>wrote:

> Hi,
>
> >  Where did you get your textLayout sources?  It should have come from
> in/downloads/textLayout_build/src.
>
> A "thirdparty-clean" followed by "thirdparty-download" in the frameworks
> directory fixed the issue. I must of had the wrong version of the text
> layout framework.
>
> Thanks,
> Justin




-- 

धन्यवाद.

माणिक मगर,
------------------------------------------------------------
दरीखोरयातुन नाद घुमूदे एकच दिनराती ....!!
"मी मराठी"..."मी मराठी"...!!!
------------------------------------------------------------

Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Justin Mclean <ju...@classsoftware.com>.
Hi,

>  Where did you get your textLayout sources?  It should have come from in/downloads/textLayout_build/src.

A "thirdparty-clean" followed by "thirdparty-download" in the frameworks directory fixed the issue. I must of had the wrong version of the text layout framework.

Thanks,
Justin

Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Justin Mclean <ju...@classsoftware.com>.
Hi,

> Where did you get your textLayout sources?  It should have come from in/downloads/textLayout_build/src.

From the Open Source SDK I think - that might be the issue.

Thanks,
Justin

Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Manik Magar <ma...@gmail.com>.
Nevermind. Ant-contrib was missing in my ANT. I downloaded latest
ant-contrib and it has ant-contrib-1.0b3.jar and download.xml refers to
ant-contrib-1.0b2.jar. So modified download.xml and it's running now :)

-- MM

On Tue, Apr 3, 2012 at 10:04 PM, Manik Magar <ma...@gmail.com> wrote:

> I merged Carol's whiteboard/trunk code with trunk and tried to build -
> Buildfile: F:\Projects\Flex\ApacheSdk\trunk\build.xml
>
> create-description:
>
> flashplayer-check:
>
> flashplayer-mac-download:
>
> flashplayer-win-download:
>
> flashplayer-lnx-download:
>
> flashplayer-download:
>
> thirdparty-downloads:
>
> downloads:
>   [taskdef] Could not load definitions from resource
> net/sf/antcontrib/antcontrib.properties. It could not be found.
>
> batik-sources-check:
>
> batik-sources:
>       [get] Getting:
> http://archive.apache.org/dist/xmlgraphics/batik/batik-src-1.6.zip
>       [get] To:
> F:\Projects\Flex\ApacheSdk\trunk\in\downloads\batik-src-1.6.zip
>
>
>
> BUILD FAILED
> F:\Projects\Flex\ApacheSdk\trunk\build.xml:122: The following error
> occurred while executing this line:
> F:\Projects\Flex\ApacheSdk\trunk\modules\build.xml:61: The following error
> occurred while executing this line:
> F:\Projects\Flex\ApacheSdk\trunk\modules\downloads.xml:246: The following
> error occurred while executing this line:
> F:\Projects\Flex\ApacheSdk\trunk\modules\downloads.xml:160: Problem:
> failed to create task or type if
> Cause: The name is undefined.
> Action: Check the spelling.
> Action: Check that any custom tasks/types have been declared.
> Action: Check that any <presetdef>/<macrodef> declarations have taken
> place.
>
>
>
>
>
> On Tue, Apr 3, 2012 at 9:53 PM, Omar Gonzalez <om...@gmail.com>wrote:
>
>> Hah, I paused for a second and thought, she won't use Windows if she can
>> help it and doesn't know anything about OSX... can't be on Linux right?
>> Hehe...
>>
>> -omar
>>
>> On Tuesday, April 3, 2012, Carol Frampton wrote:
>>
>> >
>> >
>> > On 4/3/12 8 :53PM, "Carol Frampton" <cframpto@adobe.com <javascript:;>>
>> > wrote:
>> >
>> > >Justin,
>> > >
>> > >You're on your own with OSX.
>> >
>> > Totally ignore what I said about OSX.  I use a Mac too.  Don't know
>> what I
>> > was thinking.
>> >
>> > Carol
>> >
>> >
>> >
>> > > I did look at ParagraphElement.as on my
>> > >system.  It doesn't even have 860 lines and there are no instances of
>> > >_interactiveChildrenCount in the file.  Where did you get your
>> textLayout
>> > >sources?  It should have come from in/downloads/textLayout_build/src.
>> > >
>> > >Carol
>> > >
>> > >
>> > >On 4/3/12 8 :12PM, "Justin Mclean" <ju...@classsoftware.com> wrote:
>> > >
>> > >>Hi,
>> > >>
>> > >>I'm getting an error when run the build script in asdocs (on OSX if
>> that
>> > >>helps).
>> > >>
>> > >>    [asdoc] Loading configuration file
>> > >>/Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
>> > >>Flex/frameworks/flex-config.xml
>> > >>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder
>> 4.6/Apache
>> >
>> >>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
>> > >>a
>> > >>phElement.as(92): col: 11 Error: Ambiguous reference to
>> > >>_interactiveChildrenCount.
>> > >>    [asdoc]                   return _interactiveChildrenCount;
>> > >>    [asdoc]                          ^
>> > >>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder
>> 4.6/Apache
>> >
>> >>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
>> > >>a
>> > >>phElement.as(860): col: 7 Error: Ambiguous reference to
>> > >>_interactiveChildrenCount.
>> > >>    [asdoc]                   ++ _interactiveChildrenCount ;
>> > >>    [asdoc]                      ^
>> > >>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder
>> 4.6/Apache
>> >
>> >>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
>> > >>a
>> > >>phElement.as(864): col: 7 Error: Ambiguous reference to
>> > >>_interactiveChildrenCount.
>> > >>    [asdoc]                   -- _interactiveChildrenCount ;
>> > >>    [asdoc]                      ^
>> > >>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder
>> 4.6/Apache
>> >
>> >>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
>> > >>a
>> > >>phElement.as(869): col: 11 Error: Ambiguous reference to
>> > >>_interactiveChildrenCount.
>> > >>    [asdoc]                   return _interactiveChildrenCount != 0 ;
>> > >>    [asdoc]                          ^
>> > >>
>> > >>
>> > >>Anyone else having this issue or is it just something I've managed to
>> > >>stuff up?
>> > >>
>> > >>Changing it like so to ignore textLayout like so "fixes" the issue.
>> > >>### Eclipse Workspace Patch 1.0
>> > >>#P Apache Flex
>> > >>Index: asdoc/build.xml
>> > >>===================================================================
>> > >>--- asdoc/build.xml   (revision 1309184)
>> > >>+++ asdoc/build.xml   (working copy)
>> > >>@@ -56,10 +56,12 @@
>> > >>                  <doc-classes class="RPCClasses"/>
>> > >>                  <doc-classes class="MobileComponentsClasses"/>
>> > >>                  <doc-classes class="SparkDmvClasses"/>
>> > >>-
>> > >>+
>> > >>+             <!--
>> > >>                      <doc-classes
>> > class="flashx.textLayout.CoreClasses"/>
>> > >>                      <doc-classes
>> > class="flashx.textLayout.EditClasses"/>
>> > >>                      <doc-classes
>> > class="flashx.textLayout.ConversionClasses"/>
>> > >>+                     -->
>> > >>
>> > >>                      <!-- source path for asdoc --
>>
>
>
>
> --
>
> धन्यवाद.
>
> माणिक मगर,
> ------------------------------------------------------------
> दरीखोरयातुन नाद घुमूदे एकच दिनराती ....!!
> "मी मराठी"..."मी मराठी"...!!!
> ------------------------------------------------------------
>
>

Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Manik Magar <ma...@gmail.com>.
Thanks Justin, I figured that out and I get Jar from -
http://sourceforge.net/projects/ant-contrib/files/latest/download?source=files

It has ant-contrib-1.0b3 version.

-- MM



On Tue, Apr 3, 2012 at 10:26 PM, Justin Mclean <ju...@classsoftware.com>wrote:

> Hi,
>
> > downloads:
> >  [taskdef] Could not load definitions from resource
> > net/sf/antcontrib/antcontrib.properties. It could not be found.
>
> You currently need to download and install ant contrib library for this
> build script to work.
>
> It can be found here:
>
> http://sourceforge.net/projects/ant-contrib/files/ant-contrib/ant-contrib-1.0b2/
>
> Thanks,
> Justin
>
>


-- 

धन्यवाद.

माणिक मगर,
------------------------------------------------------------
दरीखोरयातुन नाद घुमूदे एकच दिनराती ....!!
"मी मराठी"..."मी मराठी"...!!!
------------------------------------------------------------

Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Justin Mclean <ju...@classsoftware.com>.
Hi,

> downloads:
>  [taskdef] Could not load definitions from resource
> net/sf/antcontrib/antcontrib.properties. It could not be found.

You currently need to download and install ant contrib library for this build script to work.

It can be found here:
http://sourceforge.net/projects/ant-contrib/files/ant-contrib/ant-contrib-1.0b2/

Thanks,
Justin


Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Manik Magar <ma...@gmail.com>.
I merged Carol's whiteboard/trunk code with trunk and tried to build -
Buildfile: F:\Projects\Flex\ApacheSdk\trunk\build.xml

create-description:

flashplayer-check:

flashplayer-mac-download:

flashplayer-win-download:

flashplayer-lnx-download:

flashplayer-download:

thirdparty-downloads:

downloads:
  [taskdef] Could not load definitions from resource
net/sf/antcontrib/antcontrib.properties. It could not be found.

batik-sources-check:

batik-sources:
      [get] Getting:
http://archive.apache.org/dist/xmlgraphics/batik/batik-src-1.6.zip
      [get] To:
F:\Projects\Flex\ApacheSdk\trunk\in\downloads\batik-src-1.6.zip



BUILD FAILED
F:\Projects\Flex\ApacheSdk\trunk\build.xml:122: The following error
occurred while executing this line:
F:\Projects\Flex\ApacheSdk\trunk\modules\build.xml:61: The following error
occurred while executing this line:
F:\Projects\Flex\ApacheSdk\trunk\modules\downloads.xml:246: The following
error occurred while executing this line:
F:\Projects\Flex\ApacheSdk\trunk\modules\downloads.xml:160: Problem: failed
to create task or type if
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any <presetdef>/<macrodef> declarations have taken place.




On Tue, Apr 3, 2012 at 9:53 PM, Omar Gonzalez <om...@gmail.com>wrote:

> Hah, I paused for a second and thought, she won't use Windows if she can
> help it and doesn't know anything about OSX... can't be on Linux right?
> Hehe...
>
> -omar
>
> On Tuesday, April 3, 2012, Carol Frampton wrote:
>
> >
> >
> > On 4/3/12 8 :53PM, "Carol Frampton" <cframpto@adobe.com <javascript:;>>
> > wrote:
> >
> > >Justin,
> > >
> > >You're on your own with OSX.
> >
> > Totally ignore what I said about OSX.  I use a Mac too.  Don't know what
> I
> > was thinking.
> >
> > Carol
> >
> >
> >
> > > I did look at ParagraphElement.as on my
> > >system.  It doesn't even have 860 lines and there are no instances of
> > >_interactiveChildrenCount in the file.  Where did you get your
> textLayout
> > >sources?  It should have come from in/downloads/textLayout_build/src.
> > >
> > >Carol
> > >
> > >
> > >On 4/3/12 8 :12PM, "Justin Mclean" <ju...@classsoftware.com> wrote:
> > >
> > >>Hi,
> > >>
> > >>I'm getting an error when run the build script in asdocs (on OSX if
> that
> > >>helps).
> > >>
> > >>    [asdoc] Loading configuration file
> > >>/Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
> > >>Flex/frameworks/flex-config.xml
> > >>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder
> 4.6/Apache
> >
> >>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
> > >>a
> > >>phElement.as(92): col: 11 Error: Ambiguous reference to
> > >>_interactiveChildrenCount.
> > >>    [asdoc]                   return _interactiveChildrenCount;
> > >>    [asdoc]                          ^
> > >>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder
> 4.6/Apache
> >
> >>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
> > >>a
> > >>phElement.as(860): col: 7 Error: Ambiguous reference to
> > >>_interactiveChildrenCount.
> > >>    [asdoc]                   ++ _interactiveChildrenCount ;
> > >>    [asdoc]                      ^
> > >>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder
> 4.6/Apache
> >
> >>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
> > >>a
> > >>phElement.as(864): col: 7 Error: Ambiguous reference to
> > >>_interactiveChildrenCount.
> > >>    [asdoc]                   -- _interactiveChildrenCount ;
> > >>    [asdoc]                      ^
> > >>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder
> 4.6/Apache
> >
> >>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
> > >>a
> > >>phElement.as(869): col: 11 Error: Ambiguous reference to
> > >>_interactiveChildrenCount.
> > >>    [asdoc]                   return _interactiveChildrenCount != 0 ;
> > >>    [asdoc]                          ^
> > >>
> > >>
> > >>Anyone else having this issue or is it just something I've managed to
> > >>stuff up?
> > >>
> > >>Changing it like so to ignore textLayout like so "fixes" the issue.
> > >>### Eclipse Workspace Patch 1.0
> > >>#P Apache Flex
> > >>Index: asdoc/build.xml
> > >>===================================================================
> > >>--- asdoc/build.xml   (revision 1309184)
> > >>+++ asdoc/build.xml   (working copy)
> > >>@@ -56,10 +56,12 @@
> > >>                  <doc-classes class="RPCClasses"/>
> > >>                  <doc-classes class="MobileComponentsClasses"/>
> > >>                  <doc-classes class="SparkDmvClasses"/>
> > >>-
> > >>+
> > >>+             <!--
> > >>                      <doc-classes
> > class="flashx.textLayout.CoreClasses"/>
> > >>                      <doc-classes
> > class="flashx.textLayout.EditClasses"/>
> > >>                      <doc-classes
> > class="flashx.textLayout.ConversionClasses"/>
> > >>+                     -->
> > >>
> > >>                      <!-- source path for asdoc --
>



-- 

धन्यवाद.

माणिक मगर,
------------------------------------------------------------
दरीखोरयातुन नाद घुमूदे एकच दिनराती ....!!
"मी मराठी"..."मी मराठी"...!!!
------------------------------------------------------------

Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Omar Gonzalez <om...@gmail.com>.
Hah, I paused for a second and thought, she won't use Windows if she can
help it and doesn't know anything about OSX... can't be on Linux right?
Hehe...

-omar

On Tuesday, April 3, 2012, Carol Frampton wrote:

>
>
> On 4/3/12 8 :53PM, "Carol Frampton" <cframpto@adobe.com <javascript:;>>
> wrote:
>
> >Justin,
> >
> >You're on your own with OSX.
>
> Totally ignore what I said about OSX.  I use a Mac too.  Don't know what I
> was thinking.
>
> Carol
>
>
>
> > I did look at ParagraphElement.as on my
> >system.  It doesn't even have 860 lines and there are no instances of
> >_interactiveChildrenCount in the file.  Where did you get your textLayout
> >sources?  It should have come from in/downloads/textLayout_build/src.
> >
> >Carol
> >
> >
> >On 4/3/12 8 :12PM, "Justin Mclean" <ju...@classsoftware.com> wrote:
> >
> >>Hi,
> >>
> >>I'm getting an error when run the build script in asdocs (on OSX if that
> >>helps).
> >>
> >>    [asdoc] Loading configuration file
> >>/Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
> >>Flex/frameworks/flex-config.xml
> >>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
> >>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
> >>a
> >>phElement.as(92): col: 11 Error: Ambiguous reference to
> >>_interactiveChildrenCount.
> >>    [asdoc]                   return _interactiveChildrenCount;
> >>    [asdoc]                          ^
> >>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
> >>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
> >>a
> >>phElement.as(860): col: 7 Error: Ambiguous reference to
> >>_interactiveChildrenCount.
> >>    [asdoc]                   ++ _interactiveChildrenCount ;
> >>    [asdoc]                      ^
> >>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
> >>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
> >>a
> >>phElement.as(864): col: 7 Error: Ambiguous reference to
> >>_interactiveChildrenCount.
> >>    [asdoc]                   -- _interactiveChildrenCount ;
> >>    [asdoc]                      ^
> >>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
> >>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
> >>a
> >>phElement.as(869): col: 11 Error: Ambiguous reference to
> >>_interactiveChildrenCount.
> >>    [asdoc]                   return _interactiveChildrenCount != 0 ;
> >>    [asdoc]                          ^
> >>
> >>
> >>Anyone else having this issue or is it just something I've managed to
> >>stuff up?
> >>
> >>Changing it like so to ignore textLayout like so "fixes" the issue.
> >>### Eclipse Workspace Patch 1.0
> >>#P Apache Flex
> >>Index: asdoc/build.xml
> >>===================================================================
> >>--- asdoc/build.xml   (revision 1309184)
> >>+++ asdoc/build.xml   (working copy)
> >>@@ -56,10 +56,12 @@
> >>                  <doc-classes class="RPCClasses"/>
> >>                  <doc-classes class="MobileComponentsClasses"/>
> >>                  <doc-classes class="SparkDmvClasses"/>
> >>-
> >>+
> >>+             <!--
> >>                      <doc-classes
> class="flashx.textLayout.CoreClasses"/>
> >>                      <doc-classes
> class="flashx.textLayout.EditClasses"/>
> >>                      <doc-classes
> class="flashx.textLayout.ConversionClasses"/>
> >>+                     -->
> >>
> >>                      <!-- source path for asdoc --

Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Carol Frampton <cf...@adobe.com>.

On 4/3/12 8 :53PM, "Carol Frampton" <cf...@adobe.com> wrote:

>Justin,
>
>You're on your own with OSX.

Totally ignore what I said about OSX.  I use a Mac too.  Don't know what I
was thinking.

Carol



> I did look at ParagraphElement.as on my
>system.  It doesn't even have 860 lines and there are no instances of
>_interactiveChildrenCount in the file.  Where did you get your textLayout
>sources?  It should have come from in/downloads/textLayout_build/src.
>
>Carol
>
>
>On 4/3/12 8 :12PM, "Justin Mclean" <ju...@classsoftware.com> wrote:
>
>>Hi,
>>
>>I'm getting an error when run the build script in asdocs (on OSX if that
>>helps).
>>
>>    [asdoc] Loading configuration file
>>/Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
>>Flex/frameworks/flex-config.xml
>>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
>>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
>>a
>>phElement.as(92): col: 11 Error: Ambiguous reference to
>>_interactiveChildrenCount.
>>    [asdoc] 			return _interactiveChildrenCount;
>>    [asdoc] 			       ^
>>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
>>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
>>a
>>phElement.as(860): col: 7 Error: Ambiguous reference to
>>_interactiveChildrenCount.
>>    [asdoc] 			++ _interactiveChildrenCount ;
>>    [asdoc] 			   ^
>>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
>>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
>>a
>>phElement.as(864): col: 7 Error: Ambiguous reference to
>>_interactiveChildrenCount.
>>    [asdoc] 			-- _interactiveChildrenCount ;
>>    [asdoc] 			   ^
>>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
>>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragr
>>a
>>phElement.as(869): col: 11 Error: Ambiguous reference to
>>_interactiveChildrenCount.
>>    [asdoc] 			return _interactiveChildrenCount != 0 ;
>>    [asdoc] 			       ^
>>
>> 
>>Anyone else having this issue or is it just something I've managed to
>>stuff up? 
>>
>>Changing it like so to ignore textLayout like so "fixes" the issue.
>>### Eclipse Workspace Patch 1.0
>>#P Apache Flex
>>Index: asdoc/build.xml
>>===================================================================
>>--- asdoc/build.xml	(revision 1309184)
>>+++ asdoc/build.xml	(working copy)
>>@@ -56,10 +56,12 @@
>> 		    <doc-classes class="RPCClasses"/>
>> 		    <doc-classes class="MobileComponentsClasses"/>		
>> 		    <doc-classes class="SparkDmvClasses"/>
>>-	    		    
>>+	    	
>>+	    	<!--	    
>> 			<doc-classes class="flashx.textLayout.CoreClasses"/>
>> 			<doc-classes class="flashx.textLayout.EditClasses"/>
>> 			<doc-classes class="flashx.textLayout.ConversionClasses"/>
>>+			-->
>> 
>> 			<!-- source path for asdoc -->
>> 			<compiler.source-path
>>path-element="${flexlib}/projects/airframework/src"/>
>>@@ -70,7 +72,7 @@
>> 			<compiler.source-path path-element="${flexlib}/projects/mx/src"/>
>> 			<compiler.source-path
>>path-element="${flexlib}/projects/sparkskins/src"/>
>> 			<compiler.source-path path-element="${flexlib}/projects/rpc/src"/>
>>-		    <compiler.source-path
>>path-element="${flexlib}/projects/textLayout/src"/>
>>+		    <!-- <compiler.source-path
>>path-element="${flexlib}/projects/textLayout/src"/> -->
>> 		    <!-- ToDo: download osmf soures -->
>> 			<!--compiler.source-path
>>path-element="${flexlib}/projects/osmf/src"/-->
>> 			<compiler.source-path
>>path-element="${flexlib}/projects/advancedgrids/src"/>
>>@@ -84,14 +86,14 @@
>> 		    <doc-namespaces uri="library://ns.adobe.com/flex/spark"/>
>> 		    <doc-namespaces uri="http://www.adobe.com/2006/mxml"/>
>> 		    <doc-namespaces uri="http://www.adobe.com/2006/rpcmxml"/>
>>- 			<doc-namespaces uri="library://ns.adobe.com/flashx/textLayout"/>
>>+ 			<!-- <doc-namespaces
>>uri="library://ns.adobe.com/flashx/textLayout"/> -->
>>  			<doc-namespaces uri="http://ns.adobe.com/2009/mx-mxml"/>
>>  			<doc-namespaces uri="http://www.adobe.com/2006/advancedgridsmxml"/>
>>  			<doc-namespaces uri="http://www.adobe.com/2006/charts"/>
>>  			<doc-namespaces
>>uri="library://ns.adobe.com/flex/spark-mobilecomponents"/>
>>  			<doc-namespaces uri="library://ns.adobe.com/flex/spark-dmv"/>
>>  			
>>-		    <namespace uri="library://ns.adobe.com/flashx/textLayout"
>>manifest="${flexlib}/projects/textLayout/manifest.xml"/>
>>+		    <!-- <namespace uri="library://ns.adobe.com/flashx/textLayout"
>>manifest="${flexlib}/projects/textLayout/manifest.xml"/> -->
>> 
>> 			<!-- namespace declaration for asdoc -->
>> 		    <namespace uri="http://www.adobe.com/2006/airmxml"
>>manifest="${flexlib}/projects/airframework/manifest.xml"/>
>>@@ -115,6 +117,7 @@
>> 		    	<include name="framework.swc" />
>> 		    	<!-- if no osfm sources -->
>> 		    	<include name="osmf.swc" />
>>+		    	<include name="textLayout.swc" />
>> 		    </external-library-path>
>>
>>
>>Thanks,
>>Justin
>


Re: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Carol Frampton <cf...@adobe.com>.
Justin,

You're on your own with OSX.  I did look at ParagraphElement.as on my
system.  It doesn't even have 860 lines and there are no instances of
_interactiveChildrenCount in the file.  Where did you get your textLayout
sources?  It should have come from in/downloads/textLayout_build/src.

Carol


On 4/3/12 8 :12PM, "Justin Mclean" <ju...@classsoftware.com> wrote:

>Hi,
>
>I'm getting an error when run the build script in asdocs (on OSX if that
>helps).
>
>    [asdoc] Loading configuration file
>/Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
>Flex/frameworks/flex-config.xml
>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragra
>phElement.as(92): col: 11 Error: Ambiguous reference to
>_interactiveChildrenCount.
>    [asdoc] 			return _interactiveChildrenCount;
>    [asdoc] 			       ^
>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragra
>phElement.as(860): col: 7 Error: Ambiguous reference to
>_interactiveChildrenCount.
>    [asdoc] 			++ _interactiveChildrenCount ;
>    [asdoc] 			   ^
>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragra
>phElement.as(864): col: 7 Error: Ambiguous reference to
>_interactiveChildrenCount.
>    [asdoc] 			-- _interactiveChildrenCount ;
>    [asdoc] 			   ^
>    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache
>Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/Paragra
>phElement.as(869): col: 11 Error: Ambiguous reference to
>_interactiveChildrenCount.
>    [asdoc] 			return _interactiveChildrenCount != 0 ;
>    [asdoc] 			       ^
>
> 
>Anyone else having this issue or is it just something I've managed to
>stuff up? 
>
>Changing it like so to ignore textLayout like so "fixes" the issue.
>### Eclipse Workspace Patch 1.0
>#P Apache Flex
>Index: asdoc/build.xml
>===================================================================
>--- asdoc/build.xml	(revision 1309184)
>+++ asdoc/build.xml	(working copy)
>@@ -56,10 +56,12 @@
> 		    <doc-classes class="RPCClasses"/>
> 		    <doc-classes class="MobileComponentsClasses"/>		
> 		    <doc-classes class="SparkDmvClasses"/>
>-	    		    
>+	    	
>+	    	<!--	    
> 			<doc-classes class="flashx.textLayout.CoreClasses"/>
> 			<doc-classes class="flashx.textLayout.EditClasses"/>
> 			<doc-classes class="flashx.textLayout.ConversionClasses"/>
>+			-->
> 
> 			<!-- source path for asdoc -->
> 			<compiler.source-path
>path-element="${flexlib}/projects/airframework/src"/>
>@@ -70,7 +72,7 @@
> 			<compiler.source-path path-element="${flexlib}/projects/mx/src"/>
> 			<compiler.source-path
>path-element="${flexlib}/projects/sparkskins/src"/>
> 			<compiler.source-path path-element="${flexlib}/projects/rpc/src"/>
>-		    <compiler.source-path
>path-element="${flexlib}/projects/textLayout/src"/>
>+		    <!-- <compiler.source-path
>path-element="${flexlib}/projects/textLayout/src"/> -->
> 		    <!-- ToDo: download osmf soures -->
> 			<!--compiler.source-path
>path-element="${flexlib}/projects/osmf/src"/-->
> 			<compiler.source-path
>path-element="${flexlib}/projects/advancedgrids/src"/>
>@@ -84,14 +86,14 @@
> 		    <doc-namespaces uri="library://ns.adobe.com/flex/spark"/>
> 		    <doc-namespaces uri="http://www.adobe.com/2006/mxml"/>
> 		    <doc-namespaces uri="http://www.adobe.com/2006/rpcmxml"/>
>- 			<doc-namespaces uri="library://ns.adobe.com/flashx/textLayout"/>
>+ 			<!-- <doc-namespaces
>uri="library://ns.adobe.com/flashx/textLayout"/> -->
>  			<doc-namespaces uri="http://ns.adobe.com/2009/mx-mxml"/>
>  			<doc-namespaces uri="http://www.adobe.com/2006/advancedgridsmxml"/>
>  			<doc-namespaces uri="http://www.adobe.com/2006/charts"/>
>  			<doc-namespaces
>uri="library://ns.adobe.com/flex/spark-mobilecomponents"/>
>  			<doc-namespaces uri="library://ns.adobe.com/flex/spark-dmv"/>
>  			
>-		    <namespace uri="library://ns.adobe.com/flashx/textLayout"
>manifest="${flexlib}/projects/textLayout/manifest.xml"/>
>+		    <!-- <namespace uri="library://ns.adobe.com/flashx/textLayout"
>manifest="${flexlib}/projects/textLayout/manifest.xml"/> -->
> 
> 			<!-- namespace declaration for asdoc -->
> 		    <namespace uri="http://www.adobe.com/2006/airmxml"
>manifest="${flexlib}/projects/airframework/manifest.xml"/>
>@@ -115,6 +117,7 @@
> 		    	<include name="framework.swc" />
> 		    	<!-- if no osfm sources -->
> 		    	<include name="osmf.swc" />
>+		    	<include name="textLayout.swc" />
> 		    </external-library-path>
>
>
>Thanks,
>Justin


Re: update: new files in https://svn.apache.org/repos/asf/incubator/flex/trunk

Posted by Justin Mclean <ju...@classsoftware.com>.
Hi,

I'm getting an error when run the build script in asdocs (on OSX if that helps).

    [asdoc] Loading configuration file /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache Flex/frameworks/flex-config.xml
    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/ParagraphElement.as(92): col: 11 Error: Ambiguous reference to _interactiveChildrenCount.
    [asdoc] 			return _interactiveChildrenCount;
    [asdoc] 			       ^
    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/ParagraphElement.as(860): col: 7 Error: Ambiguous reference to _interactiveChildrenCount.
    [asdoc] 			++ _interactiveChildrenCount ;
    [asdoc] 			   ^
    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/ParagraphElement.as(864): col: 7 Error: Ambiguous reference to _interactiveChildrenCount.
    [asdoc] 			-- _interactiveChildrenCount ;
    [asdoc] 			   ^
    [asdoc] /Users/justinmclean/Documents/Adobe Flash Builder 4.6/Apache Flex/frameworks/projects/textLayout/src/flashx/textLayout/elements/ParagraphElement.as(869): col: 11 Error: Ambiguous reference to _interactiveChildrenCount.
    [asdoc] 			return _interactiveChildrenCount != 0 ;
    [asdoc] 			       ^

 
Anyone else having this issue or is it just something I've managed to stuff up? 

Changing it like so to ignore textLayout like so "fixes" the issue.
### Eclipse Workspace Patch 1.0
#P Apache Flex
Index: asdoc/build.xml
===================================================================
--- asdoc/build.xml	(revision 1309184)
+++ asdoc/build.xml	(working copy)
@@ -56,10 +56,12 @@
 		    <doc-classes class="RPCClasses"/>
 		    <doc-classes class="MobileComponentsClasses"/>		    
 		    <doc-classes class="SparkDmvClasses"/>
-	    		    
+	    	
+	    	<!--	    
 			<doc-classes class="flashx.textLayout.CoreClasses"/>
 			<doc-classes class="flashx.textLayout.EditClasses"/>
 			<doc-classes class="flashx.textLayout.ConversionClasses"/>
+			-->
 
 			<!-- source path for asdoc -->
 			<compiler.source-path path-element="${flexlib}/projects/airframework/src"/>
@@ -70,7 +72,7 @@
 			<compiler.source-path path-element="${flexlib}/projects/mx/src"/>
 			<compiler.source-path path-element="${flexlib}/projects/sparkskins/src"/>
 			<compiler.source-path path-element="${flexlib}/projects/rpc/src"/>
-		    <compiler.source-path path-element="${flexlib}/projects/textLayout/src"/>
+		    <!-- <compiler.source-path path-element="${flexlib}/projects/textLayout/src"/> -->
 		    <!-- ToDo: download osmf soures -->
 			<!--compiler.source-path path-element="${flexlib}/projects/osmf/src"/-->
 			<compiler.source-path path-element="${flexlib}/projects/advancedgrids/src"/>
@@ -84,14 +86,14 @@
 		    <doc-namespaces uri="library://ns.adobe.com/flex/spark"/>
 		    <doc-namespaces uri="http://www.adobe.com/2006/mxml"/>
 		    <doc-namespaces uri="http://www.adobe.com/2006/rpcmxml"/>
- 			<doc-namespaces uri="library://ns.adobe.com/flashx/textLayout"/>
+ 			<!-- <doc-namespaces uri="library://ns.adobe.com/flashx/textLayout"/> -->
  			<doc-namespaces uri="http://ns.adobe.com/2009/mx-mxml"/>
  			<doc-namespaces uri="http://www.adobe.com/2006/advancedgridsmxml"/>
  			<doc-namespaces uri="http://www.adobe.com/2006/charts"/>
  			<doc-namespaces uri="library://ns.adobe.com/flex/spark-mobilecomponents"/>
  			<doc-namespaces uri="library://ns.adobe.com/flex/spark-dmv"/>
  			
-		    <namespace uri="library://ns.adobe.com/flashx/textLayout" manifest="${flexlib}/projects/textLayout/manifest.xml"/>
+		    <!-- <namespace uri="library://ns.adobe.com/flashx/textLayout" manifest="${flexlib}/projects/textLayout/manifest.xml"/> -->
 
 			<!-- namespace declaration for asdoc -->
 		    <namespace uri="http://www.adobe.com/2006/airmxml" manifest="${flexlib}/projects/airframework/manifest.xml"/>
@@ -115,6 +117,7 @@
 		    	<include name="framework.swc" />
 		    	<!-- if no osfm sources -->
 		    	<include name="osmf.swc" />
+		    	<include name="textLayout.swc" />
 		    </external-library-path>


Thanks,
Justin