Re: FlexJS: Circular Dependency

2016-08-15 Thread xenia1234
I used interface instead of the actual class. This works for me. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/FlexJS-Circular-Dependency-tp13287p13309.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: TitleWindow dragged off screen

2016-08-15 Thread Paul Hastings
Thanks for taking a look. I'll give that a try--short term I've added a window end move listener to the module that seems to be helping. BTW the TitleWindow seems to get "drunk and disorderly" under a load quite often. I had an issue from some time ago where the window's title y location would

Re: TitleWindow dragged off screen

2016-08-15 Thread Alex Harui
On 8/15/16, 9:41 PM, "Paul Hastings" wrote: >i suppose can workaround this with some kind of hail mary event but any >ideas as >to why this is happening? I don't see anything obvious. I looked at the base classes as well. Have you tried more diagnostics? I would

TitleWindow dragged off screen

2016-08-15 Thread Paul Hastings
i have a module based on TitleWindow that overrides the move function to keep it from being dragged off screen. it works in 99% of the cases but i've got some users who seem to have found that 1% where it fails. the module has two states, an initial query state & a data display state. the

Re: .jpg images via SOAP webservice using SQL Server as DB

2016-08-15 Thread Alex Harui
Please post the code for the ValueObject. Or a link to the code. Thanks, -Alex On 8/15/16, 12:05 PM, "CodeGirl" wrote: >I have some small images in .jpg format. >After some reading, I concluded my files were small enough to store in the >database but I was told to

Re: Groups

2016-08-15 Thread jude
If you need to go lower level you can also grab the path's display object and manually turn on interactivity. public static function makeInteractive(element:Object, interactive:Boolean = false):void { if (element is GraphicElement) {

Re: Flex ASCII

2016-08-15 Thread Harbs
Only if Arial (or whatever the default font is) doesn’t have it either… (Flash does automatic glyph replacement.) On Aug 15, 2016, at 9:23 PM, Alex Harui wrote: > IIRC, you can get a box if the font doesn't have that character in it. > > On 8/15/16, 11:09 AM, "Matthew Weir"

Re: Flex ASCII

2016-08-15 Thread OK
Forgot something: If you need diagonal directional icons, the 'rotate' property might help: HTH, OLaf -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Flex-ASCII-tp13294p13302.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: Flex ASCII

2016-08-15 Thread OK
Since 4.14. the SDK is shipped with "FontAwesome": http://fontawesome.io/icons/#directional Usage: Unfortunately it doesn't provide any diagonal arrows... HTH, Olaf -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Flex-ASCII-tp13294p13301.html Sent from

.jpg images via SOAP webservice using SQL Server as DB

2016-08-15 Thread CodeGirl
I have some small images in .jpg format. After some reading, I concluded my files were small enough to store in the database but I was told to make the type varbinary(max) No problem so far When I created my Entities JPA wanted to make it a byte[]. Seems no problem. I defined my DTO object

Re: Multithreading

2016-08-15 Thread bilbosax
I understand why you are presenting all the various scenarios, but it is much simpler than that. Think of it like the stock market or a pinball machine with 40k balls bumping into each other. Things are always changing. But my clients will be satisfied with one snapshot of where things stand each

Re: Flex ASCII

2016-08-15 Thread Alex Harui
IIRC, you can get a box if the font doesn't have that character in it. On 8/15/16, 11:09 AM, "Matthew Weir" wrote: >Any ideas as to why some characters turn into a >box?String.fromCharCode('8680'); > >from: Arrows HTML Code - Character Codes > >| >| |

Re: Flex ASCII

2016-08-15 Thread Matthew Weir
Any ideas as to why some characters turn into a box?String.fromCharCode('8680'); from: Arrows HTML Code - Character Codes | | | Arrows HTML Code - Character Codes Find the html character codes you need fast. A comprehensive and easy reference of ascii and unicode characters ... | |

Re: Flex ASCII

2016-08-15 Thread Clint M
Does String.fromCharCode work? http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/String.html#fromCharCode() On Mon, Aug 15, 2016 at 10:53 AM, Matthew Weir < mattcomm...@yahoo.com.invalid> wrote: > Hi, > I'm just wondering if any of you have some insight into how the mx:Label >

Flex ASCII

2016-08-15 Thread Matthew Weir
Hi, I'm just wondering if any of you have some insight into how the mx:Label interprets ASCII.  Any thoughts on how to change the text of the ASCII post-creation? This works just: However, if I do any of these, it doesn't var charctr:String = ''TotalLbl.text = charctr; [Bindable] private var

Re: Groups

2016-08-15 Thread scott matheson
thanks my silly i used a group, i give it a go > On 15 Aug 2016, at 15:02, OK wrote: > > ScottM wrote >> or is there a someway, to containing this path in a object capable of >> generating event but but staying within > > If I understand you right, just wrapping your

Re: Multithreading

2016-08-15 Thread Alex Harui
IMO, there are still too many unknowns to give detailed advice. First, whatever computer you use may or may not take 1 minute to do the computation. If you are purchasing Azure or AWS time, it could be faster or even much slower. You get what you pay for. The cheapest Azure single-core

Re: Groups

2016-08-15 Thread OK
ScottM wrote > or is there a someway, to containing this path in a object capable of > generating event but but staying within If I understand you right, just wrapping your path inside a graphic component should do the trick:

Groups

2016-08-15 Thread scott matheson
Hi My graphic artist has build a really nice looking segment, which I have converted in to vector graphics, however to create events i place the path in a group, as the group is a square shape these groups are interfering my OO coding is not good, so can I extent to generate click,

Re: FlexJS: Circular Dependency

2016-08-15 Thread Harbs
Add this argument: -remove-circulars On Aug 15, 2016, at 1:59 PM, PKumar wrote: > Hi, > > I am trying to cross compile FlexJS example "TodoListSampleApp" but getting > the circular dependency error. Please check the attached screen shot. How > can i remove this error?

Re: Re: Multithreading

2016-08-15 Thread Javier Guerrero García
Hi Bilbo! Another side question: have you measured how long does it take the "processing" alone, discounting all database reads / writes (just before the first FOR loop starts, and until it ends)? On Mon, Aug 15, 2016 at 12:01 PM, Kessler CTR Mark J < mark.kessler@usmc.mil> wrote: > Side

FlexJS: Circular Dependency

2016-08-15 Thread PKumar
Hi, I am trying to cross compile FlexJS example "TodoListSampleApp" but getting the circular dependency error. Please check the attached screen shot. How can i remove this error? - Regards, Prashant -- View this

RE: Re: Multithreading

2016-08-15 Thread Kessler CTR Mark J
Side question. Have you tried having the records calculate in the query themselves at least partially? Best case scenario would be have them process into another table directly. Writing those 12k records back would be more intensive if they had to process each one separately. -Mark

Re: Multithreading

2016-08-15 Thread Justin Mclean
Hi, > So if it is not possible to run 4 processes in parallel efficiently using C That’s possible in C, and most machines have more that 4 cores so you could probably run more than 4 processes. The issue is can you actually partition your data up into chunks? And how much communication do you

Re: Multithreading

2016-08-15 Thread bilbosax
Thanks for the reply Alex. The app that I would write would not be that complex. It would simply read about 40k records from a database with a single "GET * FROM main" , run the conditionals and distance calculations and sums/averages that we have discussed, and then write about 12k records back

Re: Multithreading

2016-08-15 Thread Alex Harui
On 8/14/16, 6:44 AM, "Scott Matheson" wrote: >I think this is more a question of architecture Architecture and truly understanding the problem. We've already seen how important that is. At one point we thought that computing A vs B eliminated the need to compute B vs A,

Re: Best Cross Platform Mobile App

2016-08-15 Thread Alain Ekambi
Well that document is def biased about React Native. Xamarin buggy ? Titanium bad ? Come on. On 15 August 2016 at 08:45, OK wrote: > Clint M wrote > > Here's a part of the document I was working on: > > https://docs.google.com/document/d/1qKwAXk0uCUdRbqfcQdUBwJjC3KGp7 >

Re: Best Cross Platform Mobile App

2016-08-15 Thread OK
Clint M wrote > Here's a part of the document I was working on: > https://docs.google.com/document/d/1qKwAXk0uCUdRbqfcQdUBwJjC3KGp7z6oP0BFkYQ5xOA/edit?usp=sharing > It's incomplete… management chose react native after the initial draft. Thanks for sharing! -- View this message in context: