I'm having a similar problem 4 years later. Any pointers?
Error: Could not find compiled resource bundle 'formatters' for locale
'de_DE'.
at
mx.resources::ResourceManagerImpl/installCompiledResourceBundle()[/Users/justinmclean/Documents/ApacheFlex4.16/frameworks/projects/framework/src/mx/r
See here [1] for a firefox workaround.
[1]
http://apache-flex-users.246.n4.nabble.com/Firefox-no-longer-running-Flash-debug-version-td15864.html#a15866
--
Sent from: http://apache-flex-development.247.n4.nabble.com/
Thanks Piotr, done. Time to get docs in better shape.
--
Sent from: http://apache-flex-development.247.n4.nabble.com/
The address is ok but tags.json isn't found...
--
Sent from: http://apache-flex-development.247.n4.nabble.com/
Yes and No. See this [1].
[1]
http://apache-flex-users.246.n4.nabble.com/How-To-Start-Converting-A-Browser-Project-to-FlexJS-td15946.html#a15950
--
Sent from: http://apache-flex-development.247.n4.nabble.com/
Olaf Krueger wrote
> That said, I think you just need a couple of static HTML files to get it
> work.
> No complex controls or complex logic needed.
> For this use case I don't see the benefit of using Royale or other complex
> frameworks.
To me it's easier to write in MXML than in HTML, especia
Olaf Krueger wrote
> I think FlexJS/Royale is bloated for building Websites.
I think this could make for an interesting technical discussion. Why is
Royale bloated for building Websites?
--
Sent from: http://apache-flex-development.247.n4.nabble.com/
Alex Harui-2 wrote
> A fancier alternative would be a bead that wraps a layout bead and adds
> the visible check. That might be the best way to apply PAYG.
Can you explain what you mean? How would you wrap a bead?
--
View this message in context:
http://apache-flex-development.247.n4.nab
You might be referring to what we did with Accordion. There, I added
AccordionItemRendererView which does the following:
override protected function performLayout(event:Event):void
+ {
+ var collapsibleStrand:ICollapsible = _strand as
ICollapsible;
Here's a test app [1] that demonstrates it.
[1] https://paste.apache.org/i5Ui
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/Re-07-13-git-commit-flex-asjs-refs-heads-release0-8-0-give-up-on-trying-to-use-FlexBox-for-full-scred-tp63598p63599.html
Sent fro
Added the stack trace to the bug.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-MDL-Menu-with-dataProvider-and-itemRenderer-API-tp57637p63597.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
I don't think there's consensus on flash support in the community. Two things
at least have not changed: we might want AIR support, and we want FlexJS to
be platform agnostic in architecture. SWF support can help in both these
regards.
--
View this message in context:
http://apache-flex-develop
This sounds like a very useful feature, provided not everyone is using source
map enabled tools. I agree with Alex it's worth implementing outside the
compiler for maintenance and future platforms.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-Debu
yishayw wrote
> the example (be051df2bb40fec7d29cf1a934fcbbf19f8d75b7) isn't showing this
> behavior, please have a look
Should be
4eb3eaf38277187919c24b9a6099ec998d4ff627
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-MDL-Menu-with-d
Piotr,
I changed menu to extend list and am now getting the change event in my test
app [1]. For some reason the example
(be051df2bb40fec7d29cf1a934fcbbf19f8d75b7) isn't showing this behavior,
please have a look if possible.
Peter,
It looks like your change (be051df2bb40fec7d29cf1a934fcbbf19f8d75b
'change' isn't dispatched. I'll fix it. Can you explain why it extends
DataContainer and not list (which has selectedItem prop and 'change' event)?
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-MDL-Menu-with-dataProvider-and-itemRenderer-API-tp5763
I don't see any event being dispatched by menu. Are we supposed to listen to
the model for events?
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-MDL-Menu-with-dataProvider-and-itemRenderer-API-tp57637p63529.html
Sent from the Apache Flex Developmen
I think there would still be a difference between flash and js because the
flash implementation (counter to AS3 documentation) always returns null when
an invalid regex is passed as a string. So according to your suggested
implementation for
Var s: String = "m?o";
Var a:Array = s.match("?")
a is
I don't see what we would lose by making your changes and it would solve the
issue we're facing, so I'd vote yes.
I'm not sure what the purpose of throwing the error was in the first place,
as EventDispatcher catches and ignores it anyway.
--
View this message in context:
http://apache-flex-de
Alex Harui-2 wrote
> By
> calling new utility functions, the developer has control over the
> conversion.
I don't understand that point. Do you mean an app developer?
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-String-match-tp63392p63405.html
In flash String.match() can take either a string or a regex. In JS it's
always considered to be a regex. So str.match("?") is valid in flash but
will fail in JS. We ran into that porting our app which includes some code
to test for url params.
So maybe the compiler should identify that the input
Looks like falcon is incompatible with TabStopsPropety.as in TLF. When
initializing that file I'm getting the following RTE:
Uncaught syntax error: Invalid regular expression: missing /
which originates in TabStopsProperty.as:191
private static const _escapeBackslashRegex:RegExp
I see the same problem with 1.5
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/Moonshine-1-4-0-Release-tp61632p63293.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
I couldn't find the windows installer.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/Moonshine-1-5-0-Release-tp63237p63284.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
So going back to Piotr's original post, the current approach for adding
functionality to a bead (ControllerForWithoutResponse) is to create a new
bead (ConterollerForWithResponse) that extends the functionality of the
original bead, rather than adding a bead to the original one
(ControllerForRespon
Ideally we wouldn't have to record data that's never read. This may be an
extreme case, but some users will want to know the response on an upload,
while some will just want to make sure the status is ok. I'd rather not
anticipate too many use cases when writing the strand and the model because
I m
See upthread my response to Pitor
> I was thinking the same thing but it’s complicated to make it into a bead.
> It would have to catch the ‘complete’ event and record the response data
> before anyone else does. Since we don’t have event listener priorities I
> don’t know how to do that. I hope
Since this type of problem has been bugging me for a while (see also
FileBrowserWithFilter which raises the same question) I started reading
about this. To me it seems that we may need aspects [1]. The JS
implementation is supposed to be easy, but AS3 less so [2], though work has
been done [3] on t
It looks like the compiler gets confused when we add nested objects using
state. This [1] is a test app that includes a [2] view, to demonstrate.
Should I file a bug?
[1] https://paste.apache.org/gYQ3
[2] https://paste.apache.org/OX9n
--
View this message in context:
http://apache-flex-develo
Hi Allen,
As others have pointed out, the project you posted has some syntax errors
and includes flex 3 classes that will not build. Please post a simple
project that demonstrates the problem you are currently having.
Thanks,
Yishay
--
View this message in context:
http://apache-flex-developm
Can you share the 2 files you're trying to compile?
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-question-about-porting-an-Adobe-Flex-3-project-to-HTML-JS-tp62698p62981.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
I don't see panelview.as in the sources. But anyway, I don't remember it
being part of the demo so you can ignore it for now. Any luck with creating
a TitleWindow equivalent?
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-question-about-porting-an-A
I don't have code to share but as general pointers:
- use Panel instead of TitleWindow
- use UIUtils instead of PopupManager
- user HContainer instead of HBox
Hope this helps.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-question-about-porting-a
allenyyang wrote
> These changes allowed me to build demo_for_presentation. And I now can run
> it by double-clicking index.html in both bin/js-debug and bin/js-release
> folders.
> But I am not sure that it runs correctly because the screen display always
> look like the following:
>
> boring
> m
is failing for you, in an effort to make it smoother for
future developers.
Thanks,
Yishay
From: allenyyang [via Apache Flex
Development]<mailto:ml+s247n62853...@n4.nabble.com>
Sent: Thursday, July 6, 2017 2:47 AM
To: yishayw<mailto:yishayj...@hotmail.com>
Subject: RE: [FlexJS]
My AIR_HOME goes to my nightly installation which has Adobe AIR 23.0 SDK.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-Mobile-Depends-on-Flash-11-4-tp62811p62846.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
I was getting the error when doing ant clean all from flex-asjs. I updated
build.xml under Mobile to include the snippet you provided. Let me know if I
misunderstood, in which case I'll revert. Not sure what, if at all, needs to
change for the Maven build. Thanks.
--
View this message in context
yishayw wrote
> Now assuming you have pom.xml and build.xml in your project you should be
> able to run Maven like this:
Should read:
Now assuming you have pom.xml and build.xml in your project you should be
able to run Maven *or ant* like this:
--
View this message in context:
Here [1] is how I run Maven an Ant from Flash Builder. To use this do the
following:
1) Download folder to your computer
2) in Flash Builder go to File->Import->Run/Debug->Launch Configurations
3) Select the folder you downloaded
4) Open up Run->External Tools (useful keyboard shortcut: then
the
Hi Allen,
I'm glad you got around this problem by using Maven. Can you export your
project to fxp and post it somewhere so I can have a look? It would be good
to know what's keeping the Flash Builder build from working.
Thanks,
Yishay
--
View this message in context:
http://apache-flex-devel
BTW, I noticed Camera is declared with a [Mixin] metatag. What is that?
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-Mobile-Depends-on-Flash-11-4-tp62811p62812.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
I was having a problem building the Mobile package. It was complaining about
line 151 in Camera.as which does camera.copyToByteArray(). Looking at the
docs [1], it looks like this method became available in flash 11.4 while the
build is set to look for flash player 11.1 (under build.properties).
To me it's a bit difficult to digest in its current format. I would prefer to
see a list of design patterns with descriptions of concrete problems and
proposed solutions. This doc could be PAYG in itself. You come across a
problem, solve it with PAYG, add an item in the doc, if the idea isn't
alrea
Alex Harui-2 wrote
> One thing I wanted put up
> for discussion now is the notion of "defaults". Really, I'm trying to get
> away from the notion that there is one default we have to decide on. IMO,
> that's another old way of thinking from Flex. FlexJS is designed to
> support multiple componen
That's assuming you have ant installed and in path.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-question-about-porting-an-Adobe-Flex-3-project-to-HTML-JS-tp62698p62740.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
Hi Allen,
In my project there's an ant script that you can use. So if you open your
cmd or shell and change directory to where build.xml is, you can type 'ant'
and the project should build.
Let me know how it goes.
--
View this message in context:
http://apache-flex-development.247.n4.na
allenyyang wrote
> However, the source code texts on YouTube video are a bit blurred when
> Yishay went through the example MXML code (Unlike Josh's VS Code video on
> which the texts are clear most of the time)
I uploaded [1] the example project to my OneDrive. It doesn't contain the
example fram
allenyyang wrote
> (b)If I convert to Flex 4 first, then I am trying to prepare my
> browsers for debugging in a Flash environment. My most frequently used
> browser is Google Chrome. I found that there is no easy way to replace
> Chrome's flash player, starting Chrome version 57, by the debug
Yes, that worked.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-TLF-Tlf-branch-and-Maven-build-tp62452p62659.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
I'll try switching falcon to tlf branch. I was using release up to now.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-TLF-Tlf-branch-and-Maven-build-tp62452p62657.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
I'm getting this problem with ant clean all as well. Before running ant clean
all I tried running "ant wipe" in flex-typedefs and "ant wipe-all" in
flex-falcon, and "ant super-clean" in flex-asjs.
[java]
C:\dev\flexjs\flex-asjs\frameworks\projects\Basic\src\main\config\compile-swf-config.xml
Adding margins adds a gutter on the right side of the host. This is probably
because each child's width is calculated according to the parent's width
divided by the number of children, disregarding the margins. I'm using
padding instead, but that has the drawback that in a tiled list, for
example,
What is the preferred way to set gaps between columns and between rows?
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-TileLayout-tp62568.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
+1
Package
https://dist.apache.org/repos/dist/dev/flex/flexjs/0.8.0/rc2/apache-flex-flexjs-0.8.0-src.zip
Java 1.8
OS: Windows 10 amd64 10.0
Source kit signatures match: y
Source kit builds: y
README is ok: y
RELEASE_NOTES is ok: y
NOTICE is ok: y
LICENSE is ok: y
No unapproved licenses or archives:
I noticed the MIT license says: 2013-2016. Shouldn't it be 2013-2017?
The MIT License (MIT)
Copyright (c) 2013-2016 Designmodo
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/DISCUSS-Discuss-Release-Apache-FlexJS-0-8-0-RC2-tp62498p62512.html
Sent from the
In this [1] app, referencing the interface [2] results in a warning, but
referencing the implementer [3] does not.
So it looks like the problem is with bindable interfaces only.
Thanks.
[1] https://paste.apache.org/JmIV
[2] https://paste.apache.org/zxSB
[3] https://paste.apache.org/Qko2
--
Vi
It looks like changing the definitions of the interface and the class to
[Bindable]function get PURCHASED():String;
and
[Bindable]public function get PURCHASED():String { return
"PURCHASED"; }
worked.
So is it a bug that declaring the class and the interface as b
We have an mxml component where
[Bindable]public var locStrings:IUIStrings =
LocaleManager.localeStrings;
...
...
LocaleManager is declared thus:
+1
Package
https://dist.apache.org/repos/dist/dev/flex/flexjs/0.8.0/rc1/apache-flex-flexjs-0.8.0-src.zip
Java 1.8
OS: Windows 10 amd64 10.0
Source kit signatures match: y
Source kit builds: y
README is ok: y
RELEASE_NOTES is ok: y
NOTICE is ok: y
LICENSE is ok: y
No unapproved licenses or archives:
As suggested [1] here I was able to get around the problem by associating swc
files with the flash player projector content debugger, so I can finally run
tests now.
It says there [1] that
> On Windows we use rundll32 to launch the associated player for the SWF
> mimetype and on the Mac we use t
https://paste.apache.org/TLwu
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-Unit-Tests-Not-Running-tp62371p62379.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
I have a batch file with the following contents:
%FLASHPLAYER_DEBUGGER%
It opens up the Flash Player projector content debugger. The unit tests for
Basic, don't open it up however, and the build fails.
Any ideas?
Thanks.
--
View this message in context:
http://apache-flex-development.247
>Is it set to C:\dev\flashflashplayer_25_sa_debug.exe
Yes.
>Does the player open up and try to run the flex unit test?
No.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/VOTE-Release-Apache-FlexJS-0-8-0-RC1-tp62273p62359.html
Sent from the Apache Flex
Actually, it's set to C:\dev\flash\flashplayer_25_sa_debug.exe which exists.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/VOTE-Release-Apache-FlexJS-0-8-0-RC1-tp62273p62357.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
It's set to C:\dev\flash where flashplayer_25_sa_debug.exe exists.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/VOTE-Release-Apache-FlexJS-0-8-0-RC1-tp62273p62356.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
I can, I guess there was a network glitch. The recurring problem is that unit
tests don't run and I get a socket timeout:
C:\dev\flexjs\flex-asjs\frameworks\projects\Basic\src\test\flex\build.xml:154:
java.util.concurrent.ExecutionException: Socket timeout waiting for flexunit
report
at ja
Doesn't this logic mean that all the releases up to now have been invalid?
It seems to me there is some interest in the extended community to see a
release out. Looking at the RELEASE_NOTES I see lots of nice new features
and bug fixes, which would be beneficial to people who want to start using
I keep getting the below message when running the approval script. I closed
all browsers prior to running the script. Any tips?
BUILD FAILED
C:\dev\release\ApproveFlexJS.xml:742: java.net.UnknownHostException:
archive.apache.org
at
java.net.AbstractPlainSocketImpl.connect(AbstractPlainSock
If you plan to write your app in JS and only need FalconJX for the initial
conversion that's a possibility too, though it might not be the optimal one.
You might want to watch [1] Harbs' talk on how to get it to compile. You can
then use the created sources to build your own architecture on that.
It is possible, we've been doing it.
Unless you want to modify the framework you don't need the developer setup.
This [1] should get you started.
[1]
https://cwiki.apache.org/confluence/display/FLEX/Getting+Started+With+FlexJS
--
View this message in context:
http://apache-flex-development.
OmPrakash Muppirala wrote
> Bead A supports feature X
> Bead B needs to support feature X and Y
Theoretically Bead B could support just feature Y, and the strand would
choose to add both A and B or just A.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/B
It's actually MXMLBeadViewDataBinding. The simplest solution may be to avoid
using binding in TitleBarView and explicitly listen to TitleBar's
"modelChanged" event and TitleBarModel's "titleChange" event. But any other
solution is fine by me.
--
View this message in context:
http://apache-flex-
Not sure I understand. Is release Accordion working with the example I posted
[1]?
I just fetched and logged flex-asjs and couldn't see any accordion related
changes. Can you send a commit id?
Thanks.
[1] https://paste.apache.org/QUj1
--
View this message in context:
http://apache-flex-deve
You got it [1]. Thanks Piotr.
[1] https://issues.apache.org/jira/browse/FLEX-35320
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-DataBinding-Problem-tp62073p62083.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
Here's [1] an example app.
The 2 problems I see:
1) DataBinding problems [2] cause titles to be undefined. I hacked a fix on
TLF branch, but this should probably addressed differently.
2) TitleBar.height returns 0, even though the measured height is 30. I think
this is a bug, am I wrong?
Thanks.
Example app [1]
[1] https://paste.apache.org/hdOl
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-DataBinding-Problem-tp62073p62078.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
Trying to debug accordion I ran into a data binding issue.
TitleBarView.mxml has this line:
But if I change the model to a tbModel where tbModel.title == "hi" I will
not the label text is empty instead of it being 'hi'.
In other words, data binding only works if the host stays the same.
False alarm, I wasn't using the latest falcon. Apologize for the noise.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-Release-Branch-Not-Building-tp62057p62061.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
When doing ant clean all I get
compile:
[echo] Compiling libs/Language.swc
[echo] FLEX_HOME: C:\dev\flexjs\flex-asjs
[echo] FALCON_HOME: C:\dev\flexjs\flex-asjs/../flex-falcon/compiler
[echo] FALCONJX_HOME:
C:\dev\flexjs\flex-asjs/../flex-falcon/compiler-jx
[java] Exceptio
Harbs wrote
> \2. The Collapse bead can only infer that it’s collapsed by the fact that
> the size is the collapsed size — which only makes sense if the size is
> set.
Shouldn't .height return the measured height, regardless of whether it was
explicitly set?
--
View this message in context:
h
I'll let Harbs answer this but I think we're not working on the latest tlf
anyway.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-Is-TLF-Branch-Building-tp61739p61934.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
I'm not sure what to do here. I checked out
7137de6b19cd11630ee1ef29f7a9164166e35b10 for falcon, built falcon and copied
jars to FLEXJS_HOME/js/lib.
Now when building TLF branch everything builds, but not the TLF project.
What is the suggested workaround? Our app currently only runs using TLF.
I think the idea is to optimize the number of different event classes. Event
and ValueEvent should take care of a lot of cases. If you add a bunch of
constants to those 2, you end up bloating them. App developers should get
code hinting in mxml via metadata so typos are mitigated.
--
View this m
I pulled all the latest changes and did 'ant clean all' with the following
result:
C:\dev\flexjs\flex-asjs\build.xml:499: The following error occurred while
executing this line:
C:\dev\flexjs\flex-asjs\frameworks\build.xml:79: The following error
occurred while executing this line:
C:\dev\flexjs\f
You're right, changes are indeed reflected. I couldn't see my new bead in the
project, but that was because I didn't add it via FB. If I had, FB would
have added an entry under .flexLibProperties such as
and Test would have been visible to my test app.
You still need to add org.apach
Looks like CI build was indeed the issue. Error went away after reinstalling.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/LAST-CALL-Release-FlexJS-FalconJX-0-8-0-tp61275p61711.html
Sent from the Apache Flex Development mailing list archive at Nabble.com
I like the idea. Sencha follows a similar pattern as far as I remember. I
don't like mxmlID. Everything in MXML is MXML. I would go with 'localId',
for the one that doesn't translate to HTML, and 'id' for the one that does.
Also, there's nothing preventing an AS3 class from accessing the so called
I just pulled the changes and tried to build using FB. I'm getting this
1319: unknown configuration variable 'compiler.targets'.
C:\dev\flexjs\flex-asjs\frameworks\projects\Core\src\main\config\compile-swf-config.xml
(line: 25)
So Core doesn't build.
--
View this message in context:
http://ap
Items 1-9 were considered musts.
Fontkit library port (item 7) made it to the list because it was blocking
Maven builds. I think Chris has found a workaround, so maybe we can strike
that off.
Post meeting there was some agreement that a better looking default theme
was also a must. Leonidas said
Kudos to Chris for organizing a successful event. We had few outsiders as
audience but it was good to meet, sync, and hopefully revitalize the
project. Well done.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/ApacheCon-FlexJSSummit-Just-registered-tp61516
I tried
-compiler.targets=SWF
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/LAST-CALL-Release-FlexJS-FalconJX-0-8-0-tp61275p61682.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
Alex Harui-2 wrote
> You can use -compiler.targets=SWF or -compiler.targets=JSFlex to only
> compile one side or the other.
Adding those options in FB, under Flex Compiler view of the test app,
results in no code hinting. Not adding the options makes build time much
slower.
--
View this messag
Alex Harui-2 wrote
> That's good news. Does that mean you are all set for your demo?
I hope so, thanks for the help. Hopefully we've made our tooling stronger in
the process.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/LAST-CALL-Release-FlexJS-Falcon
Chris fixed it on my machine by commenting out of
framework/frameworks/pom.xml the fontsrc element.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/FlexJS-flex-asjs-build-failing-tp60461p61674.html
Sent from the Apache Flex Development mailing list archive
They will be videoed, so we should be able to upload them at some point.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/ApacheCon-FlexJSSummit-Just-registered-tp61516p61673.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
It's actually working. I just needed to clean the test project, as well as
the framework where I made changes.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/LAST-CALL-Release-FlexJS-FalconJX-0-8-0-tp61275p61672.html
Sent from the Apache Flex Development m
I did.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/LAST-CALL-Release-FlexJS-FalconJX-0-8-0-tp61275p61671.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.
I added a bead [1] to Basic, and changed the line thickness.
[1] https://paste.apache.org/W1AD
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/LAST-CALL-Release-FlexJS-FalconJX-0-8-0-tp61275p61669.html
Sent from the Apache Flex Development mailing list arc
Code completion is working, but FB build does not change framework code as
far as the test app is concerned. Alex, this [1] is what I'm doing and it
used to work as you can see here [2]. Can you see if it works in your setup?
[1]
http://apache-flex-development.247.n4.nabble.com/FlexJS-Develope
Tweaking flex-config.xml worked for me as well. It sounds like a good idea to
link to JS instead of swf. I'll see if I can do that later.
--
View this message in context:
http://apache-flex-development.247.n4.nabble.com/LAST-CALL-Release-FlexJS-FalconJX-0-8-0-tp61275p61656.html
Sent from th
1 - 100 of 338 matches
Mail list logo