Re: HTML pass through

2016-10-25 Thread jude
ect. I couldn't find __HTMLScriptObject class anywhere. ​ On Tue, Oct 25, 2016 at 10:20 PM, jude wrote: > First question. This is sort of a third use case. John is a developer at > Mozilla and he doesn't like using or tags (case 1) and > doesn't want to use wrapper c

Re: HTML pass through

2016-10-25 Thread jude
lse is the same as the first two cases. Could he declare the HTML markup in MXML like so: On Tue, Oct 25, 2016 at 7:29 PM, Alex Harui wrote: > Interesting. Comments inline... > > On 10/25/16, 4:26 PM, "jude" wrote: > > >Alex, > > > >I&#x

How to make InlineGraphicElements display a hand cursor

2016-10-25 Thread jude
I've been trying to figure out the TLF way to show a hand cursor on roll over on InlineGraphicElement and it seems the FlowElementMouseEventManager is preventing that with the _needsCtrlKey flag. This is set automatically by ContainerController when in edit mode in line ~3200: var needsCtrlKey:Boo

HTML pass through

2016-10-25 Thread jude
Alex, I've been encountering two situations that don't quite fit into the FlexJS paradigm but may fit somewhere. *Use Case 1:* I'm a web developer who likes to write all my HTML by hand or I already have a project in HTML and the markup and CSS cannot be changed. But I've heard about FlexJS and A

Re: Flex news site and rss feed

2016-10-25 Thread jude
post it when someone mentions them. An alternative would be to setup the news mailing list for user generated news. Then setup an RSS aggregator for web based news and integrate the news mailing list in it. On Tue, Oct 25, 2016 at 12:47 PM, Alex Harui wrote: > On 10/25/16, 9:48 AM, "

Re: Flex news site and rss feed

2016-10-25 Thread jude
The feed Adobe had back in the day was good. I don't know who uses RSS feeds anymore (well I do in my bookmarks). Mainly I was thinking, I have some Flash / Flex related news and want to share / wouldn't it be great to see everyone's news all in one place. In a perfect world it would be news conta

Demystifying internal workings of AS3

2016-10-23 Thread jude
Have you ever clicked on an internal Flash class and got the message, "Source could not be found for [className] in airglobal.swc"? Well, now if you ever wanted to learn about how core Flash API works you can do so here . The source was added to Gi

Flex news site and rss feed

2016-10-22 Thread jude
Do we have a Flex news site with RSS feed? I think it would be good to have a place we can go to hear about new Flex projects, Flex SDK updates, Flash and AIR updates and so on for checking out news without diving into the mailing list. Jude

Re: [FlexJS][Falcon] Some final moving around of stuff :-)

2016-07-08 Thread jude
to me externs have no context bc I've never heard it before it was mentioned on this list. if you want to move it to the frameworks directory that would make more sense. other folder names that would fit would be "libraries" or "bin". something along the lines of what they are used for like, "../au

Re: [FlexJS] Launch configs

2016-07-06 Thread jude
That was a typo. I meant to say, is there a config to run only a debug OR release compilation. I was looking for a "debug only" config so I'll check the nightly. On Jul 6, 2016 3:11 PM, "Alex Harui" wrote: On 7/6/16, 12:41 PM, "jude" wrote: >Is there

[FlexJS] Launch configs

2016-07-06 Thread jude
Is there a way to run only a debug and release compile using the external launch config? I looked into the launch config at (/Applications/Adobe Flash Builder 4.7/sdks/FlexJS/ide/flashbuilder) and I don't see any option to configure which is run (both are run currently):

Re: flexjs init the int =0

2016-07-03 Thread jude
in as3 if you sign an object to an int an error is thrown. in js the variable would be assigned to the object and would no longer be an int. so maybe, when the time comes, simply casting it as int would be enough. On Jul 3, 2016 1:50 AM, "Alex Harui" wrote: > > > On 7/1

Re: flexjs init the int =0

2016-07-01 Thread jude
ihzi is correct. to clarify, the compiler should initialize integers to zero when they are defined. and it should probably wrap any code that assigns a value to an int with parseInt(). On Jul 1, 2016 3:38 PM, "jude" wrote: > > in as3 > > var i:int; // i equals 0 > >

Re: flexjs init the int =0

2016-07-01 Thread jude
in as3 var i:int; // i equals 0 in JavaScript i is undefined because we don't know what type it is var i; // null, undefined or NaN therefore we need to initialize every integer as zero when it's defined. On Jun 30, 2016 10:35 PM, "lizhi" wrote: > and i++ in as i=1 > but js i= NaN > > > > --

Re: TextInput

2016-06-15 Thread jude
For some languages you may need to set the IME mode. But that seems to be only for specific languages. I haven't used IME mode before but it looks like you may need to set those properties. Harbs may know more about this. http://flex.apache.org/asdoc/spark/components/supportClasses/SkinnableTextBa

Re: [FlexJS] Applying Styles

2016-06-15 Thread jude
ren't sized and positioned where as I expected. The only thing I can add to this is to make sure the UI in the SWF and HTML match as closely as possible. On Tue, Jun 14, 2016 at 6:03 PM, Alex Harui wrote: > > > On 6/14/16, 3:25 PM, "jude" wrote: > > >If you're u

Re: [FlexJS] Applying Styles

2016-06-14 Thread jude
If you're using the default HTML elements I would have no expectation. I would expect the developer or designer to add their own skin set like FlatUI at a later time. But if you want a default style I would think there might be a happy medium with SVG skins. A while back Om made a SVG skin that lo

Re: AW: AW: [Falcon] Declaring defines in config xml doesn't seem to work

2016-06-09 Thread jude
+1 for COMPILE::SWF On Thu, Jun 9, 2016 at 10:10 AM, Alex Harui wrote: > > > On 6/9/16, 1:49 AM, "Christofer Dutz" wrote: > > > > >Hi Alex, > > > > > >you were right ... the strange thing was that I looked at your "this > >instead of that" and couldn't notice the difference. Had to look at it 3

Re: [FLEXJS] Named Configs for JS, JQuery, Node, and CreateJS

2016-06-09 Thread jude
Is it possible to use local config files? So using your example, we could create a ../src/jquery-cordova-googlemaps-config.xml config in your project? On Thu, Jun 9, 2016 at 10:22 AM, Josh Tynjala wrote: > It occurred to me too that a separate SWC for browser APIs would make > sense, since Node

[FlexJS] Monkey patching support

2016-06-07 Thread jude
Does FlexJS support monkey patching? I copied UIBase into my project, added properties to it and then tried to build or compile (FlexJS (FalconJX Debug and Release Build)) and I've been getting errors: When no compiler arguments before build Errors (350 items) ... When -define=COMPILE::AS3,tr

Re: [FlexJS]Layout

2016-06-06 Thread jude
lease and a debug version with many .js files in bin/js-debug." Is there a way we can set it up to use a template? On Mon, Jun 6, 2016 at 1:20 PM, Alex Harui wrote: > > > On 6/6/16, 10:49 AM, "jude" wrote: > > >I think for HTML5 we want to set the html and b

Re: [FlexJS]Layout

2016-06-06 Thread jude
I think for HTML5 we want to set the html and body width and height to 100%. That should enable elements on the body to be constrained to the edge of the browser window. Peter, on the layout containers, I think we may be able to use a single container if we don't have any chrome but still want scr

Re: Open declaration on FlexJS classes not navigating

2016-06-06 Thread jude
the file system but if I need to debug and step through the code it will be helpful to know why it's not finding it. On Sun, Jun 5, 2016 at 12:42 AM, Alex Harui wrote: > > On 6/4/16, 4:41 PM, "jude" wrote: > > >Thanks. Does this path look right, "/Applications

Re: Open declaration on FlexJS classes not navigating

2016-06-04 Thread jude
On Thu, Jun 2, 2016 at 11:35 PM, Alex Harui wrote: > > > On 6/2/16, 4:48 PM, "jude" wrote: > > >I'm using FB and I have the DataBindingTest project open and I'm trying to > >open the declaration of the classes but they are not being

Open declaration on FlexJS classes not navigating

2016-06-02 Thread jude
I'm using FB and I have the DataBindingTest project open and I'm trying to open the declaration of the classes but they are not being found. Code Navigation Error Source could not be found for org.apache.flex.core.ViewBase in /Applications/Adobe Flash Builder 4.7/sdks/FlexJS2/frameworks/libs/core.

Re: Moonshine-IDE.com -- FlexJS, Flex, and ActionScript focused open source IDE -- contribution to Apache FlexJS

2016-06-02 Thread jude
Congratulations! The more barriers we can remove for developers to start using FlexJS the better! Will direct people to it. On Thu, Jun 2, 2016 at 4:32 PM, Vulcansoft wrote: > Hi Justin, > > sounds very interesting! Downloaded it and tried a new FlexJS project, but > got the following error: > >

Re: why can not open this code?

2016-05-26 Thread jude
lizhi, i and others may be able to help you if we knew how to setup the projects. i've got flexjs setup correctly but i don't know how to run your project or library. maybe if you were able to create a wiki page like this one

Re: [FLEXJS] POC MXML "Live" Editing

2016-05-13 Thread jude
ful? > > http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/utils/XMLNotifier.html#watchXML%28%29 > > On May 13, 2016, at 9:18 AM, jude wrote: > > > Is the MXMLLiveEditAgent.mxml the only place those methods are from? I > > thought I read somewhere that you co

Re: [FLEXJS] POC MXML "Live" Editing

2016-05-12 Thread jude
tags that don't have id attributes set. I'm guessing that the methods are from or inspired from a class in Falcon? That class or code is what I'm trying to find and learn from. On Thu, May 12, 2016 at 11:08 PM, Alex Harui wrote: > > > On 5/12/16, 5:31 PM, "jude"

Re: [FLEXJS] POC MXML "Live" Editing

2016-05-12 Thread jude
hem before starting anything. On Wed, May 11, 2016 at 9:46 PM, Alex Harui wrote: > > > On 5/11/16, 5:13 PM, "jude" wrote: > > >What is the class that you used that parses the XML? is that in the flex > >sdk directory as plain text? > > Pretty sure we j

Re: [FLEXJS] POC MXML "Live" Editing

2016-05-11 Thread jude
What is the class that you used that parses the XML? is that in the flex sdk directory as plain text? On Jan 14, 2016 1:34 PM, "Alex Harui" wrote: > Hi, > > I spend the last few days creating a proof-of-concept that FlexJS and the > Falcon compiler can support limited "live" editing of MXML. I'v

Re: [FlexJS]TimerEvent

2016-05-09 Thread jude
If we're rethinking the Event class is there a way to prevent the loss of strong typing with currentTarget and target? Could we have a event.targetType or event.currentTargetType property? Even maybe a valueType. Then you could at compile time or runtime check that the value that is set in the targ

Re: Moonshine-IDE.com -- FlexJS, Flex, and ActionScript focused open source IDE -- contribution to Apache FlexJS ?

2016-05-03 Thread jude
1 and 4 is Apache license 2.0 2. and the others should be listed in attributions Wordpress themes are usually based off existing templates or forks. In this case the vanilla theme is a copy of

Is animation in Flex snapping to pixels?

2016-04-30 Thread jude
In my comparisons the animation in a Flash movieclip is usually much more fluid than animation in Flex yet I can't figure out why. Does Flex snap to pixel values while animating? If so is this something that's part of the Animate classes we can fix? The last time I looked into it we were using Numb

Searching the mailing lists

2016-04-30 Thread jude
Is there a way we can search the mailing lists? I went to our page here, http://flex.apache.org/community-mailinglists.html and clicked on the markmail link and the page was blank. I also went to the apache - old

Re: Moonshine-IDE.com -- FlexJS, Flex, and ActionScript focused open source IDE -- contribution to Apache FlexJS ?

2016-04-28 Thread jude
Justin, Thanks. Could you look at this installation guide and tell me if we can get things fully setup at Apache? I don't want to start down the path of donation to have certain libraries become an iss

Re: [FLEXJS] POC MXML "Live" Editing

2016-04-28 Thread jude
> radii8 repo. That will make it easier for folks to share and help > delineate what code has been donated to the ASF and what is intended for > your IDE product and hasn't been donated to the ASF. You have the latest > copy and committer rights so please do that if you agre

Re: [FLEXJS] POC MXML "Live" Editing

2016-04-28 Thread jude
I've been digging into the MXML live agent and have some feedback and updates to some of the comments. I've been studying the examples that check for changes in the MXML / XML and have some progress there but it seems it's been built mainly for Flex JS. I'm converting some of those changes over to

Re: FlexJS identity crisis. was: [Discuss]Accept donation of drawing APIs

2016-04-22 Thread jude
Flex JS conveys Flex as JavaScript framework but it's a hybrid really. Could we reflect that Flex JS is a hybrid someway? Flex js is a sort of refactor. maybe: Flex Reactor ReFlex Flexo Flex Nano Flex Red Flex Inc Flexenstein Flex Int Flex passport Flex Axiom Flex Ion Flex Action I don't know.

Re: [Discuss]Accept donation of drawing APIs

2016-04-19 Thread jude
But Flex is based on the Flash runtime and underlying API. Without the drawing commands, the interactive layer, point classes, event management, byte array, birthday data, mouse events, etc Flex and other frameworks wouldn't be possible. The Flash layer and related classes are what Flex is built o

Re: [Discuss]Accept donation of drawing APIs

2016-04-18 Thread jude
ing, I meant going through the legal process. I agree on that part. I agree we need to make sure it's something we can all use without worrying about copyright issues. On Mon, Apr 18, 2016 at 12:01 PM, OmPrakash Muppirala wrote: > Jude, > > First off, I am truly sorry that you had a

Re: [Discuss]Accept donation of drawing APIs

2016-04-18 Thread jude
If the only reason to not use the flash namespace is because it has a pejorative term to some ignorant media types and competing web developers than that's not a good case. If someone doesn't want to use FlexJS because they see the term "flash" somewhere then they can go find another tool. But if

Re: [Discuss]Accept donation of drawing APIs

2016-04-18 Thread jude
Slightly off topic, but if someone is kind enough to give you a gift, the proper response is to say thank you and accept it. What you do after you accept it is another story. The Apache process of discussing if we should accept said gift is kind of a dick move. No offence, but IMHO this behaviour

Re: [FlexJS]ByteArray and Dictionary

2016-04-16 Thread jude
s/ > > I'll be working on a much more detailed tutorial about ActionScript and > HTML soon. > > - Josh > On Apr 16, 2016 2:02 AM, "jude" wrote: > > > I should know this but there are so many moving parts so help me > understand > > this. The

Re: [FlexJS]ByteArray and Dictionary

2016-04-16 Thread jude
on assumes that keys are strings. > > Lizhi, > > Are you interested in donating your code? > > On Apr 15, 2016, at 11:13 AM, jude wrote: > > > I vaguely remember itzhi had converted a lot of the Flash classes to > > JavaScript in his Github repo to get startling tra

Re: [FlexJS]ByteArray and Dictionary

2016-04-15 Thread jude
I vaguely remember itzhi had converted a lot of the Flash classes to JavaScript in his Github repo to get startling transpiled. on mobile so I don't have links. On Apr 15, 2016 2:54 AM, "Harbs" wrote: > These are two features used a lot in Flash apps which do not have a simple > mapping in Javasc

Re: Easy way to convert a property to a style

2016-04-15 Thread jude
thanks, I was concerned if there was anything special or if it was about the metadata. I might add patches for these and maybe a visibleInLayout property that sets both the visible and includeInLayout at the same time. On Apr 14, 2016 11:20 PM, "Alex Harui" wrote: On 4/14/16, 8:07

Easy way to convert a property to a style

2016-04-14 Thread jude
In the Flex SDK we have some styles like top, left, right, bottom that we can define as styles. These also happen to be available as properties on UIComponent. I'd like to be able to set the properties like visible, includeInLayout and includeIn as styles as well. This is so we can create a sort o

Re: Moonshine-IDE.com -- FlexJS, Flex, and ActionScript focused open source IDE -- contribution to Apache FlexJS ?

2016-04-02 Thread jude
Hi Justin, Good to hear from you again. I looked at Moonshine a few years ago and it didn't look like anyone was working on it. I'm glad someone has started it back up. I have some suggestions based on your questions. A while ago I donated Radii8 (www.radii8.com) to Apache for a few reasons. 1.

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

2016-02-26 Thread jude
lick the show all data checkbox 3. click the up arrow On Thu, Feb 25, 2016 at 11:50 PM, Alex Harui wrote: > > > 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'

Re: update on radiate

2016-02-25 Thread jude
i've posted the road map and code here <https://github.com/monkeypunch3/Radii8/blob/master/README.md>. On Thu, Feb 25, 2016 at 7:48 PM, jude wrote: > i've posted the change log here <https://www.radii8.com/blog/?p=1078>. > you can now use your own site (domai

update on radiate

2016-02-25 Thread jude
i've posted the change log here . you can now use your own site (domain) for creating projects. it connects to a wordpress instance to save the mxml documents. it also uses wordpress as a publishing platform. any document you design can be used as a "theme" for

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

2016-02-25 Thread jude
e of. #2082: Connect failed because the object is already connected. TypeError: Error #1034: Type Coercion failed: cannot convert flash.events::MouseEvent@2d51aff84c11 to org.apache.flex.events.MouseEvent. On Sun, Feb 14, 2016 at 11:31 PM, Alex Harui wrote: > > > On 2/14/16, 10:44 PM, "

Re: [FlexJS] Tree Component

2016-02-22 Thread jude
+1 great work On Fri, Feb 19, 2016 at 10:31 AM, Peter Ent wrote: > Hi, > > I've just finished adding a new component to the FlexJS HTML package: > Tree. The Tree component is completely based on List and uses a new data > model, HierarchicalData, found in the FlexJS Collections package. > > You

Re: [FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2016-02-21 Thread jude
en call ant /path/to/build.xml name_of_target. On Thu, Feb 18, 2016 at 9:54 PM, Alex Harui wrote: > > > On 2/18/16, 11:30 AM, "jude" wrote: > > >it's possible to call ant using native process though. so you could fall > >back on those few cases that ant

Re: [FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2016-02-18 Thread jude
it's possible to call ant using native process though. so you could fall back on those few cases that ant is required. On Feb 17, 2016 10:50 PM, "Alex Harui" wrote: > > > On 2/17/16, 10:34 PM, "Justin Mclean" wrote: > > >Hi, > > > >> But Windows doesn't even have native processes for grep and se

Re: [FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2016-02-17 Thread jude
If AIR has a comparable API use that, if it doesn't then use native process. And instead of environment variables use GUI and save those values to a shared object. On 2/15/16, 5:17 PM, "jude" wrote: >some ideas: the first time I used ant I loved it but as soon as i asked

Re: [FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2016-02-15 Thread jude
some ideas: the first time I used ant I loved it but as soon as i asked it to do anything complex it became a major pain, imo. when I was helping harbs with TLF it took me a week and a lot of patience to get it setup. I understand why there are build engineers now. I'm really hesitant to try and

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

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

2016-02-14 Thread jude
o 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

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?

Re: [FLEXJS][FALCONJX] Reflection/Metadata

2016-02-02 Thread jude
+1 Is this function available on every class? How would you access it? MyClass.FLEXJS_CLASS_INFO(); Is it removed in the JS but kept in in the AS3? Is there a flag you can use to keep the reflection data? Hi, I just pushed changes to try to support reflection and metadata in FlexJS via a new R

Re: AW: Updating the Website with the new ASF logo?

2016-01-29 Thread jude
Image didn't come through, here is a link, http://imgur.com/oCp9axD added to that is the Mozilla EME plugin and Apple (Safari) has QuickTime On Fri, Jan 29, 2016 at 3:22 AM, jude wrote: > not really.. one of the news media outlets that reported about the Java > plugin being removed

Re: AW: Updating the Website with the new ASF logo?

2016-01-29 Thread jude
not really.. one of the news media outlets that reported about the Java plugin being removed said in the first line of their article, "Now that Chrome, Firefox, Edge & Safari don't support plug-ins anymore...". the article later made a clarification. all browsers support plugins. and almost all of

Re: flexjs game hugryhero

2016-01-21 Thread jude
Even if the initial download size is bigger it can actually load faster. This is because: *Fetching resources over the network is both slow and expensive: the download may require multiple roundtrips between the client and server, which delays processing and may block rendering of page content, an

Names for FlexJS MXML

2016-01-19 Thread jude
Alex, et al, Is there a name or 3-4 letter acronym we can use for FlexJS MXML to differentiate it from Flex MXML? I'm drawing a blank and these don't seem to fit: FXML FXJSML FxJsML FalconML I don't think the JS part of the name fits because FlexJS also outputs SWF. It's a hybrid of Flex, MXML,

Re: FlexJS metadata / reflection

2016-01-16 Thread jude
glues the UI together at > runtime without a compiler. For example, if I want to click on something > to change from state A to state B, that is usually done in ActionScript. > > -Alex > > On 1/16/16, 5:20 PM, "jude" wrote: > > >If you do we can do some runtime

Re: FlexJS metadata / reflection

2016-01-16 Thread jude
a (alternative) runtime FlexJS editor / viewer. The alternative is to support a in the browser renderer where the compiler is not available (client side only) that Om was talking about. It wouldn't support the AS3 though. On Fri, Jan 15, 2016 at 9:45 PM, Alex Harui wrote: > > > O

FlexJS metadata / reflection

2016-01-15 Thread jude
Does FlexJS support a reflection like describeType method? Is there Flex like metadata in it?

Re: [FALCONJX][FLEXJS] "as" keyword handling

2016-01-08 Thread jude
I would expect it to keep the same behavior and take a performance hit in exchange. You can always add the option to "speed up" the JS version by removing any of the casting methods. Have you tested the difference with it and without it in JS? *"...but the Google Closure Compiler implies that you

Re: Bug in mxmlc script

2016-01-04 Thread jude
I use FB for browser based apps but I dislike how it overwrites the template when switching SDK versions. IIRC FB hard codes the template to "index.template.html". So it always gets overwritten. I think it should come with a default template file but let you specify your own template through a comp

Re: [FlexJS] No more JS!

2015-12-18 Thread jude
Amazing! Way to go! On Thu, Dec 17, 2015 at 10:59 PM, OK wrote: > Cause of to less FlexJS knowledge I can't estimate the dimension of this > milestone but it sounds very great ;-) > Thanks to all of you for this work! > > Olaf > > > > -- > View this message in context: > http://apache-flex-devel

Re: Is there a API for CPU usage of an app?

2015-12-10 Thread jude
out > > -Original Message- > From: Alex Harui [mailto:aha...@adobe.com] > Sent: Thursday, December 10, 2015 3:49 PM > To: dev@flex.apache.org > Subject: Re: Is there a API for CPU usage of an app? > > I don't know of any way to get that from Flash. > > On 1

Is there a API for CPU usage of an app?

2015-12-10 Thread jude
Is there a API for checking the CPU usage of my AIR app (or Flex)? It's been suggested to check the FPS and see if they drop but that's not what I'm looking for. Background: I was sitting with someone who was using an app I wrote and it was going really slow. It was not a brand new computer. But I

Re: [DISCUSS] Adopting AS3Commons

2015-12-05 Thread jude
you committer ;-) You have all the power to drag those components and > put them in. I like your idea. > > Thanks, > Om > > On Sat, Dec 5, 2015 at 12:27 AM, jude wrote: > > > Since Flex was open sourced it's felt like to me it's stagnated. We had > all > &g

Re: [DISCUSS] Adopting AS3Commons

2015-12-05 Thread jude
then there is no conflict. They can remove the link to as3commons.swc and all the API's will cause errors. Then they just go in and use the new packages. On Fri, Dec 4, 2015 at 1:36 PM, Michael Schmalle wrote: > IIRC most of the projects have some pretty thorough unit tests as well. > &

Re: [DISCUSS] Adopting AS3Commons

2015-12-04 Thread jude
+1 for renaming it. make it part of the main package. that way we have to commit to it. if we put it off to the side there's more "it's a side project. we don't need to maintain it." On Fri, Dec 4, 2015 at 10:26 AM, Kessler CTR Mark J < mark.kessler@usmc.mil> wrote: > Good point, we should ke

Re: AIR Badge Installer Cookies and SSL

2015-12-03 Thread jude
the https://www.radii8.com/updates/badge_installer.html source. On Thu, Dec 3, 2015 at 2:07 AM, Marcus Fritze wrote: > This link should work > > https://fpdownload.adobe.com/air/browserapi/air.swf > > explained here: > > https://forums.adobe.com/thread/1098726 > > > Greetin

Re: FlexJS Usergroup Talk Request for Slides and Summary

2015-12-03 Thread jude
u: > http://i.imgur.com/AyYtoh5.jpg Feel free to use this in your presentation > as well ;-) > > Thanks, > Om > > On Thu, Dec 3, 2015 at 12:56 AM, jude wrote: > > > We have a local group in OC that has said we can do a Flex JS talk. They > > want to know

AIR Badge Installer Cookies and SSL

2015-12-03 Thread jude
A few posts ago I linked to the download page for Radiate. I purchased SSL on it a few months ago but when viewing the download page Firefox is showing warnings. None of the images were to blame so I checked the embedded badge_installer.html ifr

Re: Node.js support

2015-12-03 Thread jude
Sorry to interject but how do I get a link to this thread? I've seen them in footers before but not this one. On Wed, Dec 2, 2015 at 3:29 PM, Josh Tynjala wrote: > Got it. So if I were trying to hide a require() call, @flexjsignorecoercion > could be used in my code without requiring users to do

FlexJS Usergroup Talk Request for Slides and Summary

2015-12-03 Thread jude
We have a local group in OC that has said we can do a Flex JS talk. They want to know more information. I know a few people here have given talks already. Does someone have an template for FlexJS usergroup summary I can send to the UserGroup manager (I've added an example below)? If you would like

Re: FlexJS Brand Positioning

2015-12-03 Thread jude
on't think they ever raised any money for development. This is something as a community we really need to figure out... On Tue, Dec 1, 2015 at 1:13 AM, OmPrakash Muppirala wrote: > Jude, > > Nice work on Radiate so far. I really hope the commercial version takes > off! > > I

Re: FlexJS Brand Positioning

2015-12-02 Thread jude
http://i.imgur.com/booD25Z.png http://imgur.com/CivASZL On Tue, Dec 1, 2015 at 12:35 AM, jude wrote: > BTW I do plan to help on Flex JS when the time is right. That is when it's > more stable, when it has a few more design and development features to it. > > In Radiate I have Import

Re: FlexJS Brand Positioning

2015-12-01 Thread jude
be named was horrible and still is horrible at marketing. I made a list and they are the number one worst company for marketing. So my point is we have to change or get better at this. If the media attacks it rip these assholes apart. IE defend it with a vengeance. Sorry rant over. If legal gets in

Re: FlexJS Brand Positioning

2015-11-30 Thread jude
I saw this on Twitter, ""Introducing NextGen ActionScript" via @ *joshtynjala* => http:// joshblog.net/2015/introducing-nextgen-actionscript/ … " Not to be nitpicky but I think it's misleading. I'm stoked about the new website and tutorial

Re: [FLEXJS] TextLayout (was Re: Debugging (was [DISCUSS] Release Apache FlexJS 0.5.0))

2015-11-18 Thread jude
BTW one benefit of SVG is that it has a shadow dom. That means it is shielded from tampering unwanted CSS styling. This is one of the problems web devs face using web components. So if you have a web component, "MyButton" and it has it's using the regular DOM using div, img and spans to make the bu

Re: FlexJS - unable to open spark.css with falcon compiler

2015-11-11 Thread jude
Suggestion: let's show those by default and add "dev builds" in parenthesis next to the name. On Wednesday, November 11, 2015, Alex Harui wrote: > And to use the Apache Flex SDK Installer, run the installer, right-click > and choose “Show Dev Builds” and the list of versions should now include >

Re: [DISCUSS] Release Apache FlexJS 0.5.0

2015-11-06 Thread jude
I said this in another thread but since you asked I would say this would be the perfect workflow for me (for both Flex and FlexJS): 1. Provide URL to source on Github (the project would have to be on github obviously) 2. I create a local repository from that 3. I open FB and import a default *exis

Re: WG: Loosing my drive ...

2015-11-06 Thread jude
When I was working on TLF and Flex SDK it took about 3 days to a week to get the "sources" setup. I documented all the steps in the wiki and have went back to them ~3 times to get things setup again. It shouldn't be that hard. I could download and setup a new Flex SDK binary for Flash Builder easi

Re: Loosing my drive ...

2015-11-06 Thread jude
What needs to change? Please list things out here. I started working on a very small UI that's goal is to help install FlexJS, create new project and compile that project (and return errors and warnings). Right now it's just calling out to the ant build and running different targets on it. I don't

Re: [DISCUSS] Release Apache FlexJS 0.5.0

2015-11-05 Thread jude
rojects (maybe also install). I'm glad to hear the Apache Installer takes care of installing FlexJS. Can someone post a link to the ant build file (that compiles a project) I should be studying and nightly source for the Apache installer (that has the ant build that installs FJS)? On Thu, Nov 5, 2

Re: [DISCUSS] Release Apache FlexJS 0.5.0

2015-11-05 Thread jude
Ok, the reason why I was so confused is because it's "ApproveFlexJS" build. :P I thought it was the install and run script. Is there a another ant build file? On Thu, Nov 5, 2015 at 3:21 PM, jude wrote: > Alex, > I'm going to go ahead and put together an app so tha

Re: [DISCUSS] Release Apache FlexJS 0.5.0

2015-11-05 Thread jude
Alex, I'm going to go ahead and put together an app so that you can install FlexJS with one click and compile. I want it to be as simple as possible for anyone (new web developers). I've downloaded the build script and looked over it but there is some code in it for voting and release. I'm sure you

Re: [FLEXJS] TextLayout (was Re: Debugging (was [DISCUSS] Release Apache FlexJS 0.5.0))

2015-11-05 Thread jude
Alex, I'm proud to say I have worked on TLF with Harbs and so I know a lot on this subject. Well, that's not true, Harbs did all the work while I poked and prodded and wrote code he had to rewrite. :P However, in my opinion it was one of the more difficult frameworks I've seen because of a lot of n

Re: Building FlexJS from source

2015-10-22 Thread jude
Off topic but related question: Why aren't we using AS3 and AIR extended profile to check for env variables and download and setup of FlexJS, etc? I've issues with ant and it doesn't always seem like a faster approach after using it for so long. Then again, AIR didn't have extendedDesktop until re

Re: Apache Squiggly Instructions

2015-04-19 Thread jude
OK. Thanks. I've created a page here and added the necessary disclaimers. I'll made some changes to the original SpellUIForTLF class files and try to add a few updates here and there. I may have some patch files or updated classes p

Does Squiggly support Hebrew?

2015-04-19 Thread jude
On the Adobe Squiggly page it says vertical and rtl text is not supported in this current release (which release?), "Vertical text and right-to-left (RTL) text flow is not supported in the current release of Squiggly. (2872937, 2872937)". Does anyone know if this is outdated? Will it support Hebrew

Apache Squiggly Instructions

2015-04-19 Thread jude
On the official Apache Squiggly page here, there doesn't seem to be any instructions on it's use. After I groked the interwebs I found a few tutorials and eventually the official Adobe Labs Squiggly

Re: Re:Re: Re:Flex Scroller optimization

2015-04-18 Thread jude
Darkstone, I like that you can do everything now with the current scroller but that requires you to know what to do. The advantage of this is that you only have to set a property on the scroller to get the benefits. If it is able to be turned off then it can be added to the class without breaking a

  1   2   3   >